up vote 12 down vote favorite
3
share [g+] share [fb]

I'm not talking about a post build event for a project. Rather, I want to run an executable automatically after the entire solution is built. Is there a way to do a post build event for the solution?

link|improve this question

feedback

2 Answers

up vote 16 down vote accepted

Yes, you can do this in the Macro Editor by handling OnBuildDone. The event gives you a couple of handy properties you can check: scope (project/solution/batch) and action (build/rebuild/clean/deploy). To do what you want would be something like this (not tested, mind):

Public Sub AfterBuild(ByVal scope As vsBuildScope, ByVal action As vsBuildAction) Handles BuildEvents.OnBuildDone
    If scope = vsBuildScope.vsBuildScopeSolution Then
        System.Diagnostics.Process.Start("some file I want to run")
    End If
End Sub
link|improve this answer
That's awesome! Exactly what i wanted. If I could up vote you more, I certainly would! – Kilhoffer Oct 7 '08 at 14:34
So this will need to be added to every machine that does builds or is it saved with the Solution file? – Muhimbi Dec 8 '10 at 16:54
1  
Macros are machine-specific, so you'd need to put it on every machine. Another option is to put a post-build event on the last project in the build sequence. A post-build event (in project properties) will be saved in source control with the project. – Kyralessa Dec 8 '10 at 18:46
feedback

not directly.
you can make a project which has a dependency in all other projects and add a post build step to it. Effectively this will cause it to run after everything else.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.