mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-10 15:07:26 +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>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Mono.Cecil">
|
<Reference Include="Mono.Cecil, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
|
||||||
<HintPath>..\..\Dependencies\managed\Mono.Cecil.dll</HintPath>
|
<HintPath>..\..\packages\Mono.Cecil.0.9.6.1\lib\net35\Mono.Cecil.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Mono.Cecil.Mdb">
|
<Reference Include="Mono.Cecil.Mdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
|
||||||
<HintPath>..\..\Dependencies\managed\Mono.Cecil.Mdb.dll</HintPath>
|
<HintPath>..\..\packages\Mono.Cecil.0.9.6.1\lib\net35\Mono.Cecil.Mdb.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Mono.Cecil.Pdb">
|
<Reference Include="Mono.Cecil.Pdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
|
||||||
<HintPath>..\..\Dependencies\managed\Mono.Cecil.Pdb.dll</HintPath>
|
<HintPath>..\..\packages\Mono.Cecil.0.9.6.1\lib\net35\Mono.Cecil.Pdb.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Mono.Cecil.Rocks">
|
<Reference Include="Mono.Cecil.Rocks, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
|
||||||
<HintPath>..\..\Dependencies\managed\Mono.Cecil.Rocks.dll</HintPath>
|
<HintPath>..\..\packages\Mono.Cecil.0.9.6.1\lib\net35\Mono.Cecil.Rocks.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
|
@ -86,6 +90,7 @@
|
||||||
<None Include="..\..\OpenTK.snk">
|
<None Include="..\..\OpenTK.snk">
|
||||||
<Link>OpenTK.snk</Link>
|
<Link>OpenTK.snk</Link>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="packages.config" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- 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