Merge pull request #347 from JamesB7/master
[mono.git] / mcs / class / dlr / Runtime / Microsoft.Dynamic / Properties / AssemblyInfo.cs
1 /* ****************************************************************************
2  *
3  * Copyright (c) Microsoft Corporation. 
4  *
5  * This source code is subject to terms and conditions of the Apache License, Version 2.0. A 
6  * copy of the license can be found in the License.html file at the root of this distribution. If 
7  * you cannot locate the  Apache License, Version 2.0, please send an email to 
8  * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound 
9  * by the terms of the Apache License, Version 2.0.
10  *
11  * You must not remove this notice, or any other, from this software.
12  *
13  *
14  * ***************************************************************************/
15
16 using System;
17 using System.Reflection;
18 using System.Runtime.CompilerServices;
19 using System.Runtime.InteropServices;
20 using System.Security;
21
22 // General Information about an assembly is controlled through the following 
23 // set of attributes. Change these attribute values to modify the information
24 // associated with an assembly.
25 [assembly: AssemblyTitle("Microsoft.Scripting")]
26 [assembly: AssemblyDescription("")]
27 [assembly: AssemblyConfiguration("")]
28 [assembly: AssemblyCompany("Microsoft")]
29 [assembly: AssemblyProduct("Microsoft.Scripting")]
30 [assembly: AssemblyCopyright("© Microsoft Corporation.  All rights reserved.")]
31 [assembly: AssemblyTrademark("")]
32 [assembly: AssemblyCulture("")]
33
34 // Setting ComVisible to false makes the types in this assembly not visible 
35 // to COM components.  If you need to access a type in this assembly from 
36 // COM, set the ComVisible attribute to true on that type.
37 [assembly: ComVisible(false)]
38
39 [assembly: CLSCompliant(true)]
40
41 // The following GUID is for the ID of the typelib if this project is exposed to COM
42 [assembly: Guid("1bbee69c-30c5-41df-8912-b81da6d658c2")]
43
44 // Version information for an assembly consists of the following four values:
45 //
46 //      Major Version
47 //      Minor Version 
48 //      Build Number
49 //      Revision
50 //
51 // You can specify all the values or you can default the Revision and Build Numbers 
52 // by using the '*' as shown below:
53 #if !CLR2 && !SILVERLIGHT && !WIN8 && !ANDROID && !WP75
54 [assembly: System.Security.SecurityRules(SecurityRuleSet.Level1)]
55 #endif
56 [assembly: SecurityTransparent]
57
58 [assembly: System.Resources.NeutralResourcesLanguage("en-US")]
59 [assembly: InternalsVisibleTo("TestInternalDLR, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c10ce00dd2e0ce5046d68183d3ad035b47e92bf0ce7bcf8a03a217ca5d0b0c7db973fdf97579b52b502a23d4069dbf043389e1ab65a1d6c508a9837f3e2350f15e05cc63c0fc4b0410867a51919090e4c33f80203e9b0035b21c32bae20f98b068f90d99a50133a5336480d94039b176519f5fd8524765f33be43da65c4b68ba")]
60
61 #if !SILVERLIGHT
62 [assembly: AssemblyVersion("1.1.0.30")]
63 [assembly: AssemblyFileVersion("1.1.0.30")]
64 [assembly: AssemblyInformationalVersion("1.1")]
65 #endif
66
67 #if !SILVERLIGHT && !WP75
68 [assembly: AllowPartiallyTrustedCallers]
69 [assembly: TypeForwardedTo(typeof(Microsoft.Scripting.Runtime.DynamicStackFrame))]
70 #endif
71