Skip to content

Commit bd05325

Browse files
committed
added Mono.Cecil
1 parent b4f62e5 commit bd05325

18 files changed

Lines changed: 32 additions & 0 deletions

ConventionTests/ConventionTests.csproj

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,18 @@
4343
<Reference Include="Castle.Windsor">
4444
<HintPath>..\packages\Castle.Windsor.3.0.0.4001\lib\net40\Castle.Windsor.dll</HintPath>
4545
</Reference>
46+
<Reference Include="Mono.Cecil">
47+
<HintPath>..\packages\Mono.Cecil.0.9.5.4\lib\net40\Mono.Cecil.dll</HintPath>
48+
</Reference>
49+
<Reference Include="Mono.Cecil.Mdb">
50+
<HintPath>..\packages\Mono.Cecil.0.9.5.4\lib\net40\Mono.Cecil.Mdb.dll</HintPath>
51+
</Reference>
52+
<Reference Include="Mono.Cecil.Pdb">
53+
<HintPath>..\packages\Mono.Cecil.0.9.5.4\lib\net40\Mono.Cecil.Pdb.dll</HintPath>
54+
</Reference>
55+
<Reference Include="Mono.Cecil.Rocks">
56+
<HintPath>..\packages\Mono.Cecil.0.9.5.4\lib\net40\Mono.Cecil.Rocks.dll</HintPath>
57+
</Reference>
4658
<Reference Include="nunit.framework">
4759
<HintPath>..\packages\NUnit.2.6.0.12054\lib\nunit.framework.dll</HintPath>
4860
</Reference>

ConventionTests/packages.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
<package id="ApprovalTests" version="1.9" />
44
<package id="Castle.Core" version="3.0.0.4001" />
55
<package id="Castle.Windsor" version="3.0.0.4001" />
6+
<package id="Mono.Cecil" version="0.9.5.4" targetFramework="net40" />
67
<package id="NUnit" version="2.6.0.12054" />
78
</packages>

packages/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#disable ignoring. Everything gets committed
2+
!*
656 KB
Binary file not shown.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>Mono.Cecil</id>
5+
<version>0.9.5.4</version>
6+
<title>Mono.Cecil</title>
7+
<authors>Jb Evain</authors>
8+
<owners>Jb Evain</owners>
9+
<licenseUrl>http://opensource.org/licenses/mit-license.php</licenseUrl>
10+
<projectUrl>http://github.com/jbevain/cecil/</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<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>
13+
<summary>Cecil is a library written by Jb Evain to generate and inspect programs and libraries in the ECMA CIL format.</summary>
14+
<language>en-US</language>
15+
<tags>assembly assemblies module modules il cil msil bytecode reflection injection cecil mono aop</tags>
16+
</metadata>
17+
</package>
42 KB
Binary file not shown.
79.5 KB
Binary file not shown.
272 KB
Binary file not shown.
42 KB
Binary file not shown.
79.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)