.net核心项目依赖项-黄色三角形

时间:2019-01-14 16:56:20

标签: visual-studio .net-core msbuild visual-studio-2017 dependencies

我的.Net Core项目在依赖项上有一个黄色三角形,但是当我打开它时,所有子项都没有一个黄色三角形。当我将鼠标悬停在依赖项上时,看不到任何提示提示我出了什么问题。如何检查导致黄色三角形出现的原因?

我按照@oandreeeee的建议进行操作,并增加了构建的日志级别,我注意到了这一点:

C:\Program Files\dotnet\sdk\2.2.104\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.ConflictResolution.targets(41,5): message NETSDK1041: Encountered conflict between
'Reference:C:\Users\dev\.nuget\packages\netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.Composition.dll' and 
'Reference:C:\Users\dev\.nuget\packages\system.componentmodel.composition\4.5.0\ref\netstandard2.0\System.ComponentModel.Composition.dll'.  NETSDK1034: Choosing 
'Reference:C:\Users\dev\.nuget\packages\system.componentmodel.composition\4.5.0\ref\netstandard2.0\System.ComponentModel.Composition.dll' because file version '4.6.26515.6' is greater than '4.6.26419.2'.

这是我的.csproj文件:

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
    <TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
    <WarningsAsErrors />
</PropertyGroup>

<ItemGroup>
    <PackageReference Include="Microsoft.Windows.Compatibility" Version="2.0.1" />
    <PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
    <PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.9.0" />
</ItemGroup>

</Project>

System.ComponentModel.Composition.dll的引用来自哪里?

enter image description here

2 个答案:

答案 0 :(得分:0)

有时我会无缘无故得到一个黄色三角形。展开NuGet / Projects / SDK元素,然后尝试查找是否存在带有另一个三角形和错误消息的元素。您也可以检查构建输出中的警告。无论哪种情况,都可能没有,只是显示故障。

答案 1 :(得分:0)

您可以做两件简单的事情来帮助您。

一种简单的方法是在Visual Studio中检查您的错误列表窗口(不要忘记启用警告消息的可见性)。

Link for official documentation

就像Richard Fuller所说的那样,您可以以更复杂的方式检查 Build 输出窗口。 为此,您还可以更改内部版本的日志级别,以获取更多详细信息。

查看有关日志级别HERE的更多信息