nugetgallery

Powershell Find-Package command doesn't work with nuget v3 package source

坚强是说给别人听的谎言 提交于 2021-02-08 19:23:27
问题 As the title says I cannot use the Find-Package command with the nuget v3 url: https://api.nuget.org/v3/index.json If I run the command: Find-Package nuget.versioning -Source https://api.nuget.org/v3/index.json I get an error that no match was found. Changing the command to: Find-Package nuget.versioning -Source https://www.nuget.org/api/v2 Works fine. Do I need to upgrade some software to get this to work? I'm running Powershell version 5 so I'm not sure what steps I need to take to fix this

How do I find the right NuGet package for my framework version

与世无争的帅哥 提交于 2019-12-24 16:25:03
问题 I need the Microsoft ASP.Net Web Pages NuGet package, but I need the version which targets .net 4.0 How do I figure this out? Is there a way to figure this out for any given NuGet Package? 回答1: The later versions of the Microsoft.AspNet.WebPages NuGet package only support .NET 4.5 The older version 2.0.30506.0 supports .NET 4.0 To figure this out I used the NuGet Package Explorer, displayed the list of package versions and opened a few of the NuGet packages to see what .NET frameworks they

Can we add 2 different versions of same package in NuGet

落爺英雄遲暮 提交于 2019-12-19 12:52:52
问题 Is it possible to have 2 different versions of the same NuGet package (in my case its jQuery 1.10.1 & 2.0.2) within same project? If yes, how can we do that? Thanks 回答1: The short answer is no. Check out NuGet issue Allow side-by-side versions of jQuery (and others). It was closed by Phil Haack ( NuGet contributor) with message "won't fix". The recommended workaround by Phil Haack is You've hit the boundaries of NuGet. Just reference one of them using a CDN or manually add the script files.

CURL Nuget visual studio 2013 unresolved external symbol __imp__curl_easy_init referenced in function _main()

a 夏天 提交于 2019-12-07 08:58:47
问题 I follow this link (http://echorand.me/2012/01/27/picloud-and-rest-api-with-c-client/.) and I get some libraries from Nugget (CURL, curlpp, curlpp redist, curlpp symbols). But it have some error, unresolved external symbol __imp__curl_easy_init referenced in function _main() please help me solve that problem. This is image show error and nuget packages. http://i.stack.imgur.com/dADzy.png 来源: https://stackoverflow.com/questions/26926417/curl-nuget-visual-studio-2013-unresolved-external-symbol

CURL Nuget visual studio 2013 unresolved external symbol __imp__curl_easy_init referenced in function _main()

巧了我就是萌 提交于 2019-12-05 18:01:52
I follow this link ( http://echorand.me/2012/01/27/picloud-and-rest-api-with-c-client/ .) and I get some libraries from Nugget (CURL, curlpp, curlpp redist, curlpp symbols). But it have some error, unresolved external symbol __imp__curl_easy_init referenced in function _main() please help me solve that problem. This is image show error and nuget packages. http://i.stack.imgur.com/dADzy.png 来源: https://stackoverflow.com/questions/26926417/curl-nuget-visual-studio-2013-unresolved-external-symbol-imp-curl-easy-init-r

Can we add 2 different versions of same package in NuGet

∥☆過路亽.° 提交于 2019-12-01 16:16:58
Is it possible to have 2 different versions of the same NuGet package (in my case its jQuery 1.10.1 & 2.0.2) within same project? If yes, how can we do that? Thanks The short answer is no. Check out NuGet issue Allow side-by-side versions of jQuery (and others) . It was closed by Phil Haack ( NuGet contributor) with message "won't fix". The recommended workaround by Phil Haack is You've hit the boundaries of NuGet. Just reference one of them using a CDN or manually add the script files. 来源: https://stackoverflow.com/questions/17555126/can-we-add-2-different-versions-of-same-package-in-nuget

NuGet staying 'Retrieving Information' or 'No results found' in VS 2013

蹲街弑〆低调 提交于 2019-12-01 05:10:54
问题 All of a sudden, NuGet stopped working for all projects. I've tried it on 4 different computers in the office, and all of them stopped working. If I go to 'Manage NuGet Packages', it says 'No items found' when the node Online > nuget.org is selected. This was working some time ago I last checked, and all of a sudden it stopped. Any ideas? I am using Visual Studio 2013. I've tried removing and reinstalling NuGet from Tools & Extensions, to no avail. 回答1: I have the same problem here. https:/

Why am I getting “Unable to load DLL 'sqlite3'” in my WPF app?

陌路散爱 提交于 2019-12-01 04:18:56
I added what I thought were the necessary SQLite (and sqlite-net) packages to my app. On running it, though, I get an exception: System.DllNotFoundException was unhandled by user code HResult=-2146233052 Message=Unable to load DLL 'sqlite3': The specified module could not be found. (Exception from I have the following SQLite packages installed: What is missing? UPDATE I tried ajawad987's suggestion, but still get the same runtime error, even though I've got this: ...and this: UPDATE 2 Where this runtime exception takes place (in SQLite.cs) seems odd to me: if SILVERLIGHT || USE_CSHARP_SQLITE

Why am I getting “Unable to load DLL 'sqlite3'” in my WPF app?

百般思念 提交于 2019-12-01 01:34:21
问题 I added what I thought were the necessary SQLite (and sqlite-net) packages to my app. On running it, though, I get an exception: System.DllNotFoundException was unhandled by user code HResult=-2146233052 Message=Unable to load DLL 'sqlite3': The specified module could not be found. (Exception from I have the following SQLite packages installed: What is missing? UPDATE I tried ajawad987's suggestion, but still get the same runtime error, even though I've got this: ...and this: UPDATE 2 Where

Package manager in Visual Studio 2015 “407 (Proxy Authentication Required)”

不羁的心 提交于 2019-11-28 11:12:10
I understand this is an often asked question, however after days of research I've not found an answer to this particular problem. I have a new ASP.NET 5 (Core 1.0) MVC template that I'm trying to add a package to however each and every time I get in the Package Manager output: Response status code does not indicate success: 407 (Proxy Authentication Required). and the following at the top of solution explorer: my settings look fine and I am able to browse packages in the 'Manage Packages for Solution' screen. I understand I'm being requested to supply credentials so where do I enter them? On