Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/rocks
diff options
context:
space:
mode:
authorjbevain <jbevain@gmail.com>2010-04-12 15:44:30 +0400
committerjbevain <jbevain@gmail.com>2010-04-12 15:44:30 +0400
commit7d83ad54ae15c35aaf1cc6d93d84c793e9de3a1c (patch)
tree1958fdbae6e7c681574897981850b1c9307b5580 /rocks
parentfedc9b6c1ca5081e2b63d8050b911f120d4342de (diff)
add an AssemblyInfo to Mono.Cecil.Rocks, update the others
Diffstat (limited to 'rocks')
-rw-r--r--rocks/Mono.Cecil.Rocks.csproj1
-rwxr-xr-xrocks/Mono.Cecil.Rocks/AssemblyInfo.cs41
2 files changed, 42 insertions, 0 deletions
diff --git a/rocks/Mono.Cecil.Rocks.csproj b/rocks/Mono.Cecil.Rocks.csproj
index 1cc3507..85fe2c0 100644
--- a/rocks/Mono.Cecil.Rocks.csproj
+++ b/rocks/Mono.Cecil.Rocks.csproj
@@ -47,6 +47,7 @@
<ItemGroup>
</ItemGroup>
<ItemGroup>
+ <Compile Include="Mono.Cecil.Rocks\AssemblyInfo.cs" />
<Compile Include="Mono.Cecil.Rocks\SecurityDeclarationRocks.cs" />
<Compile Include="Mono.Cecil.Rocks\MethodBodyRocks.cs" />
<Compile Include="Mono.Cecil.Rocks\ILParser.cs" />
diff --git a/rocks/Mono.Cecil.Rocks/AssemblyInfo.cs b/rocks/Mono.Cecil.Rocks/AssemblyInfo.cs
new file mode 100755
index 0000000..6a82727
--- /dev/null
+++ b/rocks/Mono.Cecil.Rocks/AssemblyInfo.cs
@@ -0,0 +1,41 @@
+//
+// AssemblyInfo.cs
+//
+// Author:
+// Jb Evain (jbevain@gmail.com)
+//
+// Copyright (c) 2008 - 2010 Jb Evain
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System;
+using System.Reflection;
+using System.Runtime.InteropServices;
+
+[assembly: AssemblyTitle ("Mono.Cecil.Rocks")]
+[assembly: AssemblyProduct ("Mono.Cecil")]
+[assembly: AssemblyCopyright ("Copyright © 2008 - 2010 Jb Evain")]
+
+[assembly: CLSCompliant (false)]
+[assembly: ComVisible (false)]
+
+[assembly: AssemblyVersion ("0.9.0.0")]
+[assembly: AssemblyFileVersion ("0.9.0.0")]