1 | using System;
|
---|
2 | using System.Reflection;
|
---|
3 | using System.Resources;
|
---|
4 | using System.Runtime.InteropServices;
|
---|
5 | using System.Windows;
|
---|
6 | using System.Windows.Markup;
|
---|
7 |
|
---|
8 | // General Information about an assembly is controlled through the following
|
---|
9 | // set of attributes. Change these attribute values to modify the information
|
---|
10 | // associated with an assembly.
|
---|
11 | [assembly: AssemblyTitle("ICSharpCode.AvalonEdit")]
|
---|
12 | [assembly: AssemblyDescription("WPF-based extensible text editor")]
|
---|
13 | [assembly: AssemblyConfiguration("")]
|
---|
14 | [assembly: AssemblyCompany("ic#code")]
|
---|
15 | [assembly: AssemblyProduct("SharpDevelop")]
|
---|
16 | [assembly: AssemblyCopyright("2000-2014 AlphaSierraPapa for the SharpDevelop Team")]
|
---|
17 | [assembly: AssemblyTrademark("")]
|
---|
18 | [assembly: AssemblyCulture("")]
|
---|
19 |
|
---|
20 | // Setting ComVisible to false makes the types in this assembly not visible
|
---|
21 | // to COM components. If you need to access a type in this assembly from
|
---|
22 | // COM, set the ComVisible attribute to true on that type.
|
---|
23 | [assembly: ComVisible(false)]
|
---|
24 |
|
---|
25 | [assembly: CLSCompliant(true)]
|
---|
26 |
|
---|
27 | // The following GUID is for the ID of the typelib if this project is exposed to COM
|
---|
28 | [assembly: Guid("5d2fbf08-c059-4fa7-98ef-a56916bd007b")]
|
---|
29 |
|
---|
30 | // Version information for an assembly consists of the following four values:
|
---|
31 | //
|
---|
32 | // Major Version
|
---|
33 | // Minor Version
|
---|
34 | // Build Number
|
---|
35 | // Revision
|
---|
36 | //
|
---|
37 | // You can specify all the values or you can default the Build and Revision Numbers
|
---|
38 | // by using the '*' as shown below:
|
---|
39 | // [assembly: AssemblyVersion("1.0.*")]
|
---|
40 | [assembly: AssemblyVersion("5.0.1")]
|
---|
41 | [assembly: AssemblyFileVersion("1.0.0.0")]
|
---|
42 |
|
---|
43 | [assembly: NeutralResourcesLanguage("en-US")]
|
---|
44 |
|
---|
45 | [assembly: ThemeInfo(
|
---|
46 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
---|
47 | //(used if a resource is not found in the page,
|
---|
48 | // or application resource dictionaries)
|
---|
49 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
|
---|
50 | //(used if a resource is not found in the page,
|
---|
51 | // app, or any theme specific resource dictionaries)
|
---|
52 | )]
|
---|
53 |
|
---|
54 | [assembly: XmlnsPrefix("http://icsharpcode.net/sharpdevelop/avalonedit", "avalonedit")]
|
---|
55 |
|
---|
56 | [assembly: XmlnsDefinition("http://icsharpcode.net/sharpdevelop/avalonedit", "ICSharpCode.AvalonEdit")]
|
---|
57 | [assembly: XmlnsDefinition("http://icsharpcode.net/sharpdevelop/avalonedit", "ICSharpCode.AvalonEdit.Editing")]
|
---|
58 | [assembly: XmlnsDefinition("http://icsharpcode.net/sharpdevelop/avalonedit", "ICSharpCode.AvalonEdit.Rendering")]
|
---|
59 | [assembly: XmlnsDefinition("http://icsharpcode.net/sharpdevelop/avalonedit", "ICSharpCode.AvalonEdit.Highlighting")]
|
---|
60 | [assembly: XmlnsDefinition("http://icsharpcode.net/sharpdevelop/avalonedit", "ICSharpCode.AvalonEdit.Search")]
|
---|
61 |
|
---|
62 | [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2243:AttributeStringLiteralsShouldParseCorrectly",
|
---|
63 | Justification = "AssemblyInformationalVersion does not need to be a parsable version")] |
---|