Use __cdecl rather than __stdcall for icalls on Windows 32-bit
[mono.git] / mcs / class / SMDiagnostics / Assembly / AssemblyInfo.cs
1 //
2 // AssemblyInfo.cs
3 //
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining
6 // a copy of this software and associated documentation files (the
7 // "Software"), to deal in the Software without restriction, including
8 // without limitation the rights to use, copy, modify, merge, publish,
9 // distribute, sublicense, and/or sell copies of the Software, and to
10 // permit persons to whom the Software is furnished to do so, subject to
11 // the following conditions:
12 // 
13 // The above copyright notice and this permission notice shall be
14 // included in all copies or substantial portions of the Software.
15 // 
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 //
24
25 using System;
26 using System.Reflection;
27 using System.Resources;
28 using System.Security;
29 using System.Security.Permissions;
30 using System.Diagnostics;
31 using System.Runtime.CompilerServices;
32 using System.Runtime.InteropServices;
33 [assembly: AssemblyTitle ("SMDiagnostics.dll")]
34 [assembly: AssemblyDescription ("Contains share code for some System.ServiceModel libraries")]
35 [assembly: AssemblyDefaultAlias ("System.ServiceModel.dll")]
36
37 [assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
38 [assembly: AssemblyFileVersion (Consts.FxFileVersion)]
39
40 [assembly: NeutralResourcesLanguage ("en-US")]
41 [assembly: CLSCompliant (true)]
42 [assembly: AssemblyDelaySign (true)]
43 #if MOBILE
44 [assembly: AssemblyKeyFile ("../winfx.pub")]
45 #else
46 [assembly: AssemblyKeyFile ("../ecma.pub")]
47 [assembly: AllowPartiallyTrustedCallers]
48 [assembly: ComCompatibleVersion (1, 0, 3300, 0)]
49 [assembly: SecurityCritical (SecurityCriticalScope.Explicit)]
50 #endif
51 [assembly: InternalsVisibleTo ("System.IdentityModel, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)]
52 [assembly: InternalsVisibleTo ("System.IdentityModel.Selectors, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)]
53 [assembly: InternalsVisibleTo ("System.ServiceModel, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)]
54 [assembly: InternalsVisibleTo ("System.ServiceModel.Web, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)]
55
56 [assembly: ComVisible (false)]
57