Nuget:更改包目录路径和名称
是否可以更改创建的nuget包目录的名称和路径?
我当前的文件夹结构是这样的:
+src
++项目1
++项目2
++包
我想要一个像这样的文件夹结构:
+Lib(包)
+src
++项目1
++项目2
Is it possible to change the name and the path of the created nuget package directory?
My current folder structure is like this:
+src
++Project1
++Project2
++packages
I'd like to have a folder structure like this:
+Lib (packages)
+src
++Project1
++Project2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以通过创建一个名为
nuget.config
的文件并将其存储在与解决方案文件相同的位置来实现此目的。配置文件应该如下所示:
就是这样。
显然你可以放置任何你想要的路径。希望有帮助。
You can do this by creating a file called
nuget.config
and storing it in the same location as your solution file.The config file should look like this:
That's it.
Obviously you can put whatever path you want. Hope that helps.
我是在 VS 2010 上做的。
1) 更新 NuGet。
2) 将 nuget.config 文件添加到解决方案文件夹,如下所示:
3) 在 nuget.config 文件引用的位置创建一个空的“packages”文件夹。
4)转到工具->库包管理器->管理解决方案的 Nuget 包
5) 在搜索框中键入“asynctargetingpack”(或您喜欢的任何其他包)
6) 安装包
7) 转到 nuget.config 文件引用的位置的“packages”文件夹,然后检查包文件在那里。
I did it for VS 2010.
1) Get NuGet updated.
2) Add a nuget.config file to the solution folder like this:
3) Create an empty "packages" folder at the location referred by the nuget.config file.
4) Go to Tools -> Library Package Manager-> Manage Nuget Packages for Solution
5) Type "asynctargetingpack" on the search box (or any other package you prefer)
6) Install the package
7) Go to the "packages" folder at the location referred by the nuget.config file and check the package files are there.
从版本 2.2 开始,您可以更改 NuGet.Config 文件。
NuGet 配置文件
编辑“repositorypath”键的值(并取消注释)。
Starting with version 2.2 you can changed the NuGet.Config file.
NuGet Configuration File
Edit the value of the "repositorypath" key (and uncomment).
此限制针对 VS 插件,使用命令行您可以选择安装/更新命令的包目录,但随后您无法返回使用插件 UI。
This limitation is on the VS plugin, using the command line you can choose the packages directory for the install/update commands, but then you can't go back to use the plugin UI.