BepInEx.Patcher.csproj 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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="Mono.Cecil" Version="0.10.4" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Reference Include="Mono.Cecil, Version=0.10.4.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
  26. <HintPath>$(SolutionDir)\packages\Mono.Cecil.0.10.4\lib\net35\Mono.Cecil.dll</HintPath>
  27. </Reference>
  28. </ItemGroup>
  29. <ItemGroup>
  30. <None Include="ILRepack.targets" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <ProjectReference Include="..\BepInEx.Unity\BepInEx.Unity.csproj" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <EmbeddedResource Include="..\bin\patcher\BepInEx.Bootstrap.dll" />
  37. </ItemGroup>
  38. <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
  39. </Project>