2009-07-11 Michael Barker <mike@middlesoft.co.uk>
[mono.git] / mcs / class / dlr / Runtime / Microsoft.Scripting.Core / Properties / AssemblyInfo.cs
1 /* ****************************************************************************
2  *
3  * Copyright (c) Microsoft Corporation. 
4  *
5  * This source code is subject to terms and conditions of the Microsoft Public License. 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  Microsoft Public License, 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 Microsoft Public License.
10  *
11  * You must not remove this notice, or any other, from this software.
12  *
13  *
14  * ***************************************************************************/
15
16 #if CODEPLEX_40
17 using System;
18 #else
19 using System; using Microsoft;
20 #endif
21 using System.Reflection;
22 using System.Runtime.CompilerServices;
23 #if !CODEPLEX_40
24 using Microsoft.Runtime.CompilerServices;
25 #endif
26
27 using System.Runtime.InteropServices;
28 using System.Security;
29
30 // General Information about an assembly is controlled through the following 
31 // set of attributes. Change these attribute values to modify the information
32 // associated with an assembly.
33 [assembly: AssemblyTitle("Microsoft.Scripting")]
34 [assembly: AssemblyDescription("")]
35 [assembly: AssemblyConfiguration("")]
36 [assembly: AssemblyCompany("Microsoft")]
37 [assembly: AssemblyProduct("Microsoft.Scripting")]
38 [assembly: AssemblyCopyright("� Microsoft Corporation.  All rights reserved.")]
39 [assembly: AssemblyTrademark("")]
40 [assembly: AssemblyCulture("")]
41
42 // Setting ComVisible to false makes the types in this assembly not visible 
43 // to COM components.  If you need to access a type in this assembly from 
44 // COM, set the ComVisible attribute to true on that type.
45 [assembly: ComVisible(false)]
46
47 [assembly: CLSCompliant(true)]
48
49 // The following GUID is for the ID of the typelib if this project is exposed to COM
50 [assembly: Guid("cabb8088-1370-43ca-ad47-1c32d3f7bd10")]
51
52 // Version information for an assembly consists of the following four values:
53 //
54 //      Major Version
55 //      Minor Version 
56 //      Build Number
57 //      Revision
58 //
59 // You can specify all the values or you can default the Revision and Build Numbers 
60 // by using the '*' as shown below:
61 [assembly: SecurityTransparent]
62
63 [assembly: System.Resources.NeutralResourcesLanguage("en-US")]
64
65 #if !SILVERLIGHT
66 [assembly: AssemblyVersion("0.9.6.10")]
67 [assembly: AssemblyFileVersion("1.0.0.00")]
68 [assembly: AssemblyInformationalVersion("1.0")]
69 [assembly: AllowPartiallyTrustedCallers]
70 #if CODEPLEX_40
71 [assembly: SecurityRules(SecurityRuleSet.Level1)]
72 #endif
73 #endif