Merge pull request #3609 from xmcclure/checked-imageset
[mono.git] / mcs / class / Mono.Security / Assembly / AssemblyInfo.cs
1 //
2 // AssemblyInfo.cs
3 //
4 // Authors:
5 //      Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //      Sebastien Pouliot  (sebastien@ximian.com)
7 //
8 // (C) 2003 Ximian, Inc.  http://www.ximian.com
9 // (C) 2004 Novell (http://www.novell.com)
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34 using System.Reflection;
35 using System.Resources;
36 using System.Security;
37 using System.Security.Permissions;
38 using System.Runtime.CompilerServices;
39 using System.Runtime.InteropServices;
40
41 // General Information about the system assembly
42
43 [assembly: AssemblyVersion (Consts.FxVersion)]
44
45 [assembly: AssemblyCompany ("MONO development team")]
46 [assembly: AssemblyCopyright ("(c) 2003-2004 Various Authors")]
47 [assembly: AssemblyDescription ("Mono.Security.dll")]
48 [assembly: AssemblyProduct ("MONO CLI")]
49 [assembly: AssemblyTitle ("Mono.Security.dll")]
50 [assembly: CLSCompliant (true)]
51 [assembly: ComVisible (false)]
52 [assembly: NeutralResourcesLanguage ("en-US")]
53
54
55 // BigInteger use unsafe code
56 // incomplete - prevent testing on Windows
57 //[assembly:SecurityPermission (SecurityAction.RequestOptional, UnmanagedCode=true)]
58
59
60 [assembly: AssemblyDelaySign (true)]
61 [assembly: AssemblyKeyFile ("../mono.pub")]
62
63 #if MOBILE
64 [assembly: InternalsVisibleTo ("System, PublicKey=00240000048000009400000006020000002400005253413100040000010001008D56C76F9E8649383049F383C44BE0EC204181822A6C31CF5EB7EF486944D032188EA1D3920763712CCB12D75FB77E9811149E6148E5D32FBAAB37611C1878DDC19E20EF135D0CB2CFF2BFEC3D115810C3D9069638FE4BE215DBF795861920E5AB6F7DB2E2CEEF136AC23D5DD2BF031700AEC232F6C6B1C785B4305C123B37AB")]
65 #else
66 [assembly: InternalsVisibleTo ("System, PublicKey=00000000000000000400000000000000")]
67 #endif
68