Last change
on this file since 2668 was
2659,
checked in by epitzer, 15 years ago
|
Add new Plugin that provides a code editor with syntax highlighting and code completion (#842)
|
File size:
1.3 KB
|
Line | |
---|
1 | using System.Reflection;
|
---|
2 | using System.Runtime.CompilerServices;
|
---|
3 | using System.Runtime.InteropServices;
|
---|
4 | using HeuristicLab.PluginInfrastructure;
|
---|
5 |
|
---|
6 | // General Information about an assembly is controlled through the following
|
---|
7 | // set of attributes. Change these attribute values to modify the information
|
---|
8 | // associated with an assembly.
|
---|
9 | [assembly: AssemblyTitle("HeuristicLab.CodeEditor")]
|
---|
10 | [assembly: AssemblyDescription("C# code editor with syntax highlighting and code completion")]
|
---|
11 | [assembly: AssemblyConfiguration("")]
|
---|
12 | [assembly: AssemblyCompany("")]
|
---|
13 | [assembly: AssemblyProduct("HeuristicLab")]
|
---|
14 | [assembly: AssemblyCopyright("(c) 2010 HEAL & Daniel Grunwald (#develop)")]
|
---|
15 | [assembly: AssemblyTrademark("")]
|
---|
16 | [assembly: AssemblyCulture("")]
|
---|
17 |
|
---|
18 | // Setting ComVisible to false makes the types in this assembly not visible
|
---|
19 | // to COM components. If you need to access a type in this assembly from
|
---|
20 | // COM, set the ComVisible attribute to true on that type.
|
---|
21 | [assembly: ComVisible(false)]
|
---|
22 |
|
---|
23 | [assembly: Guid("956e2f0e-4f77-4575-a8d4-05892194c32d")]
|
---|
24 |
|
---|
25 | // Version information for an assembly consists of the following four values:
|
---|
26 | //
|
---|
27 | // Major Version
|
---|
28 | // Minor Version
|
---|
29 | // Build Number
|
---|
30 | // Revision
|
---|
31 | //
|
---|
32 | [assembly: AssemblyVersion("3.2.0.$WCREV$")]
|
---|
33 | [assembly: AssemblyFileVersion("3.2.0.$WCREV$")]
|
---|
34 | [assembly: AssemblyBuildDate("$WCNOW$")]
|
---|
35 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.