Добавление набора настроек в корневой файл web.config в решении helix - PullRequest
0 голосов
/ 05 октября 2018

Мы пытаемся выяснить, как добавить набор приложений в корневые веб-сайты web.config из проекта функций спирали.Насколько я понимаю, если вы добавите файл преобразования, например (web.config.transform), в корень вашего функционального проекта и создадите проект, используя сценарий helix gulp, преобразование должно обновить корневую конфигурацию.Это правильно?К сожалению, когда мы запускаем скрипт gulp, мы получаем ошибку

    [11:26:54] Starting '04-Apply-Xml-Transform'...
[11:26:55] Applying configuration transform: D:\Projects\xxxxxxx\src\Feature\Claims\code\xxxxx.Website.Feature.Claim\App_Config\Include\Web.config.transform
D:\Projects\xxxxxxx\scripts\applytransform.targets(14,5): error : Could not open Source file: Could not find a part of the path 'C:\inetpub\wwwroot\xxxxxxxxx\website\xxxxxxx.Website.Feature.Claim\App_Config\Include\Web.config'.
Process terminated with code 1.
[11:26:56] MSBuild failed with code 1!
[11:26:56] '04-Apply-Xml-Transform' errored after 1.59 s
error!
[11:26:56] Error: MSBuild failed with code 1!
    at ChildProcess.<anonymous> (D:\Projects\xxxxxxxxxxxx\node_modules\gulp-msbuild\lib\msbuild-runner.js:66:25)
    at emitTwo (events.js:87:13)
    at ChildProcess.emit (events.js:172:7)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)

Мне кажется, что он пытается обновить локальный файл web.config.

1 Ответ

0 голосов
/ 05 октября 2018

Ваш web.config не будет находиться здесь C:\inetpub\wwwroot\xxxxxxxxx\website\xxxxxxx.Website.Feature.Claim\App_Config\Include\Web.config

Он будет находиться здесь: C:\inetpub\wwwroot\xxxxxxxxx\website\Web.config

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...