BepInEx.Core.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net35</TargetFramework>
  4. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  5. <AssemblyTitle>BepInEx</AssemblyTitle>
  6. <Product>BepInEx</Product>
  7. <LangVersion>8</LangVersion>
  8. <Description>Unity plugin injection framework</Description>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  12. <DebugType>none</DebugType>
  13. <OutputPath>..\bin\</OutputPath>
  14. <DocumentationFile>..\bin\BepInEx.Core.xml</DocumentationFile>
  15. </PropertyGroup>
  16. <PropertyGroup>
  17. <StartupObject />
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  20. <OutputPath>bin\$(Configuration)\</OutputPath>
  21. <DocumentationFile />
  22. <PlatformTarget>x86</PlatformTarget>
  23. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  24. <DebugType>portable</DebugType>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <PackageReference Include="HarmonyX" Version="2.1.1" />
  28. <PackageReference Include="Mono.Cecil" Version="0.10.4" />
  29. <PackageReference Include="MonoMod.Utils" Version="20.11.5.1" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Compile Remove="Contract\IPlugin.cs" />
  33. </ItemGroup>
  34. <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
  35. </Project>