delete unused arg

This commit is contained in:
Hongtao Zhang 2024-03-26 13:37:33 -05:00
parent d562441b92
commit be8612912c

View file

@ -99,7 +99,7 @@ function Publish-Self-Contained($p)
# we call dotnet publish on the main project.
# The other projects should have been built in Release at this point.
dotnet publish -c Release $csproj /p:PublishProfile=$profile
dotnet publish $csproj /p:PublishProfile=$profile
}
function Main