Nuget:更改包目录路径和名称

发布于 2024-12-07 23:51:21 字数 270 浏览 0 评论 0原文

是否可以更改创建的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

世态炎凉 2024-12-14 23:51:21

您可以通过创建一个名为 nuget.config 的文件并将其存储在与解决方案文件相同的位置来实现此目的。

配置文件应该如下所示:

<settings>
    <repositoryPath>../libs/packages</repositoryPath>
</settings>

就是这样。

显然你可以放置任何你想要的路径。希望有帮助。

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:

<settings>
    <repositoryPath>../libs/packages</repositoryPath>
</settings>

That's it.

Obviously you can put whatever path you want. Hope that helps.

好听的两个字的网名 2024-12-14 23:51:21

我是在 VS 2010 上做的。

1) 更新 NuGet。

2) 将 nuget.config 文件添加到解决方案文件夹,如下所示:

<?xml version="1.0" encoding="utf-8"?>

<settings>
  <repositoryPath>..\..\..\Dependencies\packages</repositoryPath>
</settings>

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:

<?xml version="1.0" encoding="utf-8"?>

<settings>
  <repositoryPath>..\..\..\Dependencies\packages</repositoryPath>
</settings>

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.

空城缀染半城烟沙 2024-12-14 23:51:21

从版本 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).

百合的盛世恋 2024-12-14 23:51:21

此限制针对 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文