Mercurial > pub > Jint1
annotate Jint.Runtime/AssemblyInfo.cs @ 4:1ae5b10f7a10
Code cleanup, minor refactoring
author | cin |
---|---|
date | Sun, 27 Oct 2013 21:20:59 +0400 |
parents | aced2ae9957f |
children |
rev | line source |
---|---|
0 | 1 using System.Reflection; |
2 using System.Runtime.CompilerServices; | |
3 | |
4 // Information about this assembly is defined by the following attributes. | |
5 // Change them to the values specific to your project. | |
6 | |
7 [assembly: AssemblyTitle("Jint.Runtime")] | |
8 [assembly: AssemblyDescription("")] | |
9 [assembly: AssemblyConfiguration("")] | |
10 [assembly: AssemblyCompany("")] | |
11 [assembly: AssemblyProduct("")] | |
3
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
0
diff
changeset
|
12 [assembly: AssemblyCopyright("")] |
0 | 13 [assembly: AssemblyTrademark("")] |
14 [assembly: AssemblyCulture("")] | |
15 | |
16 // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". | |
17 // The form "{Major}.{Minor}.*" will automatically update the build and revision, | |
18 // and "{Major}.{Minor}.{Build}.*" will update just the revision. | |
19 | |
20 [assembly: AssemblyVersion("1.0.*")] | |
21 | |
22 // The following attributes are used to specify the signing key for the assembly, | |
23 // if desired. See the Mono documentation for more information about signing. | |
24 | |
25 //[assembly: AssemblyDelaySign(false)] | |
26 //[assembly: AssemblyKeyFile("")] | |
27 |