Remove EnableWindowsTargeting from build.sh's run step (#1633)

This removes the property that shouldn't be there, because it was
considered a target.
This commit is contained in:
Joshua Goins 2024-02-07 18:37:55 +00:00 committed by GitHub
parent 1d32e8fe45
commit 7112651b77
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

2
build.sh Normal file → Executable file
View file

@ -59,4 +59,4 @@ fi
echo "Microsoft (R) .NET Core SDK version $("$DOTNET_EXE" --version)"
"$DOTNET_EXE" build "$BUILD_PROJECT_FILE" /nodeReuse:false /p:UseSharedCompilation=false /p:EnableWindowsTargeting=true -nologo -clp:NoSummary --verbosity quiet
"$DOTNET_EXE" run --project "$BUILD_PROJECT_FILE" --no-build -- /p:EnableWindowsTargeting=true "$@"
"$DOTNET_EXE" run --project "$BUILD_PROJECT_FILE" --no-build -- "$@"