I have VS 2010 , when i go to tools/Extension Manager ans start getting Nuget Package manager ,after finishing installation I restart .Net ,but find nothing installed,
PS: I use .NET 4.0..
you can download Nuget Package manager directly http://nuget.codeplex.com/ from here and after installation restart VS.
Related
I'm new to asp.net, and I'm trying to run migrations, but I can't make the nuget console manager to work. I've installed everything:
the .NET core
Nuget package management extension
but I still can't work it out.
(the nuget.org source package is already installed and checked)
Please help me with the Twilio package installation in Visual Studio. I get the following error message when I try to install through NuGet manager.
Attempting to resolve dependency 'JWT (≥ 1.3.4)'. 'Twilio' already has
a dependency defined for 'Microsoft.IdentityModel.Tokens'.
thanks to all am ok now I updated the nuget manager to the latest version
I have this problem in my web service:
Specified Web Pages version “3.0.0.0” could not be found. Update your
web.config to specify a different version. Current version: “2.0.0.0”
Install Microsoft.AspNet.WebPages nuget package by entering this line in package manager console:
Install-Package Microsoft.AspNet.WebPages -Version 3.0.0
Or find and install it using Nuget Package Manager.
Go to the Nuget Package Manager in Visual Studio Code. Search for Microsoft.AspNet.WebPages and update this package if you already have the latest one the you should try to downgrade one version previous.
Or
You can run the below command in Package Manager Console in Visual Studio:
Install-Package Microsoft.AspNet.WebPages
This will resolve the issue.
After creating .../.nuspec/Xamarin.Forms.9.9.1.nupkg via a variant of https://github.com/xamarin/Xamarin.Forms/wiki/How-to-Build-Xamarin.Forms-NuGet (e.g., I built locally instead of VSTS), how do I install it for use as my copy of Xamarin.Forms in my various projects in VisualStudio 2017?
One would think that configuring a NuGet Package Source via VS2017 > Tools > NuGet Package Manager > Package Manager Settings aiming at that .../.nuspec directory would simply cause NuGet to pick it up from there, but, no, it doesn't find any nuget there.
Doh! The NuGet Package Source via VS2017 > Tools > NuGet Package Manager > Package Manager Settings needs to aim at that ... directory without the /.nuspec
After installing Visual Studio 2015 my app session doesn't work anymore. I'm using Microsoft.Web.RedisSessionStateProvider.
My problem was I had an outdated version of the Microsoft.Web.RedisSessionStateProvider package (0-0-3-Pre).
Be sure to update it to make it compatible with the new changes included in ASP.NET 4.6.
Open the Package Manager Console in Visual Studio, select your project and run:
Update-Package Microsoft.Web.RedisSessionStateProvider