mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-09 23:45:42 +00:00
fix(test): import X10D.Core for NextSingle to work on < net6.0
This commit is contained in:
parent
87b6dbdd56
commit
23282db3a9
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user