我想使用nuget软件包创建用于软件部署的基本本地存储库
查找软件包/安装软件包失败,并显示以下错误“找不到与指定搜索条件匹配的内容”
当我尝试安装位于内部网络共享存储库中的软件包以及使用“ nuget add”添加软件包时发生这种情况
我使用以下Nuget命令序列创建了一个简单的测试包
1.- nuget spec mytest then I fullfilled the .nuspec file with some basic information.
2.- nuget pack mytest.nuget
3.- nuget add mytest.1.0.0.nupkg -source \\<myhost>\losnuget
然后在目标客户端上
网络共享以受信任的方式添加为资源,可以访问并且get-packageresource能够正确识别它
但是例如,当我使用
install-package -name mytest -source mynuget
我收到有关
的错误“ install-package:找不到与指定搜索条件和程序包名称'Mytest'匹配的内容。请尝试Get-PackageSource...。”
我的nuspec文件:
<?xml version="1.0"?>
<package >
<metadata>
<id>mytest</id>
<version>1.0.0</version>
<authors>TheBest author </authors>
<owners>TheBest owner</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Nuget test package</description>
<releaseNotes>some notes</releaseNotes>
<copyright>Copyright 2019</copyright>
<tags>TEST Files install</tags>
</metadata>
</package>