Powershell Script to Update .NET version
Recently had to update the .NET Framework version for a service. Initially, did a quick and dirty regex replace:
$projectPaths = Get-ChildItem -include *.csproj -Recurse -Path $Path
(Get-Content $_.FullName) -Replace '<TargetFramework(s)?>.*', $targe...
wind010.hashnode.dev1 min read