BepInEx.Preloader.Core.csproj 1.1 KB

1234567891011121314151617181920212223242526
  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. <OutputPath>..\bin\</OutputPath>
  7. <LangVersion>8</LangVersion>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  11. <DebugType>full</DebugType>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  14. <DebugType>none</DebugType>
  15. <DocumentationFile>..\bin\BepInEx.Preloader.Core.xml</DocumentationFile>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <PackageReference Include="HarmonyX" Version="2.1.1" />
  22. <PackageReference Include="Mono.Cecil" Version="0.10.4" />
  23. <PackageReference Include="MonoMod.RuntimeDetour" Version="20.11.5.1" />
  24. <PackageReference Include="MonoMod.Utils" Version="20.11.5.1" />
  25. </ItemGroup>
  26. </Project>