MSdeploy 跳过特定文件类型
MSdeploy skip particular file type
我在部署 Web 应用程序时试图跳过子文件夹和某些文件类型。我尝试了以下
Test.deploy.cmd /T /M:test.noreply.com /
P:a /G:False "-skip:Directory="Config\Testdata\Resx" -skip:filePath,absolutePath="Config\Testdata\*.xml""
由于某种原因上述方法不起作用,我是否遗漏了什么?
我认为以下对我有用
-skip:file="Config\Testdata\.*\.xml"
我在部署 Web 应用程序时试图跳过子文件夹和某些文件类型。我尝试了以下
Test.deploy.cmd /T /M:test.noreply.com /
P:a /G:False "-skip:Directory="Config\Testdata\Resx" -skip:filePath,absolutePath="Config\Testdata\*.xml""
由于某种原因上述方法不起作用,我是否遗漏了什么?
我认为以下对我有用
-skip:file="Config\Testdata\.*\.xml"