Based on this blogpost.
Install with Homebrew:
$ brew install postgresql
Run server:
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"segments": [ | |
{ | |
"foreground": "#45F1C2", | |
"style": "plain", | |
"template": "\ueb99 {{ .UserName }} on", |
Based on this blogpost.
Install with Homebrew:
$ brew install postgresql
Run server:
I hereby claim:
To claim this, I am signing this object:
/// <summary> | |
/// Closes the current StreamWriter object and the underlying stream. | |
/// </summary> | |
/// <exception cref="T:System.Text.EncoderFallbackException">The current encoding does not support displaying half of a Unicode surrogate pair.</exception><filterpriority>1</filterpriority> | |
public override void Close() | |
{ | |
this.Dispose(true); | |
GC.SuppressFinalize((object) this); | |
} |
# Usage: .\DisableNuGetPackageRestore.ps1 C:\Path\To\Solution.sln | |
# Get the path that the user specified when calling the script | |
$solution = $args[0] | |
$solutionPath = Split-Path $solution -Parent | |
$solutionName = Split-Path $solution -Leaf | |
# Delete the .nuget directory and all contents | |
Remove-Item (Join-Path $solutionPath ".nuget") -Force -Recurse -ErrorAction 0 |