BepInEx.NetLauncher.csproj 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
  11. <GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
  12. <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
  13. <GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugType>full</DebugType>
  17. <OutputPath>..\bin\net\</OutputPath>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  20. <DebugType>portable</DebugType>
  21. <OutputPath>..\bin\NetLauncher\</OutputPath>
  22. <DocumentationFile />
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
  26. <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <PackageReference Include="HarmonyX" Version="2.1.1" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Folder Include="Properties" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <Compile Remove="Properties\AssemblyInfo.cs" />
  36. </ItemGroup>
  37. <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
  38. </Project>