在我的本地计算机上构建并运行良好。
我的解决方案中有两个项目,
TicketsApp
和包含 SSRS 的报告项目:
错误 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这样的文件我不知道要安装什么包或什么!
尝试找到您的 .csproj 文件并添加
<GenerateManifests>true</GenerateManifests>
,如下所示。
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
</PropertyGroup>