Skip to content

Instantly share code, notes, and snippets.

View SajjadToomari's full-sized avatar

Sajjad Toomari SajjadToomari

  • Tehran, Iran
View GitHub Profile
@SajjadToomari
SajjadToomari / Windows Defender Exclusions VS 2019.ps1
Created December 20, 2021 17:22 — forked from Braytiner/Windows Defender Exclusions VS 2019.ps1
Adds Windows Defender exclusions for Visual Studio 2019
$userPath = $env:USERPROFILE
$pathExclusions = New-Object System.Collections.ArrayList
$processExclusions = New-Object System.Collections.ArrayList
$pathExclusions.Add('C:\source\repos') > $null
$pathExclusions.Add('C:\Windows\Microsoft.NET') > $null
$pathExclusions.Add('C:\Windows\assembly') > $null
$pathExclusions.Add($userPath + '\AppData\Local\Microsoft\VisualStudio') > $null
$pathExclusions.Add($userPath + '\AppData\Local\Microsoft\VisualStudio Services') > $null
$pathExclusions.Add($userPath + '\AppData\Local\GitCredentialManager') > $null
@SajjadToomari
SajjadToomari / readme.md
Created July 29, 2021 07:24 — forked from ZacharyPatten/readme.md
GitHub Repository Checklist (C#)

GitHub Repository Checklist (C#)

Have a repository on GitHub? Planning on making a repository on GitHub? This checklist is intended to introduce you to various features that may help you make the most of your GitHub repository with specific recommendations for C# repsoitories.

Checklist

These are only recommendations.
They may not be appropriate for all repositories.
They are in no particular order.
Click each item to expand for more information.