Question Deploy 4 projects into one solution

Angelo77

New member
Joined
Oct 11, 2016
Messages
1
Programming Experience
1-3
Hi guys!<br>
I have a solution built from 4 projects (c#/wpf).<br>
I wanna to made just one installer for all 4 projects .<br>
I tried using ClickOnce but it works just with every single project per time<br>
Anyone can help me?Thanks!
 

Attachments

  • Cattura.PNG
    Cattura.PNG
    20.6 KB · Views: 88

jmcilhinney

C# Forum Moderator
Staff member
Joined
Apr 23, 2011
Messages
4,917
Location
Sydney, Australia
Programming Experience
10+
It appears that the second project is a WPF application and the fourth is a WPF control library. That would suggest that the second project should reference the fourth and any installer for the EXE built from the second will include the DLL built from the fourth. ClickOnce will do that. If the first and third projects generate libraries and are referenced by the second project then those DLLs will be included in the installer too. Do those other two projects generate libraries and, if so, are they referenced by the second project? If they do not generate libraries then you'll need a different deployment tool, e.g. a VS Setup project, which can select outputs from multiple projects separately.
 
Top Bottom