VS2022 Dependences Nodes

2022/4/1 14:19:41

本文主要是介绍VS2022 Dependences Nodes,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

The dependency node has a few child nodes

  • Analyzers: Those found under Analyzers are code analyzers. If you're using the newer SDK format and .NET 5+ then it ships with analyzers that check your code while you're writing and compiling.
  • Frameworks: The Frameworks node is where frameworks reside and it is exclusively for the IDE to manage. You don't need or do anything under here. It just helps to separate these dependencies, which are controlled by your target framework selection, from those that you can manage.
  • Assemblies: The Assemblies node shows you the binary references you have. The only things you'll generally see here are framework references that you added that are not part of the Framework node and binary references you have added.
  • Packages: If your project uses NuGet for dependencies (most .NET apps do) then they will be found under Packages. While you can manage (to a limited degree) NuGet packages from here you will normally use the NuGet Package Manager for the solution or project. This node just shows you the dependencies you have and their dependencies, if any.
  • Projects: There is also a Projects node when applicable that shows you the dependencies your project has on other projects in the same solution.

References

  • https://docs.microsoft.com/en-us/answers/questions/773307/vs2022-and-dependency-and-all-child-nodes.html


这篇关于VS2022 Dependences Nodes的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程