将 Roslyn 与 dotnet core 一起使用时,已存在具有相同键但不同值的元素
An element with the same key but a different value already exists when using Roslyn with dotnet core
我将 Roslyn 解析器项目更新到 dotnet core 3.1,当 Roslyn 尝试使用以下代码打开解析解决方案时:
var properties = new Dictionary<string, string> { ["DesignTimeBuild"] = "true" };
var workspace = MSBuildWorkspace.Create(properties);
Solution solution = workspace.OpenSolutionAsync(Solution).Result;
将导致以下错误:
InnerException = {"An element with the same key but a different value
already exists. Key: DesignTimeBuild"}
它可以在 Roslyn 解析器项目的 .Net 版本中解析相同的解决方案,但 dotnet 核心失败。 Roslyn 不支持 .net Core 吗?我找到了这个线程
https://github.com/dotnet/roslyn/issues/28870
关于 Roslyn 的当前状态或如何解决此错误的任何想法?
我将 Roslyn 解析器项目更新到 dotnet core 3.1,当 Roslyn 尝试使用以下代码打开解析解决方案时:
var properties = new Dictionary<string, string> { ["DesignTimeBuild"] = "true" };
var workspace = MSBuildWorkspace.Create(properties);
Solution solution = workspace.OpenSolutionAsync(Solution).Result;
将导致以下错误:
InnerException = {"An element with the same key but a different value already exists. Key: DesignTimeBuild"}
它可以在 Roslyn 解析器项目的 .Net 版本中解析相同的解决方案,但 dotnet 核心失败。 Roslyn 不支持 .net Core 吗?我找到了这个线程 https://github.com/dotnet/roslyn/issues/28870
关于 Roslyn 的当前状态或如何解决此错误的任何想法?