BepInEx.Core.csproj 2.0 KB

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