BepInEx.Preloader.Core.csproj 1.0 KB

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net35</TargetFramework>
  4. <AssemblyTitle>BepInEx.Preloader.Core</AssemblyTitle>
  5. <Product>BepInEx.Preloader.Core</Product>
  6. <Copyright>Copyright © 2020</Copyright>
  7. <OutputPath>..\bin\</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.Preloader.Core.xml</DocumentationFile>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <PackageReference Include="HarmonyX" Version="2.1.1" />
  21. <PackageReference Include="Mono.Cecil" Version="0.10.4" />
  22. <PackageReference Include="MonoMod.RuntimeDetour" Version="20.11.5.1" />
  23. <PackageReference Include="MonoMod.Utils" Version="20.11.5.1" />
  24. </ItemGroup>
  25. </Project>