我正在努力使用azure应用服务。一切似乎都能正常运行,但是我无法通过部署中心构建项目。看来很多项目都无法解决。
我甚至尝试将变量"PROJECT"添加到应用设置.deployment中。但这没有帮助。
我准备了两个食谱来复制它。
这行不通
mkdir AzureProject && cd AzureProject &&
dotnet new sln --name AzureProject &&
dotnet new webapi --name WebApi &&
dotnet sln AzureProject.sln add WebApi/WebApi.csproj &&
git init &&
git add . &&
git commit -v &&
git remote add azure {azure_git_repo} &&
git push azure master
这将会
dotnet new webapi --name WebApi &&
cd WebApi git init &&
git add . &&
git commit -v &&
git remote add azure {azure_git_repo} &&
git push azure master
这是失败的结果:
TIME ACTIVITY LOG
11:08:26 AM Updating branch 'master'.
11:08:27 AM Updating submodules.
11:08:28 AM Preparing deployment for commit id '82434122e8'.
Show Logs...
11:08:28 AM App container will begin restart within 10 seconds.
Object reference not set to an instance of an object.
它在运行dotnet构建后在本地运行。
编辑:我试图通过Visual Studio 2019生成解决方案+项目,并且只添加远程+推送但结果相同。