I am investigating if somebody already created a solution to build NSIS installers using the TrackedVCToolTask MSBuild task. Currently our build system is using the Exec task, but this not always rebuilds or rebuilds too often when the dependencies of the installer script are updated. I could write such a MSBuild Task myself, but don't want to re-invent the wheel.
Note: I have seen other solutions based on new project types, but I am looking for a .target file that can be included in the .vcxproj file.
Does anybody known if such a solution has already been created and is freely available?
MSBuild Task based on TrackedVCToolTask to build NSIS installer
2 posts
The closest solution for you is to use Visual & Installer for NSIS, which uses MSBuild (you do not need to use the visual Studio IDE to edit the scripts, only the MSBuild subsystem of it).Originally Posted by vbaderks View PostI am investigating if somebody already created a solution to build NSIS installers using the TrackedVCToolTask MSBuild task. Currently our build system is using the Exec task, but this not always rebuilds or rebuilds too often when the dependencies of the installer script are updated. I could write such a MSBuild Task myself, but don't want to re-invent the wheel.
Note: I have seen other solutions based on new project types, but I am looking for a .target file that can be included in the .vcxproj file.
Does anybody known if such a solution has already been created and is freely available?
See the details here: http://visual-installer.com/, but this solution requires small fee.