1 | #region Using directives
|
---|
2 |
|
---|
3 | using System;
|
---|
4 | using System.Reflection;
|
---|
5 | using System.Runtime.CompilerServices;
|
---|
6 | using System.Runtime.InteropServices;
|
---|
7 | using System.Runtime.ConstrainedExecution;
|
---|
8 |
|
---|
9 | #endregion
|
---|
10 |
|
---|
11 | //
|
---|
12 | // General Information about an assembly is controlled through the following
|
---|
13 | // set of attributes. Change these attribute values to modify the information
|
---|
14 | // associated with an assembly.
|
---|
15 | //
|
---|
16 | [assembly: AssemblyTitle(@"")]
|
---|
17 | [assembly: AssemblyDescription(@"")]
|
---|
18 | [assembly: AssemblyConfiguration("")]
|
---|
19 | [assembly: AssemblyCompany(@"HEAL")]
|
---|
20 | [assembly: AssemblyProduct(@"HeuristicLab")]
|
---|
21 | [assembly: AssemblyCopyright("")]
|
---|
22 | [assembly: AssemblyTrademark("")]
|
---|
23 | [assembly: AssemblyCulture("")]
|
---|
24 | [assembly: System.Resources.NeutralResourcesLanguage("en")]
|
---|
25 |
|
---|
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 Revision and Build Numbers
|
---|
35 | // by using the '*' as shown below:
|
---|
36 |
|
---|
37 | [assembly: AssemblyVersion(@"1.0.0.0")]
|
---|
38 | [assembly: ComVisible(false)]
|
---|
39 | [assembly: CLSCompliant(true)]
|
---|
40 | [assembly: ReliabilityContract(Consistency.MayCorruptProcess, Cer.None)]
|
---|
41 |
|
---|
42 | //
|
---|
43 | // Make the Dsl project internally visible to the DslPackage assembly
|
---|
44 | //
|
---|
45 | [assembly: InternalsVisibleTo(@"HeuristicLab.SimulationCore.DslPackage, PublicKey=002400000480000094000000060200000024000052534131000400000100010001A291ECF742F53C54309BBB35DB53E03D146648FA672611E0EB6B785FBE7FD08A71AC71B16BC4706D0F69A661A0EA3E34655E70395BD2183131EAFF086AF4EE4F80A95F9AACF644E2D837FE986A992E369AE1364F9019926B77F658063A690844979EC69854AAA115346C4BAB21EA1FC3B05B13E4FB0361F230A0D5EAB010B5")] |
---|