1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net472</TargetFramework>
- <AssemblyTitle>BepInEx.IL2CPP</AssemblyTitle>
- <Product>BepInEx.IL2CPP</Product>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <OutputPath>..\bin\IL2CPP\</OutputPath>
- <LangVersion>9</LangVersion>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugType>portable</DebugType>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="AssemblyUnhollower">
- <HintPath>..\lib\AssemblyUnhollower.exe</HintPath>
- </Reference>
- <Reference Include="Il2CppDumper">
- <HintPath>..\lib\Il2CppDumper.dll</HintPath>
- </Reference>
- <Reference Include="Il2Cppmscorlib">
- <HintPath>..\lib\Il2Cppmscorlib.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="UnhollowerBaseLib">
- <HintPath>..\lib\UnhollowerBaseLib.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="UnityEngine-IL2CPP">
- <HintPath>..\lib\UnityEngine-IL2CPP.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="UnityEngine.CoreModule-IL2CPP">
- <HintPath>..\lib\UnityEngine.CoreModule-IL2CPP.dll</HintPath>
- <Private>False</Private>
- <Aliases>il2cpp</Aliases>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\BepInEx.Core\BepInEx.Core.csproj" />
- <ProjectReference Include="..\BepInEx.Preloader.Core\BepInEx.Preloader.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="HarmonyX" Version="2.2.0" />
- <PackageReference Include="Iced" Version="1.6.0" />
- <PackageReference Include="MonoMod.RuntimeDetour" Version="20.11.5.1" />
- </ItemGroup>
- <Import Project="..\BepInEx.Shared\BepInEx.Shared.projitems" Label="Shared" />
- </Project>
|