Skip to content

Commit

Permalink
[Bind] Replace copies of cecil with nuget links
Browse files Browse the repository at this point in the history
Use nuget to get cecil rather than storing the binaries in the repo.

Fixes opentk#284
  • Loading branch information
Frassle committed Oct 11, 2015
1 parent 13f7943 commit a3a3f31
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
Binary file removed Dependencies/managed/Mono.Cecil.Mdb.dll
Binary file not shown.
Binary file removed Dependencies/managed/Mono.Cecil.Pdb.dll
Binary file not shown.
Binary file removed Dependencies/managed/Mono.Cecil.Rocks.dll
Binary file not shown.
Binary file removed Dependencies/managed/Mono.Cecil.dll
Binary file not shown.
21 changes: 13 additions & 8 deletions Source/Generator.Rewrite/Generator.Rewrite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,21 @@
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Cecil">
<HintPath>..\..\Dependencies\managed\Mono.Cecil.dll</HintPath>
<Reference Include="Mono.Cecil, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
<HintPath>..\..\packages\Mono.Cecil.0.9.6.1\lib\net35\Mono.Cecil.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Mono.Cecil.Mdb">
<HintPath>..\..\Dependencies\managed\Mono.Cecil.Mdb.dll</HintPath>
<Reference Include="Mono.Cecil.Mdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
<HintPath>..\..\packages\Mono.Cecil.0.9.6.1\lib\net35\Mono.Cecil.Mdb.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Mono.Cecil.Pdb">
<HintPath>..\..\Dependencies\managed\Mono.Cecil.Pdb.dll</HintPath>
<Reference Include="Mono.Cecil.Pdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
<HintPath>..\..\packages\Mono.Cecil.0.9.6.1\lib\net35\Mono.Cecil.Pdb.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Mono.Cecil.Rocks">
<HintPath>..\..\Dependencies\managed\Mono.Cecil.Rocks.dll</HintPath>
<Reference Include="Mono.Cecil.Rocks, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
<HintPath>..\..\packages\Mono.Cecil.0.9.6.1\lib\net35\Mono.Cecil.Rocks.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -86,6 +90,7 @@
<None Include="..\..\OpenTK.snk">
<Link>OpenTK.snk</Link>
</None>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
4 changes: 4 additions & 0 deletions Source/Generator.Rewrite/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Mono.Cecil" version="0.9.6.1" targetFramework="net35" />
</packages>

0 comments on commit a3a3f31

Please sign in to comment.