我有一些c#书中的。nupkg文件。我如何安装它们?
当前回答
最近我想安装松鼠。windows,我尝试安装包松鼠。windows -版本2.0.1从https://www.nuget.org/packages/squirrel.windows/,但它失败了一些错误。所以我下载了squirrel.windows.2.0.1。nupkg并保存在D:\Downloads\,然后我可以通过install - package squirrel成功安装它。windows -verbose -Source D:\Downloads\ -Scope CurrentUser -SkipDependencies
其他回答
在Linux上,使用NuGet CLI,命令是类似的。安装我的。nupkg,跑
nuget add -Source some/directory my.nupkg
然后在该目录下运行dotnet restore
dotnet restore --source some/directory Project.sln
或者将该目录添加为NuGet源
nuget sources Add -Name MySource -Source some/directory
然后告诉msbuild使用/p:RestoreAdditionalSources=MySource或/p: restoreresources =MySource的目录。第二个开关将禁用所有其他源,例如,这适用于脱机场景。
Add the files to a folder called LocalPackages next to you solution (it doesn't have to be called that, but adjust the xml in the following step accordingly) Create a file called NuGet.config next to your solution file with the following contents <?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="LocalPackages" value="./LocalPackages" /> </packageSources> <activePackageSource> <!-- this tells that all of them are active --> <add key="All" value="(Aggregate source)" /> </activePackageSource> </configuration> If the solution is open in Visual Studio, close it, then re-open it.
现在您的包应该出现在浏览器中,或者可以使用Install-Package进行安装
您还可以使用包管理器控制台并通过在-Source参数中指定包含包文件的目录的路径来调用安装包cmdlet:
Install-Package SomePackage -Source C:\PathToThePackageDir\
菜单工具→选项→包管理器
给出名称和文件夹位置。单击OK。将您的NuGet包文件放在该文件夹中。
转到解决方案资源管理器中的项目,右键单击并选择“管理NuGet包”。选择新的包源。
这里是文档。
对于.nupkg文件,我喜欢使用:
Install-Package C:\Path\To\Some\File.nupkg
推荐文章
- 如何在Visual Studio中删除未推送的外向提交?
- “无法写入文件…”因为它会覆盖输入文件。”
- 使用Visual Studio调试器在值更改时中断
- Visual Studio 2017:显示方法参考
- 为什么ReSharper想要使用'var'的一切?
- 在Visual Studio中默认从项目中删除安全警告(_CRT_SECURE_NO_WARNINGS)
- 在Visual Studio中设置“首选32位”的目的是什么?它实际上是如何工作的?
- c# 8支持。net框架吗?
- 如何在解决方案中找到未使用的NuGet包?
- 查看Visual Studio 2010+中的所有断点
- 如何禁用诊断工具?
- Visual Studio单击“查找结果”在错误的窗口中打开代码
- 无法打开Visual Studio -抛出错误“安装过程中无法运行”
- 我在哪里可以找到安装在Visual Studio中的TypeScript版本?
- Visual Studio代码如何解决合并冲突与git?