У меня есть приложение .NET Core, и я размещаю его в службе приложений Azure.Я включил git deploy (Kudu) и могу публиковать из Visual Studio.
Публикация vs выполняется нормально, она развертывает новую версию менее чем за минуту.
Однако функция git deploy останавливается начасть установки npm без каких-либо сообщений об ошибках (только предупреждение).Как я могу найти проблему?Журнал от публикации Kudu останавливается здесь:
Restore completed in 1.27 min for /home/site/repository/*****.csproj.
Microsoft (R) Build Engine version 15.7.179.6572 for .NET Core
Copyright (C) Microsoft Corporation. All rights reserved.
Restore completed in 189.31 ms for /home/site/repository/*****.csproj.
Controllers/FrameController.cs(1012,30): warning CS0168: The variable 'ex' is declared but never used [/home/site/repository/*****.csproj]
Controllers/FrameController.cs(1142,30): warning CS0168: The variable 'ex' is declared but never used [/home/site/repository/*****.csproj]
***** -> /home/site/repository/bin/Release/netcoreapp2.1/*****.dll
npm WARN deprecated circular-json@0.5.9: CircularJSON is in maintenance only, flatted is its successor.
npm WARN deprecated nodemailer@2.7.2: All versions below 4.0.1 of Nodemailer are deprecated. See https://nodemailer.com/status/
npm WARN deprecated node-uuid@1.4.8: Use uuid module instead
npm WARN deprecated hoek@2.16.3: This version is no longer maintained. Please upgrade to the latest version.
npm WARN deprecated cryptiles@2.0.5: This version is no longer maintained. Please upgrade to the latest version.
npm WARN deprecated boom@2.10.1: This version is no longer maintained. Please upgrade to the latest version.
npm WARN deprecated socks@1.1.9: If using 2.x branch, please upgrade to at least 2.1.6 to avoid a serious bug with socket data flow and an import issue introduced in 2.1.0
npm WARN deprecated mailcomposer@4.0.1: This project is unmaintained
npm WARN deprecated buildmail@4.0.1: This project is unmaintained
npm WARN deprecated uws@9.14.0: stop using this version
Конечно, я мог бы начать с того, что потратил время на то, что это такое и что использует.Но все это прекрасно работает в моей локальной конфигурации, Azure с веб-развертыванием и другим сервером с простым копированием.