aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Properties/AssemblyInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Prebuild/src/Properties/AssemblyInfo.cs')
-rw-r--r--Prebuild/src/Properties/AssemblyInfo.cs202
1 files changed, 101 insertions, 101 deletions
diff --git a/Prebuild/src/Properties/AssemblyInfo.cs b/Prebuild/src/Properties/AssemblyInfo.cs
index bfa9829..9f74500 100644
--- a/Prebuild/src/Properties/AssemblyInfo.cs
+++ b/Prebuild/src/Properties/AssemblyInfo.cs
@@ -1,101 +1,101 @@
1#region BSD License 1#region BSD License
2/* 2/*
3Copyright (c) 2004-2005 Matthew Holmes (matthew@wildfiregames.com), Dan Moorehead (dan05a@gmail.com) 3Copyright (c) 2004-2005 Matthew Holmes (matthew@wildfiregames.com), Dan Moorehead (dan05a@gmail.com)
4 4
5Redistribution and use in source and binary forms, with or without modification, are permitted 5Redistribution and use in source and binary forms, with or without modification, are permitted
6provided that the following conditions are met: 6provided that the following conditions are met:
7 7
8* Redistributions of source code must retain the above copyright notice, this list of conditions 8* Redistributions of source code must retain the above copyright notice, this list of conditions
9 and the following disclaimer. 9 and the following disclaimer.
10* Redistributions in binary form must reproduce the above copyright notice, this list of conditions 10* Redistributions in binary form must reproduce the above copyright notice, this list of conditions
11 and the following disclaimer in the documentation and/or other materials provided with the 11 and the following disclaimer in the documentation and/or other materials provided with the
12 distribution. 12 distribution.
13* The name of the author may not be used to endorse or promote products derived from this software 13* The name of the author may not be used to endorse or promote products derived from this software
14 without specific prior written permission. 14 without specific prior written permission.
15 15
16THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, 16THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
17BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 18ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 20OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 21OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
22IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23*/ 23*/
24#endregion 24#endregion
25 25
26#region CVS Information 26#region CVS Information
27/* 27/*
28 * $Source$ 28 * $Source$
29 * $Author: jendave $ 29 * $Author: jendave $
30 * $Date: 2007-01-26 19:31:34 +0100 (fr, 26 jan 2007) $ 30 * $Date: 2007-01-26 19:31:34 +0100 (fr, 26 jan 2007) $
31 * $Revision: 203 $ 31 * $Revision: 203 $
32 */ 32 */
33#endregion 33#endregion
34 34
35using System; 35using System;
36using System.Reflection; 36using System.Reflection;
37using System.Runtime.CompilerServices; 37using System.Runtime.CompilerServices;
38using System.Runtime.InteropServices; 38using System.Runtime.InteropServices;
39using System.Security.Permissions; 39using System.Security.Permissions;
40using System.Resources; 40using System.Resources;
41 41
42 42
43// FxCop recommended attributes 43// FxCop recommended attributes
44[assembly: ComVisible(false)] 44[assembly: ComVisible(false)]
45[assembly: FileIOPermission(SecurityAction.RequestMinimum, Unrestricted=true)] 45[assembly: FileIOPermission(SecurityAction.RequestMinimum, Unrestricted=true)]
46[assembly: CLSCompliant(true)] 46[assembly: CLSCompliant(true)]
47 47
48// 48//
49// General Information about an assembly is controlled through the following 49// General Information about an assembly is controlled through the following
50// set of attributes. Change these attribute values to modify the information 50// set of attributes. Change these attribute values to modify the information
51// associated with an assembly. 51// associated with an assembly.
52// 52//
53[assembly: AssemblyTitle(".NET Prebuild")] 53[assembly: AssemblyTitle(".NET Prebuild")]
54[assembly: AssemblyDescription("A .NET project file build tool")] 54[assembly: AssemblyDescription("A .NET project file build tool")]
55[assembly: AssemblyConfiguration(".NET CLR")] 55[assembly: AssemblyConfiguration(".NET CLR")]
56[assembly: AssemblyCompany("The Prebuild Project")] 56[assembly: AssemblyCompany("The Prebuild Project")]
57[assembly: AssemblyProduct("")] 57[assembly: AssemblyProduct("")]
58[assembly: AssemblyCopyright("Copyright 2004-2006 Matthew Holmes, Dan Moorehead and David Hudson")] 58[assembly: AssemblyCopyright("Copyright 2004-2006 Matthew Holmes, Dan Moorehead and David Hudson")]
59[assembly: AssemblyTrademark("")] 59[assembly: AssemblyTrademark("")]
60[assembly: AssemblyCulture("")] 60[assembly: AssemblyCulture("")]
61[assembly: NeutralResourcesLanguageAttribute("en-US")] 61[assembly: NeutralResourcesLanguageAttribute("en-US")]
62[assembly: AssemblyVersion("2.0.0.*")] 62[assembly: AssemblyVersion("2.0.0.*")]
63 63
64// 64//
65// Version information for an assembly consists of the following four values: 65// Version information for an assembly consists of the following four values:
66// 66//
67// Major Version 67// Major Version
68// Minor Version 68// Minor Version
69// Build Number 69// Build Number
70// Revision 70// Revision
71// 71//
72// You can specify all the values or you can default the Revision and Build Numbers 72// You can specify all the values or you can default the Revision and Build Numbers
73// by using the '*' as shown below: 73// by using the '*' as shown below:
74 74
75// 75//
76// In order to sign your assembly you must specify a key to use. Refer to the 76// In order to sign your assembly you must specify a key to use. Refer to the
77// Microsoft .NET Framework documentation for more information on assembly signing. 77// Microsoft .NET Framework documentation for more information on assembly signing.
78// 78//
79// Use the attributes below to control which key is used for signing. 79// Use the attributes below to control which key is used for signing.
80// 80//
81// Notes: 81// Notes:
82// (*) If no key is specified, the assembly is not signed. 82// (*) If no key is specified, the assembly is not signed.
83// (*) KeyName refers to a key that has been installed in the Crypto Service 83// (*) KeyName refers to a key that has been installed in the Crypto Service
84// Provider (CSP) on your machine. KeyFile refers to a file which contains 84// Provider (CSP) on your machine. KeyFile refers to a file which contains
85// a key. 85// a key.
86// (*) If the KeyFile and the KeyName values are both specified, the 86// (*) If the KeyFile and the KeyName values are both specified, the
87// following processing occurs: 87// following processing occurs:
88// (1) If the KeyName can be found in the CSP, that key is used. 88// (1) If the KeyName can be found in the CSP, that key is used.
89// (2) If the KeyName does not exist and the KeyFile does exist, the key 89// (2) If the KeyName does not exist and the KeyFile does exist, the key
90// in the KeyFile is installed into the CSP and used. 90// in the KeyFile is installed into the CSP and used.
91// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. 91// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
92// When specifying the KeyFile, the location of the KeyFile should be 92// When specifying the KeyFile, the location of the KeyFile should be
93// relative to the project output directory which is 93// relative to the project output directory which is
94// %Project Directory%\obj\<configuration>. For example, if your KeyFile is 94// %Project Directory%\obj\<configuration>. For example, if your KeyFile is
95// located in the project directory, you would specify the AssemblyKeyFile 95// located in the project directory, you would specify the AssemblyKeyFile
96// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] 96// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
97// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework 97// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
98// documentation for more information on this. 98// documentation for more information on this.
99// 99//
100[assembly: AssemblyDelaySign(false)] 100[assembly: AssemblyDelaySign(false)]
101[assembly: AssemblyKeyName("")] 101[assembly: AssemblyKeyName("")]