From c267d78cfbf634fcf34639bf657ec402d4b57ef8 Mon Sep 17 00:00:00 2001 From: Torsten Brendgen Date: Tue, 21 Apr 2026 15:28:25 +0200 Subject: [PATCH] =?UTF-8?q?Removed=20Legacy=20Kompatibilit=C3=A4ts-Loader.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Merge-ConfigurationData.ps1 | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Merge-ConfigurationData.ps1 diff --git a/Merge-ConfigurationData.ps1 b/Merge-ConfigurationData.ps1 deleted file mode 100644 index f04aad9..0000000 --- a/Merge-ConfigurationData.ps1 +++ /dev/null @@ -1,15 +0,0 @@ -$ModuleRoot = $PSScriptRoot - -if([String]::IsNullOrWhiteSpace($ModuleRoot)){ - throw "This compatibility loader must be dot-sourced from a file path. Use Import-Module './Merge-DSCConfigurationData.psd1' for module usage." -} - -$PrivatePath = Join-Path -Path $ModuleRoot -ChildPath "Private" -$PublicPath = Join-Path -Path $ModuleRoot -ChildPath "Public" - -$Private = @(Get-ChildItem -Path $PrivatePath -Filter "*.ps1" -File -ErrorAction Stop | Sort-Object -Property FullName) -$Public = @(Get-ChildItem -Path $PublicPath -Filter "*.ps1" -File -ErrorAction Stop | Sort-Object -Property FullName) - -foreach($File in @($Private + $Public)){ - . $File.FullName -}