diff --git a/Assets/Assets.csproj b/Assets/Assets.csproj index 65d364d..28c9f7a 100644 --- a/Assets/Assets.csproj +++ b/Assets/Assets.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable enable ModAssets diff --git a/ClientProject/LinuxClient.csproj b/ClientProject/LinuxClient.csproj index a2d7ca3..af4332a 100644 --- a/ClientProject/LinuxClient.csproj +++ b/ClientProject/LinuxClient.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable enable @@ -28,8 +28,8 @@ ..\Refs\MonoGame.Framework.Linux.NetStandard.dll - - ..\Refs\MonoMod.Common.dll + + ..\Refs\MonoMod.Utils.dll ..\Refs\MoonSharp.Interpreter.dll diff --git a/ClientProject/OSXClient.csproj b/ClientProject/OSXClient.csproj index e35fc9d..923df64 100644 --- a/ClientProject/OSXClient.csproj +++ b/ClientProject/OSXClient.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable enable @@ -28,8 +28,8 @@ ..\Refs\MonoGame.Framework.MacOS.NetStandard.dll - - ..\Refs\MonoMod.Common.dll + + ..\Refs\MonoMod.Utils.dll ..\Refs\MoonSharp.Interpreter.dll diff --git a/ClientProject/WindowsClient.csproj b/ClientProject/WindowsClient.csproj index cc84b40..a69d578 100644 --- a/ClientProject/WindowsClient.csproj +++ b/ClientProject/WindowsClient.csproj @@ -1,7 +1,7 @@  - net6.0 + net8.0 enable enable x64 @@ -46,8 +46,8 @@ ..\Refs\MonoGame.Framework.Windows.NetStandard.dll - - ..\Refs\MonoMod.Common.dll + + ..\Refs\MonoMod.Utils.dll ..\Refs\MoonSharp.Interpreter.dll diff --git a/README.md b/README.md index 524b42a..9c487b7 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ folder under the subfolder "Publicized". Just copy the ones listed below into "/ ./MonoGame.Framework.Linux.NetStandard.dll ./MonoGame.Framework.MacOS.NetStandard.dll ./MonoGame.Framework.Windows.NetStandard.dll -./MonoMod.Common.dll +./MonoMod.Utils.dll ./MoonSharp.Interpreter.dll ./XNATypes.dll ``` diff --git a/Refs/README.txt b/Refs/README.txt index 6b80e8f..805d136 100644 --- a/Refs/README.txt +++ b/Refs/README.txt @@ -14,6 +14,6 @@ ./MonoGame.Framework.Linux.NetStandard.dll ./MonoGame.Framework.MacOS.NetStandard.dll ./MonoGame.Framework.Windows.NetStandard.dll -./MonoMod.Common.dll +./MonoMod.Utils.dll ./MoonSharp.Interpreter.dll ./XNATypes.dll \ No newline at end of file diff --git a/ServerProject/LinuxServer.csproj b/ServerProject/LinuxServer.csproj index 6d43ad0..7b10202 100644 --- a/ServerProject/LinuxServer.csproj +++ b/ServerProject/LinuxServer.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable enable @@ -28,8 +28,8 @@ ..\Refs\MonoGame.Framework.Linux.NetStandard.dll - - ..\Refs\MonoMod.Common.dll + + ..\Refs\MonoMod.Utils.dll ..\Refs\MoonSharp.Interpreter.dll diff --git a/ServerProject/OSXServer.csproj b/ServerProject/OSXServer.csproj index 446be8a..399aa2b 100644 --- a/ServerProject/OSXServer.csproj +++ b/ServerProject/OSXServer.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable enable @@ -28,8 +28,8 @@ ..\Refs\MonoGame.Framework.MacOS.NetStandard.dll - - ..\Refs\MonoMod.Common.dll + + ..\Refs\MonoMod.Utils.dll ..\Refs\MoonSharp.Interpreter.dll diff --git a/ServerProject/WindowsServer.csproj b/ServerProject/WindowsServer.csproj index 876585d..9d510a2 100644 --- a/ServerProject/WindowsServer.csproj +++ b/ServerProject/WindowsServer.csproj @@ -1,7 +1,7 @@  - net6.0 + net8.0 enable enable x64 @@ -43,8 +43,8 @@ ..\Refs\MonoGame.Framework.Windows.NetStandard.dll - - ..\Refs\MonoMod.Common.dll + + ..\Refs\MonoMod.Utils.dll ..\Refs\MoonSharp.Interpreter.dll diff --git a/SharedProject/SharedSource/Plugin.cs b/SharedProject/SharedSource/Plugin.cs index 96a1d20..666cf23 100644 --- a/SharedProject/SharedSource/Plugin.cs +++ b/SharedProject/SharedSource/Plugin.cs @@ -4,6 +4,7 @@ using System.Text; using Barotrauma; +using System.Runtime.CompilerServices; [assembly: IgnoresAccessChecksTo("Barotrauma")] [assembly: IgnoresAccessChecksTo("DedicatedServer")] [assembly: IgnoresAccessChecksTo("BarotraumaCore")]