1 | #region License Information
|
---|
2 | /* SimSharp - A .NET port of SimPy, discrete event simulation framework
|
---|
3 | Copyright (C) 2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 |
|
---|
5 | This program is free software: you can redistribute it and/or modify
|
---|
6 | it under the terms of the GNU General Public License as published by
|
---|
7 | the Free Software Foundation, either version 3 of the License, or
|
---|
8 | (at your option) any later version.
|
---|
9 |
|
---|
10 | This program is distributed in the hope that it will be useful,
|
---|
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
13 | GNU General Public License for more details.
|
---|
14 |
|
---|
15 | You should have received a copy of the GNU General Public License
|
---|
16 | along with this program. If not, see <http://www.gnu.org/licenses/>.*/
|
---|
17 | #endregion
|
---|
18 |
|
---|
19 | using System.Reflection;
|
---|
20 | using System.Runtime.InteropServices;
|
---|
21 |
|
---|
22 | // General Information about an assembly is controlled through the following
|
---|
23 | // set of attributes. Change these attribute values to modify the information
|
---|
24 | // associated with an assembly.
|
---|
25 | [assembly: AssemblyTitle("SimSharp")]
|
---|
26 | [assembly: AssemblyDescription("A .NET port of SimPy, discrete event simulation framework")]
|
---|
27 | [assembly: AssemblyConfiguration("")]
|
---|
28 | [assembly: AssemblyCompany("HEAL")]
|
---|
29 | [assembly: AssemblyProduct("SimSharp")]
|
---|
30 | [assembly: AssemblyCopyright("Copyright © HEAL 2015")]
|
---|
31 | [assembly: AssemblyTrademark("")]
|
---|
32 | [assembly: AssemblyCulture("")]
|
---|
33 |
|
---|
34 | // Setting ComVisible to false makes the types in this assembly not visible
|
---|
35 | // to COM components. If you need to access a type in this assembly from
|
---|
36 | // COM, set the ComVisible attribute to true on that type.
|
---|
37 | [assembly: ComVisible(false)]
|
---|
38 |
|
---|
39 | // The following GUID is for the ID of the typelib if this project is exposed to COM
|
---|
40 | [assembly: Guid("d51e9cc2-c26b-4df5-94f8-ca8f63f75db9")]
|
---|
41 |
|
---|
42 | // Version information for an assembly consists of the following four values:
|
---|
43 | //
|
---|
44 | // Major Version
|
---|
45 | // Minor Version
|
---|
46 | // Build Number
|
---|
47 | // Revision
|
---|
48 | //
|
---|
49 | // You can specify all the values or you can default the Build and Revision Numbers
|
---|
50 | // by using the '*' as shown below:
|
---|
51 | // [assembly: AssemblyVersion("1.0.*")]
|
---|
52 | [assembly: AssemblyVersion("3.0.7.0")]
|
---|
53 | [assembly: AssemblyFileVersion("3.0.7.0")]
|
---|