If you have a C# project and want to manage the assembly version info during automation build process such as the msbuild with Jenkins, then two options are available: Specify the version number in AssemblyInfo.cs to with asterisk(*) - n.n.* (for example, '1.0.*') Or you might want to manage it with a build script such … Continue reading [Tip] Python snippet increases the UWP product version
Tag: msbuild
Writing a python build script for your Visual C++ project
If you’ve decided to write your own python build script for existing Visual Studio projects, then two questions would probably come up at first. What utility/commands are available for actually building *.sln/*. vcxproj files? How will you specify the appropriate version for your *.rc version resource file? Solution for #1. You can download the MSBuild … Continue reading Writing a python build script for your Visual C++ project