BepInEx.Core.csproj 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <Description>Unity plugin injection framework</Description>
  8. <Copyright>Copyright © Bepis 2018</Copyright>
  9. <AssemblyVersion>6.0.0.0</AssemblyVersion>
  10. <FileVersion>6.0.0.0</FileVersion>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  13. <DebugType>none</DebugType>
  14. <OutputPath>..\bin\</OutputPath>
  15. <DocumentationFile>..\bin\BepInEx.Core.xml</DocumentationFile>
  16. </PropertyGroup>
  17. <PropertyGroup>
  18. <StartupObject />
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  21. <OutputPath>bin\$(Configuration)\</OutputPath>
  22. <DocumentationFile />
  23. <PlatformTarget>x86</PlatformTarget>
  24. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  25. <DebugType>full</DebugType>
  26. </PropertyGroup>
  27. <ItemGroup>
  28. <Reference Include="0Harmony, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL">
  29. <HintPath>C:\Users\Richard\.nuget\packages\harmonyx\2.1.0-beta.8\lib\net35\0Harmony.dll</HintPath>
  30. <SpecificVersion>False</SpecificVersion>
  31. </Reference>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <PackageReference Include="HarmonyX" Version="2.1.1" />
  35. <PackageReference Include="Mono.Cecil" Version="0.10.4" />
  36. <PackageReference Include="MonoMod.Utils" Version="20.11.5.1" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Remove="Contract\IPlugin.cs" />
  40. </ItemGroup>
  41. </Project>