Skip to content

Instantly share code, notes, and snippets.

@BlythMeister
BlythMeister / Update-AUPackages.md
Last active May 20, 2024 06:00
Update-AUPackages Report #powershell #chocolatey
@BlythMeister
BlythMeister / Update-Force-Test-0.md
Last active May 20, 2024 09:00
Update Force Test Report #powershell #chocolatey
@BlythMeister
BlythMeister / NUnit4Migrate.cs
Last active May 15, 2024 10:39
NUnit 4 Breaking Change Migration
void Main()
{
var rootDir = @"F:\GIT\Repo";
var classicAssert = true;
foreach (var projFile in Directory.GetFiles(rootDir, "*.*proj", SearchOption.AllDirectories))
{
var projContent = File.ReadAllLines(projFile);
if (projContent.Any(line => line.Contains("NUnit", StringComparison.InvariantCultureIgnoreCase)))
{