BepInEx.NetLauncher.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  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>9</LangVersion>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  12. <DebugType>full</DebugType>
  13. <OutputPath>bin\Debug</OutputPath>
  14. <PlatformTarget>x86</PlatformTarget>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  17. <DebugType>portable</DebugType>
  18. <OutputPath>..\bin\NetLauncher\</OutputPath>
  19. <DocumentationFile />
  20. <PlatformTarget>x86</PlatformTarget>
  21. </PropertyGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
  24. <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <PackageReference Include="HarmonyX" Version="2.2.0" />
  28. <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0">
  29. <PrivateAssets>all</PrivateAssets>
  30. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  31. </PackageReference>
  32. </ItemGroup>
  33. <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
  34. </Project>