BepInEx.Patcher.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net35</TargetFramework>
  5. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  6. <AssemblyTitle>BepInEx.Patcher</AssemblyTitle>
  7. <Product>BepInEx.Patcher</Product>
  8. <Copyright>Copyright © Bepis 2018</Copyright>
  9. <AssemblyVersion>5.0.0.0</AssemblyVersion>
  10. <FileVersion>5.0.0.0</FileVersion>
  11. <DebugType>embedded</DebugType>
  12. <DebugSymbols>true</DebugSymbols>
  13. <OutputPath>..\bin\patcher\</OutputPath>
  14. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  15. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  16. </PropertyGroup>
  17. <PropertyGroup>
  18. <StartupObject>BepInEx.Patcher.Program</StartupObject>
  19. </PropertyGroup>
  20. <Import Project="$(SolutionDir)\packages\ILRepack.Lib.MSBuild.Task.2.0.16.1\build\ILRepack.Lib.MSBuild.Task.targets" Condition="Exists('$(SolutionDir)\packages\ILRepack.Lib.MSBuild.Task.2.0.16.1\build\ILRepack.Lib.MSBuild.Task.targets')" />
  21. <ItemGroup>
  22. <PackageReference Include="ILRepack" Version="2.0.16" />
  23. <PackageReference Include="ILRepack.Lib.MSBuild.Task" Version="2.0.16.1" />
  24. <PackageReference Include="Mono.Cecil" Version="0.10.4" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Reference Include="Mono.Cecil, Version=0.10.3.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
  28. <HintPath>$(SolutionDir)\packages\Mono.Cecil.0.10.3\lib\net35\Mono.Cecil.dll</HintPath>
  29. </Reference>
  30. </ItemGroup>
  31. <ItemGroup>
  32. <None Include="ILRepack.targets" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <ProjectReference Include="..\BepInEx.Unity\BepInEx.Unity.csproj" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <EmbeddedResource Include="..\bin\patcher\BepInEx.Bootstrap.dll" />
  39. </ItemGroup>
  40. </Project>