BepInEx.Patcher.csproj 1.9 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. <DebugType>embedded</DebugType>
  9. <DebugSymbols>true</DebugSymbols>
  10. <OutputPath>..\bin\patcher\</OutputPath>
  11. <LangVersion>8</LangVersion>
  12. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  13. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  14. </PropertyGroup>
  15. <PropertyGroup>
  16. <StartupObject>BepInEx.Patcher.Program</StartupObject>
  17. </PropertyGroup>
  18. <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')" />
  19. <ItemGroup>
  20. <PackageReference Include="ILRepack" Version="2.0.16" />
  21. <PackageReference Include="ILRepack.Lib.MSBuild.Task" Version="2.0.16.1" />
  22. <PackageReference Include="jnm2.ReferenceAssemblies.net35" Version="1.0.1" PrivateAssets="All" />
  23. <PackageReference Include="Mono.Cecil" Version="0.10.4" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Reference Include="Mono.Cecil, Version=0.10.4.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
  27. <HintPath>$(SolutionDir)\packages\Mono.Cecil.0.10.4\lib\net35\Mono.Cecil.dll</HintPath>
  28. </Reference>
  29. </ItemGroup>
  30. <ItemGroup>
  31. <None Include="ILRepack.targets" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <ProjectReference Include="..\BepInEx.Unity\BepInEx.Unity.csproj" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <EmbeddedResource Include="..\bin\patcher\BepInEx.Bootstrap.dll" />
  38. </ItemGroup>
  39. <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
  40. </Project>