1
0
mirror of synced 2024-11-23 22:10:57 +01:00

Merge pull request #12 from timedroid/main

Fix compatibility with BepInEx 6.0-be IL2CPP
This commit is contained in:
Repflez 2022-12-31 23:51:12 -06:00 committed by GitHub
commit 229a22968e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>TaikoModStuff</AssemblyName>
<Description>My first plugin</Description>
<Version>1.3.1</Version>
@ -15,8 +15,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.IL2CPP" Version="6.0.0-*" IncludeAssets="compile" />
<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" />
</ItemGroup>