BepInEx.Unity.csproj 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net35</TargetFramework>
  4. <AssemblyTitle>BepInEx.Unity</AssemblyTitle>
  5. <Product>BepInEx.Unity</Product>
  6. <Copyright>Copyright © 2020</Copyright>
  7. <OutputPath>..\bin\Unity\</OutputPath>
  8. </PropertyGroup>
  9. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  10. <DebugType>full</DebugType>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  13. <DebugType>none</DebugType>
  14. <DocumentationFile>..\bin\BepInEx.Unity.xml</DocumentationFile>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <Reference Include="UnityEngine">
  18. <HintPath>..\lib\UnityEngine.dll</HintPath>
  19. <Private>False</Private>
  20. </Reference>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
  24. <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj" />
  25. <ProjectReference Include="..\BepInEx.Preloader.Unity\BepInEx.Preloader.Unity.csproj" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <PackageReference Include="HarmonyX" Version="2.1.1" />
  29. </ItemGroup>
  30. </Project>