From 34586c7866f11ea1c36288b82d0cef369194ad9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Strandg=C3=A5rd?= Date: Tue, 1 Jul 2025 12:16:00 +0200 Subject: [PATCH] Update nuget packages --- src/ProjectDiff.Core/ProjectDiff.Core.csproj | 2 +- test/ProjectDiff.Tests/ProjectDiff.Tests.csproj | 9 ++++++--- test/ProjectDiff.Tests/VerifyTests.cs | 11 +++++++++++ 3 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 test/ProjectDiff.Tests/VerifyTests.cs diff --git a/src/ProjectDiff.Core/ProjectDiff.Core.csproj b/src/ProjectDiff.Core/ProjectDiff.Core.csproj index 2a3b2b1..f720dba 100644 --- a/src/ProjectDiff.Core/ProjectDiff.Core.csproj +++ b/src/ProjectDiff.Core/ProjectDiff.Core.csproj @@ -19,7 +19,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/test/ProjectDiff.Tests/ProjectDiff.Tests.csproj b/test/ProjectDiff.Tests/ProjectDiff.Tests.csproj index 3558219..23edd2e 100644 --- a/test/ProjectDiff.Tests/ProjectDiff.Tests.csproj +++ b/test/ProjectDiff.Tests/ProjectDiff.Tests.csproj @@ -10,12 +10,15 @@ - + - + - + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/test/ProjectDiff.Tests/VerifyTests.cs b/test/ProjectDiff.Tests/VerifyTests.cs new file mode 100644 index 0000000..feed9a3 --- /dev/null +++ b/test/ProjectDiff.Tests/VerifyTests.cs @@ -0,0 +1,11 @@ +namespace ProjectDiff.Tests; + +public sealed class VerifyTests +{ + [Fact] + public async Task VerifyIsSetupCorrectly() + { + await VerifyChecks.Run(); + } + +} \ No newline at end of file