.net - Equivalent of dotnet build --version-suffix when using MSBuild.exe -
with dotnet build tool .net sdk, can pass --version-suffix, example make prerelease packages suffixes such rc1, etc.
i having use msbuild.exe directly in order work around bug targetting net35 , want know equivalent command line argument this.
add versionsuffix property msbuild arguments:
msbuild /p:versionsuffix=rc2 ...
Comments
Post a Comment