Skip to content

Instantly share code, notes, and snippets.

@petersgiles
Created September 14, 2017 00:25
Show Gist options
  • Save petersgiles/5b893f60182f49a95fc513777f5717e7 to your computer and use it in GitHub Desktop.
Save petersgiles/5b893f60182f49a95fc513777f5717e7 to your computer and use it in GitHub Desktop.
Change Colours in Package Manager Console
# $profile to find path i.e. NuGet_profile.ps1
$opt = (Get-Host).PrivateData
$opt.WarningBackgroundColor = "Orange"
$opt.WarningForegroundColor = "White"
$opt.ErrorBackgroundColor = "Red"
$opt.ErrorForegroundColor = "White"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment