BepInEx.NetLauncher.csproj 1.0 KB

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net452</TargetFramework>
  5. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  6. <AssemblyTitle>BepInEx.NetLauncher</AssemblyTitle>
  7. <Product>BepInEx.NetLauncher</Product>
  8. <Copyright>Copyright © 2020</Copyright>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  11. <DebugType>full</DebugType>
  12. <OutputPath>..\bin\net\</OutputPath>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  15. <DebugType>pdbonly</DebugType>
  16. <OutputPath>..\bin\NetLauncher\</OutputPath>
  17. <DocumentationFile />
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
  21. <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <PackageReference Include="HarmonyX" Version="2.1.1" />
  25. </ItemGroup>
  26. </Project>