diff --git a/Demos.DesktopGL/Demos.DesktopGL.csproj b/Demos.DesktopGL/Demos.DesktopGL.csproj index beaae83..7bd84c7 100644 --- a/Demos.DesktopGL/Demos.DesktopGL.csproj +++ b/Demos.DesktopGL/Demos.DesktopGL.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1 + net5.0 Icon.ico MLEM Desktop Demos diff --git a/MLEM/Font/GenericFont.cs b/MLEM/Font/GenericFont.cs index 42a3ce9..14fe4e7 100644 --- a/MLEM/Font/GenericFont.cs +++ b/MLEM/Font/GenericFont.cs @@ -1,4 +1,3 @@ -using System; using System.Text; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; diff --git a/MLEM/Formatting/TokenizedString.cs b/MLEM/Formatting/TokenizedString.cs index 4d76a1d..473b194 100644 --- a/MLEM/Formatting/TokenizedString.cs +++ b/MLEM/Formatting/TokenizedString.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Sandbox/GameImpl.cs b/Sandbox/GameImpl.cs index 589dfa6..aa98ed3 100644 --- a/Sandbox/GameImpl.cs +++ b/Sandbox/GameImpl.cs @@ -11,7 +11,6 @@ using MLEM.Data.Content; using MLEM.Extended.Font; using MLEM.Extended.Tiled; using MLEM.Extensions; -using MLEM.Font; using MLEM.Formatting; using MLEM.Formatting.Codes; using MLEM.Input; diff --git a/Sandbox/Sandbox.csproj b/Sandbox/Sandbox.csproj index 35e6485..4d621dc 100644 --- a/Sandbox/Sandbox.csproj +++ b/Sandbox/Sandbox.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1 + net5.0 diff --git a/Tests/DataTextureAtlasTests.cs b/Tests/DataTextureAtlasTests.cs index 3274793..5dc6232 100644 --- a/Tests/DataTextureAtlasTests.cs +++ b/Tests/DataTextureAtlasTests.cs @@ -2,7 +2,6 @@ using System.Linq; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using MLEM.Data; -using MLEM.Data.Content; using MLEM.Textures; using NUnit.Framework; diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj index eaed4bf..eeac4a3 100644 --- a/Tests/Tests.csproj +++ b/Tests/Tests.csproj @@ -1,6 +1,6 @@ - netcoreapp3.1 + net5.0 nunit diff --git a/Tests/TexturePackerTests.cs b/Tests/TexturePackerTests.cs index 90cf5cb..a6ea05a 100644 --- a/Tests/TexturePackerTests.cs +++ b/Tests/TexturePackerTests.cs @@ -1,8 +1,6 @@ using System; -using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using MLEM.Data; -using MLEM.Extensions; using MLEM.Textures; using NUnit.Framework;