Reference with a yellow triangle, what does it mean?

1

When you have an exclamation mark, I understand that the reference is in trouble and needs to be removed / reinstalled. But with this little triangle, I do not know. I saw that the package is installed. If so, what should I do? See the screenshot of my project reference.

    
asked by anonymous 15.09.2017 / 11:57

1 answer

5

It depends. If you open your Lista de Erros window you should have a warning that explains why these references are in Yellow. But it could be due to one of the following reasons:

  • The package may have compatibility issues with the application platform. (For example, this warnings are common if you refer to packages in the .NET framework.)
  • The package is not compatible (or may have compatibility problems) with the version of the .net framework that you are using. Example you were using a package from version 4.6. * And changed the version of your project to 4.5
  • The package is correctly referenced but MSBuild could not find it in the indicated location (remove the reference and reinstall the package can help)
15.09.2017 / 12:40