1 | using System;
|
---|
2 | using System.Reflection;
|
---|
3 | using System.Runtime.InteropServices;
|
---|
4 |
|
---|
5 | // General Information about an assembly is controlled through the following
|
---|
6 | // set of attributes. Change these attribute values to modify the information
|
---|
7 | // associated with an assembly.
|
---|
8 | [assembly: AssemblyTitle("ICSharpCode.NRefactory.Cecil")]
|
---|
9 | [assembly: AssemblyDescription("Cecil Assembly Loader for NRefactory")]
|
---|
10 | [assembly: AssemblyConfiguration("")]
|
---|
11 | [assembly: AssemblyCompany("ICSharpCode")]
|
---|
12 | [assembly: AssemblyProduct("SharpDevelop/MonoDevelop")]
|
---|
13 | [assembly: AssemblyCopyright("Copyright 2010-2014 AlphaSierraPapa and Xamarin Inc.")]
|
---|
14 | [assembly: AssemblyTrademark("")]
|
---|
15 | [assembly: AssemblyCulture("")]
|
---|
16 |
|
---|
17 | // Setting ComVisible to false makes the types in this assembly not visible
|
---|
18 | // to COM components. If you need to access a type in this assembly from
|
---|
19 | // COM, set the ComVisible attribute to true on that type.
|
---|
20 | [assembly: ComVisible(false)]
|
---|
21 |
|
---|
22 | [assembly: CLSCompliant(true)]
|
---|
23 |
|
---|
24 | // The following GUID is for the ID of the typelib if this project is exposed to COM
|
---|
25 | [assembly: Guid("555f6032-12fe-42e3-ba15-fcaa108e75f7")]
|
---|
26 |
|
---|
27 | // Version information for an assembly consists of the following four values:
|
---|
28 | //
|
---|
29 | // Major Version
|
---|
30 | // Minor Version
|
---|
31 | // Build Number
|
---|
32 | // Revision
|
---|
33 | //
|
---|
34 | // You can specify all the values or you can default the Build and Revision Numbers
|
---|
35 | // by using the '*' as shown below:
|
---|
36 | // [assembly: AssemblyVersion("1.0.*")]
|
---|
37 | [assembly: AssemblyVersion("5.0.0.0")]
|
---|
38 | [assembly: AssemblyFileVersion("5.5.0")]
|
---|