OLD | NEW |
| (Empty) |
1 // Copyright 2009 The Native Client Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can | |
3 // be found in the LICENSE file. | |
4 | |
5 using System::CLSCompliantAttribute; | |
6 using System::Reflection::AssemblyDescriptionAttribute; | |
7 using System::Reflection::AssemblyCompanyAttribute; | |
8 using System::Reflection::AssemblyConfigurationAttribute; | |
9 using System::Reflection::AssemblyCopyrightAttribute; | |
10 using System::Reflection::AssemblyCultureAttribute; | |
11 using System::Reflection::AssemblyProductAttribute; | |
12 using System::Reflection::AssemblyTitleAttribute; | |
13 using System::Reflection::AssemblyTrademarkAttribute; | |
14 using System::Reflection::AssemblyVersionAttribute; | |
15 using System::Runtime::InteropServices::ComVisibleAttribute; | |
16 using System::Security::Permissions::SecurityAction; | |
17 using System::Security::Permissions::SecurityPermissionAttribute; | |
18 | |
19 // | |
20 // General Information about an assembly is controlled through the following | |
21 // set of attributes. Change these attribute values to modify the information | |
22 // associated with an assembly. | |
23 // | |
24 [assembly:AssemblyTitleAttribute("NaClVsxDebugHelpers")]; | |
25 [assembly:AssemblyDescriptionAttribute("")]; | |
26 [assembly:AssemblyConfigurationAttribute("")]; | |
27 [assembly:AssemblyCompanyAttribute("Microsoft")]; | |
28 [assembly:AssemblyProductAttribute("NaClVsxDebugHelpers")]; | |
29 [assembly:AssemblyCopyrightAttribute("Copyright (c) Microsoft 2010")]; | |
30 [assembly:AssemblyTrademarkAttribute("")]; | |
31 [assembly:AssemblyCultureAttribute("")]; | |
32 | |
33 // | |
34 // Version information for an assembly consists of the following four values: | |
35 // | |
36 // Major Version | |
37 // Minor Version | |
38 // Build Number | |
39 // Revision | |
40 // | |
41 // You can specify all the value or you can | |
42 // default the Revision and Build Numbers | |
43 // by using the '*' as shown below: | |
44 | |
45 [assembly:AssemblyVersionAttribute("1.0.*")]; | |
46 | |
47 [assembly:ComVisible(false)]; | |
48 | |
49 [assembly:CLSCompliantAttribute(true)]; | |
50 | |
51 [assembly:SecurityPermission( | |
52 SecurityAction::RequestMinimum, | |
53 UnmanagedCode = true)]; | |
54 | |
OLD | NEW |