diff --git a/Compile.ps1 b/Compile.ps1 index a1ab15a9..cda56803 100644 --- a/Compile.ps1 +++ b/Compile.ps1 @@ -36,15 +36,6 @@ function Update-Progress { Write-Progress -Activity $Activity -Status $StatusMessage -PercentComplete $Percent } -$header = @" -################################################################################################################ -### ### -### WARNING: This file is automatically generated DO NOT modify this file directly as it will be overwritten ### -### ### -################################################################################################################ -"@ - - Update-Progress "Pre-req: Running Preprocessor..." 0 # Dot source the 'Invoke-Preprocessing' Function from 'tools/Invoke-Preprocessing.ps1' Script @@ -76,9 +67,6 @@ Invoke-Preprocessing -WorkingDir "$workingdir" -ExcludedFiles $excludedFiles -Pr Update-Progress "Pre-req: Allocating Memory" 0 $script_content = [System.Collections.Generic.List[string]]::new() -Update-Progress "Adding: Header" 5 -$script_content.Add($header) - Update-Progress "Adding: Version" 10 $script_content.Add($(Get-Content "scripts\start.ps1").replace('#{replaceme}',"$(Get-Date -Format yy.MM.dd)"))