我正在使用Visual Studio 2019,我的Web API项目在本地构建并运行良好。但是,当尝试在Azure App Service上部署时,它失败并显示以下错误
ts-node
我检查了我的.csporj文件,它已经具有MSBuild 2003格式。
我还安装了最新的nuget软件包D:\home\site\repository\src\packages\Microsoft.Net.Compilers.Toolset.3.6.0\build\Microsoft.Net.Compilers.Toolset.props(2,1): error MSB4041: The default XML namespace of the project must be the MSBuild XML namespace. If the project is authored in the MSBuild 2003 format, please add xmlns="http://schemas.microsoft.com/developer/msbuild/2003" to the <Project> element. If the project has been authored in the old 1.0 or 1.2 format, please convert it to MSBuild 2003 format. [D:\home\site\repository\src\Verify.WebApi\Verify.WebApi.csproj]
,Microsoft.CodeDom.Providers.DotNetCompilerPlatform
和Microsoft.Net.Compilers
。
Azure App Service正在使用MSBuild 14.0来构建我的项目。
有人可以帮助解决此问题吗?