Created
September 14, 2017 00:25
-
-
Save petersgiles/5b893f60182f49a95fc513777f5717e7 to your computer and use it in GitHub Desktop.
Change Colours in Package Manager Console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $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