fix(test): import X10D.Core for NextSingle to work on < net6.0

This commit is contained in:
Oliver Booth 2023-04-01 22:00:11 +01:00
parent 87b6dbdd56
commit 23282db3a9
No known key found for this signature in database
GPG Key ID: 20BEB9DC87961025
3 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,8 @@
using System.Drawing;
using Microsoft.VisualStudio.TestTools.UnitTesting;
#if !NET6_0_OR_GREATER
using X10D.Core;
#endif
using X10D.Drawing;
namespace X10D.Tests.Drawing;

View File

@ -1,4 +1,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
#if !NET6_0_OR_GREATER
using X10D.Core;
#endif
using X10D.Math;
namespace X10D.Tests.Math;

View File

@ -1,5 +1,8 @@
using System.Numerics;
using Microsoft.VisualStudio.TestTools.UnitTesting;
#if !NET6_0_OR_GREATER
using X10D.Core;
#endif
using X10D.Drawing;
using X10D.Numerics;