1
0
mirror of synced 2024-11-24 06:20:11 +01:00

Fix compatability with BepInEx BE

BepInEx.IL2CPP->BepInEx.Unity.IL2CPP
Requires switch to .NET 6 target
This commit is contained in:
Matt 2022-12-03 01:37:13 -05:00
parent b8eff092b1
commit 873bff34b8
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
using BepInEx; using BepInEx;
#if !BEPIN_5 #if !BEPIN_5
using BepInEx.IL2CPP; using BepInEx.Unity.IL2CPP;
#endif #endif
using BepInEx.Configuration; using BepInEx.Configuration;
using HarmonyLib; using HarmonyLib;

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework> <TargetFramework>net6.0</TargetFramework>
<AssemblyName>TaikoModStuff</AssemblyName> <AssemblyName>TaikoModStuff</AssemblyName>
<Description>My first plugin</Description> <Description>My first plugin</Description>
<Version>1.3.1</Version> <Version>1.3.1</Version>
@ -15,8 +15,8 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="BepInEx.IL2CPP" Version="6.0.0-*" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.*" /> <PackageReference Include="BepInEx.PluginInfoProps" Version="1.*" />
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.663" />
<PackageReference Include="UnityEngine.Modules" Version="2020.3.19" IncludeAssets="compile" /> <PackageReference Include="UnityEngine.Modules" Version="2020.3.19" IncludeAssets="compile" />
</ItemGroup> </ItemGroup>