BepInEx.Bootstrap.csproj 600 B

123456789101112131415
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net35</TargetFramework>
  4. <AssemblyTitle>BepInEx.Bootstrap</AssemblyTitle>
  5. <Product>BepInEx.Bootstrap</Product>
  6. <Copyright>Copyright © 2018</Copyright>
  7. <DebugType>none</DebugType>
  8. <OutputPath>..\bin\patcher\</OutputPath>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
  13. <ProjectReference Include="..\BepInEx.Unity\BepInEx.Unity.csproj" />
  14. </ItemGroup>
  15. </Project>