How do I uninstall *all* nuget packages from a solution in Visual Studio

To get all packages from all projects in the solution use Get-Package. To get all packages from a specific project use Get-Package -ProjectName “YourProjectName”. Remove all packages from all projects in the solution Be careful: This will uninstall ALL packages in the solution. If -Force parameter is used, packages are removed even if dependencies exist. … Read more

visual studio 2015 vshub is spamming fiddler

This is a relatively new problem because System.NET used to ignore proxy settings for localhost, and therefore Fiddler wouldn’t see the traffic by default (http://docs.telerik.com/fiddler/Configure-Fiddler/Tasks/ConfigureDotNETApp) – see bottom section. Now this no longer appears to be the case, so I expect more people will have the same question. Fiddler supports several ways to filter requests, … Read more

The term “Add-Migration” is not recognized

Just install Microsoft.EntityFrameworkCore.Tools package from nuget: Install-Package Microsoft.EntityFrameworkCore.Tools -Version 6.0.8 You can also use this link to install the latest version: NuGet package link .NET CLI command: dotnet add package Microsoft.EntityFrameworkCore.Tools If the problem still persists, try restarting Visual Studio.

Visual Studio 2015 Database Project directory contains a file with extension jfm

This is an issue caused by the ESENT engine relied on by SQL Projects adding in a new file. This is a new feature in Windows 10 Anniversary Edition to avoid data loss, but the fact SQL Projects store the .dbmdl cache file under the project root means this locked file is added to the … Read more