Nuget安装目录
Nuget installation directory
我将我的 .net 框架项目制作成一个 nuget 包。我想在另一个项目中安装该 nuget 包,但我需要准确指定应该安装该 nuget 的位置,例如(Shell/someDir/此处)。我知道我必须编辑 .nuspec 但使用什么命令?
不胜感激。
我在这个帖子中找到了我需要的答案
Is it possible to change the location of packages for NuGet?
我在我的 Nuget.Config 文件中添加,它成功复制了 nuget 文件
<configuration>
<config>
<add key="repositoryPath" value="C:\myteam\teampackages" />
</config>
...
</configuration>
我将我的 .net 框架项目制作成一个 nuget 包。我想在另一个项目中安装该 nuget 包,但我需要准确指定应该安装该 nuget 的位置,例如(Shell/someDir/此处)。我知道我必须编辑 .nuspec 但使用什么命令?
不胜感激。
我在这个帖子中找到了我需要的答案
Is it possible to change the location of packages for NuGet?
我在我的 Nuget.Config 文件中添加,它成功复制了 nuget 文件
<configuration>
<config>
<add key="repositoryPath" value="C:\myteam\teampackages" />
</config>
...
</configuration>