Skip to content

Instantly share code, notes, and snippets.

View bbenetskyy's full-sized avatar
👾
Making Apps with MAUI 😛

Bohdan Benetskyi bbenetskyy

👾
Making Apps with MAUI 😛
View GitHub Profile
@jpoehls
jpoehls / Kill-VisualStudio.ps1
Created May 31, 2012 17:01
Kill-VisualStudio powershell function
function Kill-VisualStudio
{
<#
.SYNOPSIS
Kills all running 'devenv' instances.
#>
Get-Process devenv -ErrorAction SilentlyContinue | Stop-Process
}
Set-Alias killvs Kill-VisualStudio