在使用Visual Studio 2015的MVC项目中,我已将参考配置为使用 dll而不使用nuget 。但是当我添加一个新视图(MVC5 View Page,MVC5 Partial Page等)时,visual studio会自动将nuget包添加到已经引用的项目中。为什么?有没有办法完全禁用nuget?
这是我在添加新视图时VisualStudio添加的包:
<packages>
<package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net452" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net452" />
</packages>
<RestorePackages>false</RestorePackages>
添加到项目文件中但没有成功