author | StephaneLenclud |
Sun, 15 Mar 2015 21:26:51 +0100 | |
changeset 82 | 312160defeac |
parent 74 | e5e903ee681d |
permissions | -rw-r--r-- |
StephaneLenclud@76 | 1 |
// |
StephaneLenclud@76 | 2 |
// Copyright (C) 2014-2015 Stéphane Lenclud. |
StephaneLenclud@76 | 3 |
// |
StephaneLenclud@76 | 4 |
// This file is part of SharpLibHid. |
StephaneLenclud@76 | 5 |
// |
StephaneLenclud@76 | 6 |
// SharpDisplayManager is free software: you can redistribute it and/or modify |
StephaneLenclud@76 | 7 |
// it under the terms of the GNU General Public License as published by |
StephaneLenclud@76 | 8 |
// the Free Software Foundation, either version 3 of the License, or |
StephaneLenclud@76 | 9 |
// (at your option) any later version. |
StephaneLenclud@76 | 10 |
// |
StephaneLenclud@76 | 11 |
// SharpDisplayManager is distributed in the hope that it will be useful, |
StephaneLenclud@76 | 12 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
StephaneLenclud@76 | 13 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
StephaneLenclud@76 | 14 |
// GNU General Public License for more details. |
StephaneLenclud@76 | 15 |
// |
StephaneLenclud@76 | 16 |
// You should have received a copy of the GNU General Public License |
StephaneLenclud@76 | 17 |
// along with SharpDisplayManager. If not, see <http://www.gnu.org/licenses/>. |
StephaneLenclud@76 | 18 |
// |
StephaneLenclud@76 | 19 |
|
StephaneLenclud@76 | 20 |
using System.Reflection; |
StephaneLenclud@74 | 21 |
using System.Runtime.CompilerServices; |
StephaneLenclud@74 | 22 |
using System.Runtime.InteropServices; |
StephaneLenclud@74 | 23 |
|
StephaneLenclud@74 | 24 |
// General Information about an assembly is controlled through the following |
StephaneLenclud@74 | 25 |
// set of attributes. Change these attribute values to modify the information |
StephaneLenclud@74 | 26 |
// associated with an assembly. |
StephaneLenclud@74 | 27 |
[assembly: AssemblyTitle("SharpLibHid")] |
StephaneLenclud@74 | 28 |
[assembly: AssemblyDescription("")] |
StephaneLenclud@74 | 29 |
[assembly: AssemblyConfiguration("")] |
StephaneLenclud@74 | 30 |
[assembly: AssemblyCompany("")] |
StephaneLenclud@74 | 31 |
[assembly: AssemblyProduct("SharpLibHid")] |
StephaneLenclud@74 | 32 |
[assembly: AssemblyCopyright("Copyright © 2015")] |
StephaneLenclud@74 | 33 |
[assembly: AssemblyTrademark("")] |
StephaneLenclud@74 | 34 |
[assembly: AssemblyCulture("")] |
StephaneLenclud@74 | 35 |
|
StephaneLenclud@74 | 36 |
// Setting ComVisible to false makes the types in this assembly not visible |
StephaneLenclud@74 | 37 |
// to COM components. If you need to access a type in this assembly from |
StephaneLenclud@74 | 38 |
// COM, set the ComVisible attribute to true on that type. |
StephaneLenclud@74 | 39 |
[assembly: ComVisible(false)] |
StephaneLenclud@74 | 40 |
|
StephaneLenclud@74 | 41 |
// The following GUID is for the ID of the typelib if this project is exposed to COM |
StephaneLenclud@74 | 42 |
[assembly: Guid("975f0b9b-456d-4db6-a0ea-56c257969b38")] |
StephaneLenclud@74 | 43 |
|
StephaneLenclud@74 | 44 |
// Version information for an assembly consists of the following four values: |
StephaneLenclud@74 | 45 |
// |
StephaneLenclud@74 | 46 |
// Major Version |
StephaneLenclud@74 | 47 |
// Minor Version |
StephaneLenclud@74 | 48 |
// Build Number |
StephaneLenclud@74 | 49 |
// Revision |
StephaneLenclud@74 | 50 |
// |
StephaneLenclud@74 | 51 |
// You can specify all the values or you can default the Build and Revision Numbers |
StephaneLenclud@74 | 52 |
// by using the '*' as shown below: |
StephaneLenclud@74 | 53 |
// [assembly: AssemblyVersion("1.0.*")] |
StephaneLenclud@74 | 54 |
[assembly: AssemblyVersion("1.0.0.0")] |
StephaneLenclud@74 | 55 |
[assembly: AssemblyFileVersion("1.0.0.0")] |