From f9ca2b4c0f750e88a61448c1eb57009df6d52cab Mon Sep 17 00:00:00 2001 From: elzik <23397871+elzik@users.noreply.github.com> Date: Wed, 11 Dec 2024 22:01:20 +0000 Subject: [PATCH] Improve output for SDK version --- Build/build-and-test.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Build/build-and-test.ps1 b/Build/build-and-test.ps1 index 2860a74..edd6fef 100644 --- a/Build/build-and-test.ps1 +++ b/Build/build-and-test.ps1 @@ -4,7 +4,8 @@ $repoRootPath = (Resolve-Path "$PSScriptRoot/../").Path Import-Module $(Resolve-Path "$repoRootPath/Build/Test-ExitCode.psm1") -dotnet --version +$sdkVersionUsed = (dotnet --version) +Write-Output "SDK Version Used: $sdkVersionUsed" dotnet test $repoRootPath/Elzik.FmSync.sln ` -c Release `