ASP.NET MVC3: What is the packages.config for?

前端 未结 2 610
刺人心
刺人心 2021-02-01 11:34

What is the asp.net MVC packages.config for?

Do I need items in there to reflect what\'s being used within the site/application?

2条回答
  •  一生所求
    2021-02-01 12:10

    This file is managed by the NuGet infrastructure. It's used to track installed packages with their respective versions. If you installed the ASP.NET MVC 3 Tools Update it uses NuGet by default to track packages such as jQuery, EntityFramework, Modernizr. That's why you might be seeing this file when you create a new bare bone project.

提交回复
热议问题