5

I would like to set visual studio to use Psake build by default when building. Is this possible slash more effort than its worth?

George Mauer
  • 117,483
  • 131
  • 382
  • 612
  • 1
    @R0MANARMY use psake to trigger msbuild rather than have VS trigger it directly. That way I could code post and pre-build events in powershell rather than the csproj file craziness. – George Mauer Oct 16 '12 at 17:44
  • Could you just add a call to a pre-build PSake script and a post-build PSake script into your project file and work from there? – Roman Oct 16 '12 at 17:50
  • @R0MANARMY - of course, but then I would be using a completely separate build chain in visual studio than outside of it. – George Mauer Oct 16 '12 at 17:52

1 Answers1

4

Possible yes, and certainly worth the effort if you value consistency in the build, which it sounds like you do.

StudioShell is the main player, and here's a tidy blog post on the matter.

Greg Smith
  • 2,449
  • 2
  • 24
  • 37