BepInEx.Core.csproj 1.7 KB

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