Home > Software engineering >  What does the little lock beside NetStandard.library (2.0.3) mean?
What does the little lock beside NetStandard.library (2.0.3) mean?

Time:04-07

I have a .net standard 2.0 project and I just noticed a lock icon. What does it mean?

lock icon

and this

right click

[Update]

I noticed the lock on a 4.7.2 test project. When I upgraded to 4.8 the lock went away

CodePudding user response:

The little lock beside NetStandard.Library(2.0.3) means this package is impliclity defined from your TargetFramework.

If you want to change the setting of NetStandard.library, you can refer to this page.

  • Related