BepInEx.Unity.csproj 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net35</TargetFramework>
  4. <AssemblyTitle>BepInEx.Unity</AssemblyTitle>
  5. <Product>BepInEx.Unity</Product>
  6. <OutputPath>..\bin\Unity\</OutputPath>
  7. <LangVersion>8</LangVersion>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
  10. <GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
  11. <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
  12. <GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugType>full</DebugType>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  18. <DebugType>none</DebugType>
  19. <DocumentationFile>..\bin\BepInEx.Unity.xml</DocumentationFile>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <Reference Include="UnityEngine">
  23. <HintPath>..\lib\UnityEngine.dll</HintPath>
  24. <Private>False</Private>
  25. </Reference>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
  29. <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj" />
  30. <ProjectReference Include="..\BepInEx.Preloader.Unity\BepInEx.Preloader.Unity.csproj" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <PackageReference Include="HarmonyX" Version="2.1.1" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Folder Include="Properties" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Remove="Properties\AssemblyInfo.cs" />
  40. </ItemGroup>
  41. <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
  42. </Project>