仅限MsDeploy Skip Root Web Config部署

时间:2016-03-10 14:53:38

标签: batch-file iis iis-8 msdeploy

我正在使用Ms-deploy进行Web部署。

我正在使用的命令

"use strict";

import { config } from "../config";

let Something;
if (config.useFakeSomething) {
    Something = require("./FakeSomething").FakeSomething;
} else {
    Something = require("./RealSomething").RealSomething;
}
...
let s = new Something();
s.DoStuff();
...

它不仅可以跳过根文件夹的Web配置,还可以跳过View文件夹web.config。

我如何克服这个问题。 我不想使用Web配置的完整路径。

enter image description here 提前谢谢。

1 个答案:

答案 0 :(得分:1)

你可以尝试一种负面的后瞻性断言:

absolutePath="(?<!Views)\\Web\.config"