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
diff options
context:
space:
mode:
authorjbevain <jbevain@gmail.com>2011-04-07 12:02:56 +0400
committerjbevain <jbevain@gmail.com>2011-04-07 12:02:56 +0400
commit53069552697943bc2cb98f1c87767ae738b5fb2c (patch)
treecbe0e9446a56f0ef3b3f19fa63cbb2a400bb3b0a /Mono.Cecil.nuspec
parentec89dc59897baeef5d9069eb497af3739dd06442 (diff)
Add nuspec file
Diffstat (limited to 'Mono.Cecil.nuspec')
-rwxr-xr-xMono.Cecil.nuspec23
1 files changed, 23 insertions, 0 deletions
diff --git a/Mono.Cecil.nuspec b/Mono.Cecil.nuspec
new file mode 100755
index 0000000..f8f3bf3
--- /dev/null
+++ b/Mono.Cecil.nuspec
@@ -0,0 +1,23 @@
+<?xml version="1.0"?>
+<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
+ <id>Mono.Cecil</id>
+ <version>0.9.4.0</version>
+ <title>Mono.Cecil</title>
+ <authors>Jb Evain</authors>
+ <owners>Jb Evain</owners>
+ <licenseUrl>http://opensource.org/licenses/mit-license.php</licenseUrl>
+ <requireLicenseAcceptance>false</requireLicenseAcceptance>
+ <projectUrl>http://github.com/jbevain/cecil/</projectUrl>
+ <summary>Cecil is a library written by Jb Evain to generate and inspect programs and libraries in the ECMA CIL format.</summary>
+ <description>Cecil is a library written by Jb Evain to generate and inspect programs and libraries in the ECMA CIL format. It has full support for generics, and support some debugging symbol format. In simple English, with Cecil, you can load existing managed assemblies, browse all the contained types, modify them on the fly and save back to the disk the modified assembly.</description>
+ <language>en-US</language>
+ <tags>assembly assemblies module modules il cil msil bytecode reflection injection cecil mono aop</tags>
+ </metadata>
+ <files>
+ <file src="bin\net_2_0_Release\*.dll" target="lib/net20" />
+ <file src="bin\net_3_5_Release\*.dll" target="lib/net35" />
+ <file src="bin\net_4_0_Release\*.dll" target="lib/net40" />
+ <file src="bin\silverlight_Release\*.dll" target="lib/sl40" />
+ </files>
+</package>