views:

254

answers:

3

One of the things I like about the Java IDEs out there is that they typically have the ability to allow a user to right-click on an Ant file and run one of the targets.

I've got an msbuild file in my solution that is used for migrating the application database, and would kill to be able to right-click on it, select "update" or "rollback" and have it run.

My searching has not turned up anything meant to run inside VS2008, just a shell extension for windows explorer.

Has anybody seen such an animal out there?

Cordially,

Jon

A: 

Hi, As far as I know no such addin exists.

But there is the MSBuild Sidekick which is a stand alone app.

Sayed Ibrahim Hashimi
A: 

I've develpped this addin:

http://www.netlogics.ch/devcenter/addins.msbuild.html

eharth
A: 

Maybe batch file with msbuild.exe command line will be helpful. Easy to write, easy to debug, runs instantaneously;)

Leszek Wachowicz