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?

link|improve this question

50% accept rate
feedback

1 Answer

Maybe you need to execute your target in the right phase. I've done the following thing and it works.

<PropertyGroup >
    <RunCommandPath>DeploySettings\NightlyBuild.RunCommand.cmd</RunCommandPath>
  </PropertyGroup>

  <Target Name="SetupCustomManifestProviders" BeforeTargets="AddContentPathToSourceManifest">
    <ItemGroup>
      <MsDeploySourceManifest Include="runCommand">
        <Path>$(RunCommandPath)</Path>
        <dontUseCommandExe>true</dontUseCommandExe>
        <waitInterval>10000</waitInterval>
        <AdditionalProviderSettings>dontUseCommandExe;waitInterval</AdditionalProviderSettings>
      </MsDeploySourceManifest>
    </ItemGroup>
  </Target>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.