BepInEx.Preloader.Unity.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net35</TargetFramework>
  4. <AssemblyTitle>BepInEx.Preloader.Unity</AssemblyTitle>
  5. <Product>BepInEx.Preloader.Unity</Product>
  6. <OutputPath>..\bin\</OutputPath>
  7. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  8. <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
  9. <GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
  10. <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
  11. <GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugType>full</DebugType>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  17. <DebugType>none</DebugType>
  18. <DocumentationFile>..\bin\BepInEx.Preloader.Unity.xml</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. <ItemGroup>
  28. <Folder Include="Properties" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Remove="Properties\AssemblyInfo.cs" />
  32. </ItemGroup>
  33. <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
  34. </Project>