mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 06:55:37 +00:00
[Bind] Replace copies of cecil with nuget links
Use nuget to get cecil rather than storing the binaries in the repo. Fixes #284
This commit is contained in:
parent
13f79437d5
commit
a3a3f31ca0
BIN
Dependencies/managed/Mono.Cecil.Mdb.dll
vendored
BIN
Dependencies/managed/Mono.Cecil.Mdb.dll
vendored
Binary file not shown.
BIN
Dependencies/managed/Mono.Cecil.Pdb.dll
vendored
BIN
Dependencies/managed/Mono.Cecil.Pdb.dll
vendored
Binary file not shown.
BIN
Dependencies/managed/Mono.Cecil.Rocks.dll
vendored
BIN
Dependencies/managed/Mono.Cecil.Rocks.dll
vendored
Binary file not shown.
BIN
Dependencies/managed/Mono.Cecil.dll
vendored
BIN
Dependencies/managed/Mono.Cecil.dll
vendored
Binary file not shown.
|
@ -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" />
|
||||
|
@ -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.
|
||||
|
|
4
Source/Generator.Rewrite/packages.config
Normal file
4
Source/Generator.Rewrite/packages.config
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Mono.Cecil" version="0.9.6.1" targetFramework="net35" />
|
||||
</packages>
|
Loading…
Reference in a new issue