diff --git a/dot-net-core/Code/Code.csproj b/dot-net-core/Code/Code.csproj
index 71fb1ae..e35d2e3 100644
--- a/dot-net-core/Code/Code.csproj
+++ b/dot-net-core/Code/Code.csproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp10.0
+ net10.0
diff --git a/dot-net-core/Code/PairingTest.cs b/dot-net-core/Code/PairingTest.cs
index 78855bb..58d8a85 100644
--- a/dot-net-core/Code/PairingTest.cs
+++ b/dot-net-core/Code/PairingTest.cs
@@ -5,7 +5,7 @@ namespace Code
public class PairingTest
{
public static bool TestFunction() {
- return false;
+ return true;
}
static void Main(string[] args)
diff --git a/dot-net-core/Test/Test.csproj b/dot-net-core/Test/Test.csproj
index ef96f3b..6c8a10c 100644
--- a/dot-net-core/Test/Test.csproj
+++ b/dot-net-core/Test/Test.csproj
@@ -1,7 +1,7 @@
- netcoreapp10.0
+ net10.0
false
diff --git a/dot-net-core/Test/Tests.cs b/dot-net-core/Test/Tests.cs
index b4c435f..e02207d 100644
--- a/dot-net-core/Test/Tests.cs
+++ b/dot-net-core/Test/Tests.cs
@@ -13,7 +13,7 @@ public void Setup()
[Test]
public void ExampleTest()
{
- Assert.IsTrue(Code.PairingTest.TestFunction());
+ Assert.That(Code.PairingTest.TestFunction(), Is.True);
}
}
}
\ No newline at end of file