BepInEx.Core.csproj 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
  11. <GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
  12. <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
  13. <GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  16. <DebugType>none</DebugType>
  17. <OutputPath>..\bin\</OutputPath>
  18. <DocumentationFile>..\bin\BepInEx.Core.xml</DocumentationFile>
  19. </PropertyGroup>
  20. <PropertyGroup>
  21. <StartupObject />
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  24. <OutputPath>bin\$(Configuration)\</OutputPath>
  25. <DocumentationFile />
  26. <PlatformTarget>x86</PlatformTarget>
  27. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  28. <DebugType>portable</DebugType>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <PackageReference Include="HarmonyX" Version="2.1.1" />
  32. <PackageReference Include="Mono.Cecil" Version="0.10.4" />
  33. <PackageReference Include="MonoMod.Utils" Version="20.11.5.1" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Compile Remove="Contract\IPlugin.cs" />
  37. </ItemGroup>
  38. <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
  39. </Project>