GetPathsOfAllDirectoriesAbove() cannot be evaluated after updating .Net Framework version (4.6.2 to 4.7.2)(更新 .Net Framework 版本(4.6.2 到 4.7.2)后无法评估 GetPathsOfAllDirectoriesAbove())
问题描述
我一直在从事的一个项目已从 .NET Framework 4.6.2 升级到 4.7.2.在构建时,在不是我的代码的文件中,我收到以下错误:
A project I have been working on was upgraded from .NET Framework 4.6.2 to 4.7.2. On build, in a file that is not my code, I get the following error:
我在项目属性的构建选项卡中也看到了同样的错误.
I also see the same error in the build tab of my project properties.
我不知所措-我已经搜索了错误,但结果是空的.有没有人遇到过和/或解决过这个问题?
I'm at a loss- I've searched for the error and am coming up empty. Has anyone encountered and/or resolved this before?
推荐答案
升级后您的构建工具似乎从 MSBUILD 更改为 Roslyn.Microsoft.Managed.Core.targets 是 Roslyn 目标文件.
Looks like after upgrading your build tool is changed from MSBUILD to Roslyn. Microsoft.Managed.Core.targets is Roslyn target file.
如果您安装了以下 Nuget 包:
if you have following Nuget packages installed:
Microsoft.CodeDom.Providers.DotNetCompilerPlatform
Microsoft.CodeDom.Providers.DotNetCompilerPlatform
Microsoft.Net.Compilers
Microsoft.Net.Compilers
那么可能是导致问题的原因.将 Microsoft.CodeDom.Providers.DotNetCompilerPlatform
升级到 2.x 并删除第二个.那应该可以解决问题.
Then possibly it's causing the issue. Upgrade the Microsoft.CodeDom.Providers.DotNetCompilerPlatform
to 2.x and remove the second one. That should fix the issue.
这篇关于更新 .Net Framework 版本(4.6.2 到 4.7.2)后无法评估 GetPathsOfAllDirectoriesAbove()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:更新 .Net Framework 版本(4.6.2 到 4.7.2)后无法评估


- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- C# 中多线程网络服务器的模式 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01