Skip to content

Instantly share code, notes, and snippets.

View ardalis's full-sized avatar
💭
Building up my YouTube channel - follow me there!

Steve Smith ardalis

💭
Building up my YouTube channel - follow me there!
View GitHub Profile
@ardalis
ardalis / RemoveTargetFramework.cs
Created December 15, 2025 18:52
Remove <TargetFramework> elements from csproj files
// removeTargetFramework.cs
// Usage:
// dotnet run removeTargetFramework.cs -- [start-directory] [--dry-run|-n]
// Examples:
// dotnet run removeTargetFramework.cs -- . --dry-run
// dotnet run removeTargetFramework.cs -- ../src
// dotnet run removeTargetFramework.cs -- ../src -n
using System;
using System.IO;