BepInEx.Core.csproj 1.5 KB

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