Properties/AssemblyInfo.cs
author moel.mich
Sun, 08 Aug 2010 13:57:26 +0000
changeset 165 813d8bc3192f
parent 156 3e2ab626531c
child 166 fa9dfbfc4145
permissions -rw-r--r--
Refactored the hardware monitoring code into a library (Issue 101).
     1 /*
     2   
     3   Version: MPL 1.1/GPL 2.0/LGPL 2.1
     4 
     5   The contents of this file are subject to the Mozilla Public License Version
     6   1.1 (the "License"); you may not use this file except in compliance with
     7   the License. You may obtain a copy of the License at
     8  
     9   http://www.mozilla.org/MPL/
    10 
    11   Software distributed under the License is distributed on an "AS IS" basis,
    12   WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
    13   for the specific language governing rights and limitations under the License.
    14 
    15   The Original Code is the Open Hardware Monitor code.
    16 
    17   The Initial Developer of the Original Code is 
    18   Michael Möller <m.moeller@gmx.ch>.
    19   Portions created by the Initial Developer are Copyright (C) 2009-2010
    20   the Initial Developer. All Rights Reserved.
    21 
    22   Contributor(s):
    23 
    24   Alternatively, the contents of this file may be used under the terms of
    25   either the GNU General Public License Version 2 or later (the "GPL"), or
    26   the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
    27   in which case the provisions of the GPL or the LGPL are applicable instead
    28   of those above. If you wish to allow use of your version of this file only
    29   under the terms of either the GPL or the LGPL, and not to allow others to
    30   use your version of this file under the terms of the MPL, indicate your
    31   decision by deleting the provisions above and replace them with the notice
    32   and other provisions required by the GPL or the LGPL. If you do not delete
    33   the provisions above, a recipient may use your version of this file under
    34   the terms of any one of the MPL, the GPL or the LGPL.
    35  
    36 */
    37 
    38 using System.Reflection;
    39 using System.Runtime.CompilerServices;
    40 using System.Runtime.InteropServices;
    41 
    42 // General Information about an assembly is controlled through the following 
    43 // set of attributes. Change these attribute values to modify the information
    44 // associated with an assembly.
    45 [assembly: AssemblyTitle("Open Hardware Monitor")]
    46 [assembly: AssemblyDescription("")]
    47 [assembly: AssemblyConfiguration("")]
    48 [assembly: AssemblyCompany("")]
    49 [assembly: AssemblyProduct("Open Hardware Monitor")]
    50 [assembly: AssemblyCopyright("Copyright © 2009-2010 Michael Möller")]
    51 [assembly: AssemblyTrademark("")]
    52 [assembly: AssemblyCulture("")]
    53 
    54 // Setting ComVisible to false makes the types in this assembly not visible 
    55 // to COM components.  If you need to access a type in this assembly from 
    56 // COM, set the ComVisible attribute to true on that type.
    57 [assembly: ComVisible(false)]
    58 
    59 // The following GUID is for the ID of the typelib if this project is exposed to COM
    60 [assembly: Guid("f7a1c873-0bec-4762-8707-2edce3a6444d")]
    61 
    62 // Version information for an assembly consists of the following four values:
    63 //
    64 //      Major Version
    65 //      Minor Version 
    66 //      Build Number
    67 //      Revision
    68 //
    69 // You can specify all the values or you can default the Build and Revision Numbers 
    70 // by using the '*' as shown below:
    71 // [assembly: AssemblyVersion("1.0.*")]
    72 [assembly: AssemblyVersion("0.1.37.3")]
    73 [assembly: AssemblyFileVersion("0.1.37.3")]