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 |
|
sl@0
|
20 |
using System.Reflection;
|
sl@0
|
21 |
using System.Runtime.CompilerServices;
|
sl@0
|
22 |
|
sl@0
|
23 |
//
|
sl@0
|
24 |
// General Information about an assembly is controlled through the following
|
sl@0
|
25 |
// set of attributes. Change these attribute values to modify the information
|
sl@0
|
26 |
// associated with an assembly.
|
sl@0
|
27 |
//
|
sl@0
|
28 |
[assembly: AssemblyTitle("")]
|
sl@0
|
29 |
[assembly: AssemblyDescription("")]
|
sl@0
|
30 |
[assembly: AssemblyConfiguration("")]
|
sl@0
|
31 |
[assembly: AssemblyCompany("")]
|
sl@0
|
32 |
[assembly: AssemblyProduct("")]
|
sl@0
|
33 |
[assembly: AssemblyCopyright("")]
|
sl@0
|
34 |
[assembly: AssemblyTrademark("")]
|
sl@0
|
35 |
[assembly: AssemblyCulture("")]
|
sl@0
|
36 |
|
sl@0
|
37 |
//
|
sl@0
|
38 |
// Version information for an assembly consists of the following four values:
|
sl@0
|
39 |
//
|
sl@0
|
40 |
// Major Version
|
sl@0
|
41 |
// Minor Version
|
sl@0
|
42 |
// Build Number
|
sl@0
|
43 |
// Revision
|
sl@0
|
44 |
//
|
sl@0
|
45 |
// You can specify all the values or you can default the Revision and Build Numbers
|
sl@0
|
46 |
// by using the '*' as shown below:
|
sl@0
|
47 |
|
sl@0
|
48 |
[assembly: AssemblyVersion("1.0.*")]
|
sl@0
|
49 |
|
sl@0
|
50 |
//
|
sl@0
|
51 |
// In order to sign your assembly you must specify a key to use. Refer to the
|
sl@0
|
52 |
// Microsoft .NET Framework documentation for more information on assembly signing.
|
sl@0
|
53 |
//
|
sl@0
|
54 |
// Use the attributes below to control which key is used for signing.
|
sl@0
|
55 |
//
|
sl@0
|
56 |
// Notes:
|
sl@0
|
57 |
// (*) If no key is specified, the assembly is not signed.
|
sl@0
|
58 |
// (*) KeyName refers to a key that has been installed in the Crypto Service
|
sl@0
|
59 |
// Provider (CSP) on your machine. KeyFile refers to a file which contains
|
sl@0
|
60 |
// a key.
|
sl@0
|
61 |
// (*) If the KeyFile and the KeyName values are both specified, the
|
sl@0
|
62 |
// following processing occurs:
|
sl@0
|
63 |
// (1) If the KeyName can be found in the CSP, that key is used.
|
sl@0
|
64 |
// (2) If the KeyName does not exist and the KeyFile does exist, the key
|
sl@0
|
65 |
// in the KeyFile is installed into the CSP and used.
|
sl@0
|
66 |
// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
|
sl@0
|
67 |
// When specifying the KeyFile, the location of the KeyFile should be
|
sl@0
|
68 |
// relative to the project output directory which is
|
sl@0
|
69 |
// %Project Directory%\obj\<configuration>. For example, if your KeyFile is
|
sl@0
|
70 |
// located in the project directory, you would specify the AssemblyKeyFile
|
sl@0
|
71 |
// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
|
sl@0
|
72 |
// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
|
sl@0
|
73 |
// documentation for more information on this.
|
sl@0
|
74 |
//
|
sl@0
|
75 |
[assembly: AssemblyDelaySign(false)]
|
sl@0
|
76 |
[assembly: AssemblyKeyFile("")]
|
sl@0
|
77 |
[assembly: AssemblyKeyName("")]
|