Change NuGet package folders used by Visual Studio

UPD 2024: standalone nuget commands replaced with dotnet nuget CLI. The information provided is relevant for VS2022 and .NET 8. Cache locations Solution-local packages folders are no longer used by .NET Core and Visual Studio. The command to list user-specific folders is: dotnet nuget locals all –list And its typical output (I’ve replaced absolute paths … Read more

Disabling highlighting of current line in Visual Studio

Is there a simple way to disable this highlighting? Tools -> Options -> Text Editor, in the Display group, uncheck “Highlight current line” Which parameter in Fonts and Colors dialog controls the background color of the currently selected line in the editor? The colors are named “Highlight Current Line (Active)” and “Highlight Current Line (Inactive)”

tech