1

I am using msdeploy.exe for deploying my project to remote iis site using below command

msdeploy.exe -source:iisApp="D:\publish" -dest:iisApp="test-site",ComputerName="https://url:8172/msdeploy.axd?site=test-site",UserName="u",Password="p",IncludeAcls='False',AuthType='Basic' -verb:sync -enablerule:AppOffline -enableRule:DoNotDeleteRule -retryAttempts:20 -allowUntrusted='True'

But it is always uploading each an every file during deployment.

Is there any way so that i can upload only changed files using msdeploy.exe?

Rushi Soni
  • 1,088
  • 1
  • 13
  • 21

1 Answers1

2

Solved using -useChecksum paremeter

Rushi Soni
  • 1,088
  • 1
  • 13
  • 21