Skip to content

Instantly share code, notes, and snippets.

View carstengehling's full-sized avatar

Carsten Gehling carstengehling

View GitHub Profile
@carstengehling
carstengehling / snippets.ps1
Created August 24, 2023 18:21
Powershell snippets
###############################################################################
# Search/replace text in files recursively
$utf8 = New-Object System.Text.UTF8Encoding $True
Get-ChildItem . *.xaml -recurse |
Foreach-Object {
$content = [System.IO.File]::ReadAllText($_.FullName)
if ($content.Contains('{DynamicResource '))
{