.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

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -