I have a solution with several projects. One of them is the installation project. If you deploy the installation project in Solution Explorer, you will see node dependencies detected. If you right-click on it, you will get the Refresh Dependencies menu item. This updates any dependencies based on the files included in the configuration.
I ask if I can perform this action outside of Visual Studio using either devenv.com or MSBuild.
I want this because I use CruiseControl.NET for continuous integration, and in some solutions I found that some dependencies are missing from the installation output due to the way I automatically create projects.
Update:
It turned out that my setup is not very friendly with how installation projects work in Visual Studio. I ended up using Post Build events to create an entire application structure, ready to just copy to a computer and work out of the box. I no longer use installation projects in Visual Studio, unless I need it.
source
share