-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCh03-1-AssemInfo.cs
84 lines (50 loc) · 2.56 KB
/
Ch03-1-AssemInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/******************************************************************************
Module: AssemInfo.cs
Notices: Copyright (c) 2013 Jeffrey Richter
******************************************************************************/
using System.Reflection;
///////////////////////////////////////////////////////////////////////////////
// Set the version CompanyName, LegalCopyright and LegalTrademarks fields
[assembly:AssemblyCompany("The Jeffrey Richter Company")]
[assembly:AssemblyCopyright("Copyright (c) 2013 Jeffrey Richter")]
[assembly:AssemblyTrademark(
"JeffTypes is a registered trademark of the Richter Company")]
///////////////////////////////////////////////////////////////////////////////
// Set the version ProductName and ProductVersion fields
[assembly:AssemblyProduct("Jeffrey Richter Type Library")]
[assembly:AssemblyInformationalVersion("2.0.0.0")]
///////////////////////////////////////////////////////////////////////////////
// Set the version FileVersion, AssemblyVersion,
// FileDescription, and Comments fields.
[assembly:AssemblyFileVersion("1.0.0.0")]
[assembly:AssemblyVersion("3.0.0.0")]
[assembly:AssemblyTitle("Jeff's type assembly")]
[assembly:AssemblyDescription("This assembly contains Jeff's types")]
///////////////////////////////////////////////////////////////////////////////
// Set the assembly's culture (""=neutral).
[assembly:AssemblyCulture("")]
///////////////////////////////////////////////////////////////////////////////
#if !StronglyNamedAssembly
// Weakly named assemblies are never signed
[assembly:AssemblyDelaySign(false)]
#else
// Strongly named assemblies are usually delay signed while building and
// completely signed using SN.exe's -R or -Rc switch.
[assembly:AssemblyDelaySign(true)]
#if !SignedUsingACryptoServiceProvider
// Give the name of the file that contains the public/private key pair.
// If delay signing, only the public key is used.
[assembly:AssemblyKeyFile("MyCompany.keys")]
// Note: If AssemblyKeyFile and AssemblyKeyName are both specified,
// here's what happens...
// 1) If the container exists, the key file is ignored.
// 2) If the container doesn't exist, the keys from the key
// file are copied into the container and the assembly is signed.
#else
// Give the name of the cryptographic service provider (CSP) container
// that contains the public/private key pair.
// If delay signing, only the public key is used.
[assembly:AssemblyKeyName("")]
#endif
#endif
//////////////////////////////// End of File //////////////////////////////////