BepInEx.NetLauncher.csproj 1.2 KB

12345678910111213141516171819202122232425262728
  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. <LangVersion>8</LangVersion>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  12. <DebugType>full</DebugType>
  13. <OutputPath>..\bin\net\</OutputPath>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  16. <DebugType>portable</DebugType>
  17. <OutputPath>..\bin\NetLauncher\</OutputPath>
  18. <DocumentationFile />
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
  22. <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <PackageReference Include="HarmonyX" Version="2.1.1" />
  26. </ItemGroup>
  27. <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
  28. </Project>