BepInEx.IL2CPP.csproj 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net472</TargetFramework>
  4. <AssemblyTitle>BepInEx.IL2CPP</AssemblyTitle>
  5. <Product>BepInEx.IL2CPP</Product>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. <OutputPath>..\bin\IL2CPP\</OutputPath>
  8. <LangVersion>8</LangVersion>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  12. <DebugType>portable</DebugType>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <Reference Include="AssemblyUnhollower">
  19. <HintPath>..\lib\AssemblyUnhollower.exe</HintPath>
  20. </Reference>
  21. <Reference Include="Il2CppDumper">
  22. <HintPath>..\lib\Il2CppDumper.dll</HintPath>
  23. </Reference>
  24. <Reference Include="Il2Cppmscorlib">
  25. <HintPath>..\lib\Il2Cppmscorlib.dll</HintPath>
  26. <Private>False</Private>
  27. </Reference>
  28. <Reference Include="Microsoft.CSharp" />
  29. <Reference Include="UnhollowerBaseLib">
  30. <HintPath>..\lib\UnhollowerBaseLib.dll</HintPath>
  31. <Private>True</Private>
  32. </Reference>
  33. <Reference Include="UnityEngine-IL2CPP">
  34. <HintPath>..\lib\UnityEngine-IL2CPP.dll</HintPath>
  35. <Private>False</Private>
  36. </Reference>
  37. <Reference Include="UnityEngine.CoreModule-IL2CPP">
  38. <HintPath>..\lib\UnityEngine.CoreModule-IL2CPP.dll</HintPath>
  39. <Private>False</Private>
  40. <Aliases>il2cpp</Aliases>
  41. </Reference>
  42. </ItemGroup>
  43. <ItemGroup>
  44. <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
  45. <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <PackageReference Include="HarmonyX" Version="2.1.1" />
  49. <PackageReference Include="Iced" Version="1.6.0" />
  50. <PackageReference Include="MonoMod.RuntimeDetour" Version="20.11.5.1" />
  51. </ItemGroup>
  52. <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
  53. </Project>