mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 06:35:51 -06:00
43 lines
1.9 KiB
PowerShell
43 lines
1.9 KiB
PowerShell
$OFS = "`r`n"
|
|
$scriptname = "winutil.ps1"
|
|
# Variable to sync between runspaces
|
|
$sync = [Hashtable]::Synchronized(@{})
|
|
$sync.PSScriptRoot = $PSScriptRoot
|
|
$sync.configs = @{}
|
|
|
|
if (Test-Path -Path "$($scriptname)")
|
|
{
|
|
Remove-Item -Force "$($scriptname)"
|
|
}
|
|
|
|
Write-output '
|
|
################################################################################################################
|
|
### ###
|
|
### WARNING: This file is automatically generated DO NOT modify this file directly as it will be overwritten ###
|
|
### ###
|
|
################################################################################################################
|
|
' | Out-File ./$scriptname -Append -Encoding ascii
|
|
|
|
(Get-Content .\scripts\start.ps1).replace('#{replaceme}',"$(Get-Date -Format yy.MM.dd)") | Out-File ./$scriptname -Append -Encoding ascii
|
|
|
|
Get-ChildItem .\functions -Recurse -File | ForEach-Object {
|
|
Get-Content $psitem.FullName | Out-File ./$scriptname -Append -Encoding ascii
|
|
}
|
|
|
|
$xaml = (Get-Content .\xaml\inputXML.xaml).replace("'","''")
|
|
Write-output "`$inputXML = '$xaml'" | Out-File ./$scriptname -Append -Encoding ascii
|
|
|
|
Get-ChildItem .\config | Where-Object {$psitem.extension -eq ".json"} | ForEach-Object {
|
|
$json = (Get-Content $psitem.FullName).replace("'","''")
|
|
$sync.configs.$($psitem.BaseName) = $json | convertfrom-json
|
|
Write-output "`$sync.configs.$($psitem.BaseName) = '$json' `| convertfrom-json" | Out-File ./$scriptname -Append -Encoding ascii
|
|
}
|
|
|
|
# Dot-source the Get-TabXaml function
|
|
. .\functions\private\Get-TabXaml.ps1
|
|
|
|
## Xaml Manipulation
|
|
$tabColumns = Get-TabXaml "applications" 5
|
|
$tabColumns | Out-File -FilePath ".\xaml\inputApp.xaml" -Encoding ascii
|
|
|
|
Get-Content .\scripts\main.ps1 | Out-File ./$scriptname -Append -Encoding ascii |