From cb7e840bc103fb894779d2a2ba51a48218b04030 Mon Sep 17 00:00:00 2001 From: thatcosmonaut Date: Mon, 16 Dec 2019 10:30:59 -0800 Subject: [PATCH] retarget to .net standard 2.0 --- Structs/Position2D.cs | 4 ++-- Structs/Structs.csproj | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Structs/Position2D.cs b/Structs/Position2D.cs index 4d0725a..85f4207 100644 --- a/Structs/Position2D.cs +++ b/Structs/Position2D.cs @@ -3,7 +3,7 @@ using System.Numerics; namespace MoonTools.Core.Structs { - public struct Position2D : System.IEquatable + public struct Position2D : IEquatable { private Vector2 remainder; @@ -179,4 +179,4 @@ namespace MoonTools.Core.Structs return !(a == b); } } -} \ No newline at end of file +} diff --git a/Structs/Structs.csproj b/Structs/Structs.csproj index 2ebce4b..6c1cc90 100644 --- a/Structs/Structs.csproj +++ b/Structs/Structs.csproj @@ -1,6 +1,6 @@ - netstandard2.1 + netstandard2.0 MoonTools.Core.Structs MoonTools.Core.Structs 2.0.0 @@ -14,4 +14,7 @@ https://github.com/MoonsideGames/MoonTools.Core.Structs LGPL-3.0-only + + + \ No newline at end of file