I would like explorer opened up on a certain folder, after the deployment has happened, and I'm using the following to attemp it:
<Target Name="AfterBuild">
<Exec Command="..."></Exec>
</Target>
However, a simple "explorer \somewhere" causes the build process to block on explorer, and it wont finish until you close explorer. Prefixing it with start explorer \\somewhere
doesn't change that either.
Is there a simple way to do this? Thing is that we only deploy to a intermediate stage, and want the last step done manually, and opening an explorer on the relevant folder is a nicety. The Exec command actually calls a BAT file if that matters, using VS.NET 2008, on Server 2008 Standard.