使用 github 存储库将 ASP.NET Core 8 MVC Web 应用程序部署到 Azure 时,出现构建错误

问题描述 投票:0回答:1

在我的本地计算机上构建并运行良好。

我的解决方案中有两个项目,

TicketsApp
和包含 SSRS 的报告项目:

Getting this build error

错误 MSB4019:找不到导入的项目“C:\Program Files\dotnet\sdk\8.0.303\Reporting Services\Microsoft.ReportingServices.MSBuilder.targets”。确认导入声明“C:\Program Files\dotnet\sdk\8.0.303\Reporting Services\Microsoft.ReportingServices.MSBuilder.targets”中的表达式正确,并且该文件存在于磁盘上。

尝试重新部署并运行

dotnet clean
并重建没有任何效果,并且.NET目录中没有像Reporting Services这样的文件我不知道要安装什么包或什么!

visual-studio asp.net-core azure-web-app-service github-actions .net-8.0
1个回答
0
投票

尝试找到您的 .csproj 文件并添加

<GenerateManifests>true</GenerateManifests>
,如下所示。

<PropertyGroup> 
    <GenerateManifests>true</GenerateManifests> 
</PropertyGroup>
© www.soinside.com 2019 - 2024. All rights reserved.