I want to execute some batch files on the web server (I have control over it's IIS) before and after the deployment operation from my VS2010.
I've added a "runCommand" provider on my server's IIS, and added this code to the .csproj file:
<Target Name="AddingCMDtoManifest">
<Message Text="Adding CMD to Manifest" />
<ItemGroup>
<MsDeploySourceManifest Include="runCommand">
<path>C:\blahblah.bat</path>
</MsDeploySourceManifest>
</ItemGroup>
</Target>
but nothing seems to change, what am I missing?