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