ASP.NET: Performing MSBuild Tasks After Publishing

I have an ASP.NET project. There is an option "Publish ..." in the project context menu (Visual Studio 2008).

Can I add some custom MSBuild tasks that will be executed every time after publication?

If not, what is the best way to write an MSBuild script that will publish the project (same as the "Publish ..." option) and then complete my custom tasks?

+4
source share
1 answer

This solution answers the second question: http://codingcockerel.co.uk/?p=15 . You can easily add custom tasks to the publishing goal.

-one
source

All Articles