You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dotnet r build test publish:*----configuration release
It will be expanded to:
dotnet r build --configuration release
dotnet r test --configuration release
dotnet r publish:*--configuration release
This results in the --configuration release portion being treated as two script names due to the missing -- between the script name and parameter list. I don't think this was an issue prior to adding multiple script execution but it definitely is now.
The text was updated successfully, but these errors were encountered:
Given the following:
It will be expanded to:
This results in the
--configuration release
portion being treated as two script names due to the missing--
between the script name and parameter list. I don't think this was an issue prior to adding multiple script execution but it definitely is now.The text was updated successfully, but these errors were encountered: