build order of projects
C#
2
Posts
2
Posters
0
Views
1
Watching
-
how do i specify the build order of the projects in a solution? for example, if i have a deployment project in a solution, how do i make that build last, so the deployment project will include the latest versions of the assemblies?
godzooky wrote: for example, if i have a deployment project in a solution, how do i make that build last, so the deployment project will include the latest versions of the assemblies? The projects are built based on reference dependency. This is why you can't have circular references in your projects. You're deployment project should reference the projects on which it depends, and therefore will be built last. Marc Latest AAL Article My blog Join my forum!