├── CHANGES.txt ├── Databases └── PSADT.sqlite ├── DeploymentEditor.exe ├── DeploymentEditor.pb ├── DeploymentEditor.pbp ├── Forms ├── AboutWindow.pbf ├── ImportExeWindow.pbf ├── ImportMsiWindow.pbf ├── LogReaderWindow.pbf ├── MainWindow.pbf ├── NewProjectWindow.pbf ├── PluginWindow.pbf ├── ProgressWindow.pbf ├── ProjectSettingsWindow.pbf ├── RunRemoteWindow.pbf ├── ScriptEditorWindow.pbf └── WinGetImportWindow.pbf ├── Icon.ico ├── LICENSE ├── LICENSE_PSADT ├── LICENSE_ThirdParty ├── Plugins ├── Enabled-CompanyBranding │ ├── Assets │ │ ├── AppIcon.png │ │ └── Banner.Classic.png │ ├── CompanyBranding.ps1 │ └── Plugin.ini ├── Enabled-HelloWorld │ ├── HelloWorld.ps1 │ └── Plugin.ini └── Enabled-Install_PSAppDeployToolkit │ ├── Install-PSAppDeployToolkit.ps1 │ └── Plugin.ini ├── README.md ├── Ressources ├── Animation_Loading.gif ├── Icon_ArrowDown.png ├── Icon_ArrowUp.png ├── Icon_Check.png ├── Icon_Check_24px.png ├── Icon_Database.png ├── Icon_Disabled_24px.png ├── Icon_Dot.png ├── Icon_EXE.png ├── Icon_EXE_32px.png ├── Icon_Exclamation.png ├── Icon_Exclamation_24px.png ├── Icon_Executable.png ├── Icon_Go.png ├── Icon_Go_48px.png ├── Icon_Help.png ├── Icon_If_24px.png ├── Icon_Info.png ├── Icon_Information.png ├── Icon_Installer.png ├── Icon_MSI.png ├── Icon_Package.png ├── Icon_Package_128px.png ├── Icon_Package_512px.png ├── Icon_Package_512px_White.png ├── Icon_Package_80px.png ├── Icon_Plugin.png ├── Icon_PowerShell.png ├── Icon_PowerShell_24px.png ├── Icon_Repair.png ├── Icon_Rocket.png ├── Icon_Search.png ├── Icon_Uninstall.png └── PSADT Branding.free ├── Screenshot.png ├── Scripts ├── PSADT.sqlite ├── PSADT4-ExportCommandsAndParameters.ps1 ├── PSADT4-GenerateDatabase.pb ├── PSADT4-HelpConsole.ps1 ├── PSADT4_Commands.csv ├── PSADT4_Parameters.csv └── Read-Msi.ps1 ├── Snippets ├── HelloWorld.ps1 └── HelloWorld_MultipleLines.ps1 ├── Templates ├── Invoke-AppDeployToolkit.db ├── Invoke-AppDeployToolkit.ps1 └── Windows Sandbox.wsb ├── Test ├── Assets │ ├── AppIcon.png │ └── Banner.Classic.png ├── Config │ └── config.psd1 ├── Files │ ├── Add Setup Files Here.txt │ └── Installer.exe ├── Invoke-AppDeployToolkit.db ├── Invoke-AppDeployToolkit.exe ├── Invoke-AppDeployToolkit.ps1 ├── Invoke-AppDeployToolkit.ps1.template ├── PSAppDeployToolkit.Extensions │ ├── PSAppDeployToolkit.Extensions.psd1 │ └── PSAppDeployToolkit.Extensions.psm1 ├── PSAppDeployToolkit │ ├── !README.txt │ ├── ADMX │ │ ├── PSAppDeployToolkit.admx │ │ └── en-US │ │ │ └── PSAppDeployToolkit.adml │ ├── Assets │ │ ├── AppIcon.png │ │ └── Banner.Classic.png │ ├── COPYING.Lesser │ ├── Config │ │ └── config.psd1 │ ├── Frontend │ │ ├── v3 │ │ │ ├── AppDeployToolkit │ │ │ │ ├── AppDeployToolkitExtensions.ps1 │ │ │ │ ├── AppDeployToolkitMain.ps1 │ │ │ │ └── COPYING.Lesser │ │ │ └── Deploy-Application.exe │ │ └── v4 │ │ │ ├── Invoke-AppDeployToolkit.exe │ │ │ ├── Invoke-AppDeployToolkit.ps1 │ │ │ └── PSAppDeployToolkit.Extensions │ │ │ ├── PSAppDeployToolkit.Extensions.psd1 │ │ │ └── PSAppDeployToolkit.Extensions.psm1 │ ├── PSAppDeployToolkit.cer │ ├── PSAppDeployToolkit.psd1 │ ├── PSAppDeployToolkit.psm1 │ ├── Strings │ │ ├── ar │ │ │ └── strings.psd1 │ │ ├── bg │ │ │ └── strings.psd1 │ │ ├── cs │ │ │ └── strings.psd1 │ │ ├── cz │ │ │ └── strings.psd1 │ │ ├── da │ │ │ └── strings.psd1 │ │ ├── de │ │ │ └── strings.psd1 │ │ ├── el │ │ │ └── strings.psd1 │ │ ├── es │ │ │ └── strings.psd1 │ │ ├── fi │ │ │ └── strings.psd1 │ │ ├── fr │ │ │ └── strings.psd1 │ │ ├── he │ │ │ └── strings.psd1 │ │ ├── hu │ │ │ └── strings.psd1 │ │ ├── it │ │ │ └── strings.psd1 │ │ ├── ja │ │ │ └── strings.psd1 │ │ ├── ko │ │ │ └── strings.psd1 │ │ ├── lv │ │ │ └── strings.psd1 │ │ ├── nb │ │ │ └── strings.psd1 │ │ ├── nl │ │ │ └── strings.psd1 │ │ ├── pl │ │ │ └── strings.psd1 │ │ ├── pt-br │ │ │ └── strings.psd1 │ │ ├── pt │ │ │ └── strings.psd1 │ │ ├── ru │ │ │ └── strings.psd1 │ │ ├── sk │ │ │ └── strings.psd1 │ │ ├── strings.psd1 │ │ ├── sv │ │ │ └── strings.psd1 │ │ ├── tr │ │ │ └── strings.psd1 │ │ ├── zh-CN │ │ │ └── strings.psd1 │ │ ├── zh-HK │ │ │ └── strings.psd1 │ │ ├── zh-hans │ │ │ └── strings.psd1 │ │ └── zh-hant │ │ │ └── strings.psd1 │ └── lib │ │ ├── Newtonsoft.Json.dll │ │ ├── PSADT.ClientServer.Client.Launcher.exe │ │ ├── PSADT.ClientServer.Client.Launcher.exe.config │ │ ├── PSADT.ClientServer.Client.Launcher.pdb │ │ ├── PSADT.ClientServer.Client.exe │ │ ├── PSADT.ClientServer.Client.exe.config │ │ ├── PSADT.ClientServer.Client.pdb │ │ ├── PSADT.ClientServer.Server.dll │ │ ├── PSADT.ClientServer.Server.pdb │ │ ├── PSADT.UserInterface.dll │ │ ├── PSADT.UserInterface.pdb │ │ ├── PSADT.dll │ │ ├── PSADT.pdb │ │ ├── System.Buffers.dll │ │ ├── System.IO.FileSystem.AccessControl.dll │ │ ├── System.Memory.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Security.AccessControl.dll │ │ ├── System.Security.Permissions.dll │ │ ├── System.Security.Principal.Windows.dll │ │ ├── af-ZA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── am-ET │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ar-SA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── as-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── az-Latn-AZ │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── be-BY │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── bg-BG │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── bn-BD │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── bn-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── bs-Latn-BA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ca-ES │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ca-Es-VALENCIA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── cs-CZ │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── cs │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── cy-GB │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── da-DK │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── de-DE │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── de │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── el-GR │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── en-GB │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── es-ES │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── es-MX │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── es │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── et-EE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── eu-ES │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── fa-IR │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── fa │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── fi-FI │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── fil-PH │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── fr-CA │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── fr-FR │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── fr │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ga-IE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── gd-gb │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── gl-ES │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── gu-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ha-Latn-NG │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── he-IL │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── hi-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── hr-HR │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── hu-HU │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── hy-AM │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── iNKORE.UI.WPF.Modern.Controls.dll │ │ ├── iNKORE.UI.WPF.Modern.dll │ │ ├── iNKORE.UI.WPF.dll │ │ ├── id-ID │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── is-IS │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── it-IT │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── it │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ja-JP │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── ja │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ka-GE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── kk-KZ │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── km-KH │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── kn-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ko-KR │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── ko │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── kok-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── lb-LU │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── lo-LA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── lt-LT │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── lv-LV │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── mi-NZ │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── mk-MK │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ml-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── mr-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ms-MY │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── mt-MT │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── nb-NO │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ne-NP │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── nl-NL │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── nn-NO │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── or-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── pa-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── pl-PL │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── pl │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── pt-BR │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── pt-PT │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── quz-PE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ro-RO │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ru-RU │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── ru │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sk-SK │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sl-SI │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sq-AL │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sr-Cyrl-BA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sr-Cyrl-RS │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sr-Latn-RS │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sv-SE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sw-KE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ta-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── te-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── th-TH │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── tr-TR │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── tr │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── tt-RU │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ug-CN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── uk-UA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ur-PK │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── uz-Latn-UZ │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── vi-VN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── zh-CN │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── zh-Hans │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── zh-Hant │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── zh-TW │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll ├── Strings │ ├── ar │ │ └── strings.psd1 │ ├── bg │ │ └── strings.psd1 │ ├── cs │ │ └── strings.psd1 │ ├── cz │ │ └── strings.psd1 │ ├── da │ │ └── strings.psd1 │ ├── de │ │ └── strings.psd1 │ ├── el │ │ └── strings.psd1 │ ├── es │ │ └── strings.psd1 │ ├── fi │ │ └── strings.psd1 │ ├── fr │ │ └── strings.psd1 │ ├── he │ │ └── strings.psd1 │ ├── hu │ │ └── strings.psd1 │ ├── it │ │ └── strings.psd1 │ ├── ja │ │ └── strings.psd1 │ ├── ko │ │ └── strings.psd1 │ ├── lv │ │ └── strings.psd1 │ ├── nb │ │ └── strings.psd1 │ ├── nl │ │ └── strings.psd1 │ ├── pl │ │ └── strings.psd1 │ ├── pt-br │ │ └── strings.psd1 │ ├── pt │ │ └── strings.psd1 │ ├── ru │ │ └── strings.psd1 │ ├── sk │ │ └── strings.psd1 │ ├── strings.psd1 │ ├── sv │ │ └── strings.psd1 │ ├── tr │ │ └── strings.psd1 │ ├── zh-CN │ │ └── strings.psd1 │ ├── zh-HK │ │ └── strings.psd1 │ ├── zh-hans │ │ └── strings.psd1 │ └── zh-hant │ │ └── strings.psd1 └── SupportFiles │ └── Add Supporting Files Here.txt ├── ThirdParty └── PSAppDeployToolkit │ ├── Assets │ ├── AppIcon.png │ └── Banner.Classic.png │ ├── Config │ └── config.psd1 │ ├── Files │ └── Add Setup Files Here.txt │ ├── Invoke-AppDeployToolkit.exe │ ├── Invoke-AppDeployToolkit.ps1 │ ├── PSAppDeployToolkit.Extensions │ ├── PSAppDeployToolkit.Extensions.psd1 │ └── PSAppDeployToolkit.Extensions.psm1 │ ├── PSAppDeployToolkit │ ├── !README.txt │ ├── ADMX │ │ ├── PSAppDeployToolkit.admx │ │ └── en-US │ │ │ └── PSAppDeployToolkit.adml │ ├── Assets │ │ ├── AppIcon.png │ │ └── Banner.Classic.png │ ├── COPYING.Lesser │ ├── Config │ │ └── config.psd1 │ ├── Frontend │ │ ├── v3 │ │ │ ├── AppDeployToolkit │ │ │ │ ├── AppDeployToolkitExtensions.ps1 │ │ │ │ ├── AppDeployToolkitMain.ps1 │ │ │ │ └── COPYING.Lesser │ │ │ └── Deploy-Application.exe │ │ └── v4 │ │ │ ├── Invoke-AppDeployToolkit.exe │ │ │ ├── Invoke-AppDeployToolkit.ps1 │ │ │ └── PSAppDeployToolkit.Extensions │ │ │ ├── PSAppDeployToolkit.Extensions.psd1 │ │ │ └── PSAppDeployToolkit.Extensions.psm1 │ ├── PSAppDeployToolkit.cer │ ├── PSAppDeployToolkit.psd1 │ ├── PSAppDeployToolkit.psm1 │ ├── Strings │ │ ├── ar │ │ │ └── strings.psd1 │ │ ├── bg │ │ │ └── strings.psd1 │ │ ├── cs │ │ │ └── strings.psd1 │ │ ├── cz │ │ │ └── strings.psd1 │ │ ├── da │ │ │ └── strings.psd1 │ │ ├── de │ │ │ └── strings.psd1 │ │ ├── el │ │ │ └── strings.psd1 │ │ ├── es │ │ │ └── strings.psd1 │ │ ├── fi │ │ │ └── strings.psd1 │ │ ├── fr │ │ │ └── strings.psd1 │ │ ├── he │ │ │ └── strings.psd1 │ │ ├── hu │ │ │ └── strings.psd1 │ │ ├── it │ │ │ └── strings.psd1 │ │ ├── ja │ │ │ └── strings.psd1 │ │ ├── ko │ │ │ └── strings.psd1 │ │ ├── lv │ │ │ └── strings.psd1 │ │ ├── nb │ │ │ └── strings.psd1 │ │ ├── nl │ │ │ └── strings.psd1 │ │ ├── pl │ │ │ └── strings.psd1 │ │ ├── pt-br │ │ │ └── strings.psd1 │ │ ├── pt │ │ │ └── strings.psd1 │ │ ├── ru │ │ │ └── strings.psd1 │ │ ├── sk │ │ │ └── strings.psd1 │ │ ├── strings.psd1 │ │ ├── sv │ │ │ └── strings.psd1 │ │ ├── tr │ │ │ └── strings.psd1 │ │ ├── zh-CN │ │ │ └── strings.psd1 │ │ ├── zh-HK │ │ │ └── strings.psd1 │ │ ├── zh-hans │ │ │ └── strings.psd1 │ │ └── zh-hant │ │ │ └── strings.psd1 │ └── lib │ │ ├── Newtonsoft.Json.dll │ │ ├── PSADT.ClientServer.Client.Launcher.exe │ │ ├── PSADT.ClientServer.Client.Launcher.exe.config │ │ ├── PSADT.ClientServer.Client.Launcher.pdb │ │ ├── PSADT.ClientServer.Client.exe │ │ ├── PSADT.ClientServer.Client.exe.config │ │ ├── PSADT.ClientServer.Client.pdb │ │ ├── PSADT.ClientServer.Server.dll │ │ ├── PSADT.ClientServer.Server.pdb │ │ ├── PSADT.UserInterface.dll │ │ ├── PSADT.UserInterface.pdb │ │ ├── PSADT.dll │ │ ├── PSADT.pdb │ │ ├── System.Buffers.dll │ │ ├── System.IO.FileSystem.AccessControl.dll │ │ ├── System.Memory.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Security.AccessControl.dll │ │ ├── System.Security.Permissions.dll │ │ ├── System.Security.Principal.Windows.dll │ │ ├── af-ZA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── am-ET │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ar-SA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── as-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── az-Latn-AZ │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── be-BY │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── bg-BG │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── bn-BD │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── bn-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── bs-Latn-BA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ca-ES │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ca-Es-VALENCIA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── cs-CZ │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── cs │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── cy-GB │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── da-DK │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── de-DE │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── de │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── el-GR │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── en-GB │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── es-ES │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── es-MX │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── es │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── et-EE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── eu-ES │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── fa-IR │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── fa │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── fi-FI │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── fil-PH │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── fr-CA │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── fr-FR │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── fr │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ga-IE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── gd-gb │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── gl-ES │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── gu-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ha-Latn-NG │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── he-IL │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── hi-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── hr-HR │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── hu-HU │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── hy-AM │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── iNKORE.UI.WPF.Modern.Controls.dll │ │ ├── iNKORE.UI.WPF.Modern.dll │ │ ├── iNKORE.UI.WPF.dll │ │ ├── id-ID │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── is-IS │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── it-IT │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── it │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ja-JP │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── ja │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ka-GE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── kk-KZ │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── km-KH │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── kn-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ko-KR │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── ko │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── kok-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── lb-LU │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── lo-LA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── lt-LT │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── lv-LV │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── mi-NZ │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── mk-MK │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ml-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── mr-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ms-MY │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── mt-MT │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── nb-NO │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ne-NP │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── nl-NL │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── nn-NO │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── or-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── pa-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── pl-PL │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── pl │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── pt-BR │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── pt-PT │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── quz-PE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ro-RO │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ru-RU │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── ru │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sk-SK │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sl-SI │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sq-AL │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sr-Cyrl-BA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sr-Cyrl-RS │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sr-Latn-RS │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sv-SE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── sw-KE │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ta-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── te-IN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── th-TH │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── tr-TR │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── tr │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── tt-RU │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ug-CN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── uk-UA │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── ur-PK │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── uz-Latn-UZ │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── vi-VN │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── zh-CN │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ │ ├── zh-Hans │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ ├── zh-Hant │ │ └── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── zh-TW │ │ ├── iNKORE.UI.WPF.Modern.Controls.resources.dll │ │ └── iNKORE.UI.WPF.Modern.resources.dll │ ├── Strings │ ├── ar │ │ └── strings.psd1 │ ├── bg │ │ └── strings.psd1 │ ├── cs │ │ └── strings.psd1 │ ├── cz │ │ └── strings.psd1 │ ├── da │ │ └── strings.psd1 │ ├── de │ │ └── strings.psd1 │ ├── el │ │ └── strings.psd1 │ ├── es │ │ └── strings.psd1 │ ├── fi │ │ └── strings.psd1 │ ├── fr │ │ └── strings.psd1 │ ├── he │ │ └── strings.psd1 │ ├── hu │ │ └── strings.psd1 │ ├── it │ │ └── strings.psd1 │ ├── ja │ │ └── strings.psd1 │ ├── ko │ │ └── strings.psd1 │ ├── lv │ │ └── strings.psd1 │ ├── nb │ │ └── strings.psd1 │ ├── nl │ │ └── strings.psd1 │ ├── pl │ │ └── strings.psd1 │ ├── pt-br │ │ └── strings.psd1 │ ├── pt │ │ └── strings.psd1 │ ├── ru │ │ └── strings.psd1 │ ├── sk │ │ └── strings.psd1 │ ├── strings.psd1 │ ├── sv │ │ └── strings.psd1 │ ├── tr │ │ └── strings.psd1 │ ├── zh-CN │ │ └── strings.psd1 │ ├── zh-HK │ │ └── strings.psd1 │ ├── zh-hans │ │ └── strings.psd1 │ └── zh-hant │ │ └── strings.psd1 │ └── SupportFiles │ └── Add Supporting Files Here.txt └── Web └── MonacoEditor ├── editor.html └── min └── vs ├── base ├── browser │ └── ui │ │ └── codicons │ │ └── codicon │ │ └── codicon.ttf └── worker │ └── workerMain.js ├── basic-languages ├── abap │ └── abap.js ├── apex │ └── apex.js ├── azcli │ └── azcli.js ├── bat │ └── bat.js ├── bicep │ └── bicep.js ├── cameligo │ └── cameligo.js ├── clojure │ └── clojure.js ├── coffee │ └── coffee.js ├── cpp │ └── cpp.js ├── csharp │ └── csharp.js ├── csp │ └── csp.js ├── css │ └── css.js ├── cypher │ └── cypher.js ├── dart │ └── dart.js ├── dockerfile │ └── dockerfile.js ├── ecl │ └── ecl.js ├── elixir │ └── elixir.js ├── flow9 │ └── flow9.js ├── freemarker2 │ └── freemarker2.js ├── fsharp │ └── fsharp.js ├── go │ └── go.js ├── graphql │ └── graphql.js ├── handlebars │ └── handlebars.js ├── hcl │ └── hcl.js ├── html │ └── html.js ├── ini │ └── ini.js ├── java │ └── java.js ├── javascript │ └── javascript.js ├── julia │ └── julia.js ├── kotlin │ └── kotlin.js ├── less │ └── less.js ├── lexon │ └── lexon.js ├── liquid │ └── liquid.js ├── lua │ └── lua.js ├── m3 │ └── m3.js ├── markdown │ └── markdown.js ├── mdx │ └── mdx.js ├── mips │ └── mips.js ├── msdax │ └── msdax.js ├── mysql │ └── mysql.js ├── objective-c │ └── objective-c.js ├── pascal │ └── pascal.js ├── pascaligo │ └── pascaligo.js ├── perl │ └── perl.js ├── pgsql │ └── pgsql.js ├── php │ └── php.js ├── pla │ └── pla.js ├── postiats │ └── postiats.js ├── powerquery │ └── powerquery.js ├── powershell │ └── powershell.js ├── protobuf │ └── protobuf.js ├── pug │ └── pug.js ├── python │ └── python.js ├── qsharp │ └── qsharp.js ├── r │ └── r.js ├── razor │ └── razor.js ├── redis │ └── redis.js ├── redshift │ └── redshift.js ├── restructuredtext │ └── restructuredtext.js ├── ruby │ └── ruby.js ├── rust │ └── rust.js ├── sb │ └── sb.js ├── scala │ └── scala.js ├── scheme │ └── scheme.js ├── scss │ └── scss.js ├── shell │ └── shell.js ├── solidity │ └── solidity.js ├── sophia │ └── sophia.js ├── sparql │ └── sparql.js ├── sql │ └── sql.js ├── st │ └── st.js ├── swift │ └── swift.js ├── systemverilog │ └── systemverilog.js ├── tcl │ └── tcl.js ├── twig │ └── twig.js ├── typescript │ └── typescript.js ├── typespec │ └── typespec.js ├── vb │ └── vb.js ├── wgsl │ └── wgsl.js ├── xml │ └── xml.js └── yaml │ └── yaml.js ├── editor ├── editor.main.css └── editor.main.js ├── language ├── css │ ├── cssMode.js │ └── cssWorker.js ├── html │ ├── htmlMode.js │ └── htmlWorker.js ├── json │ ├── jsonMode.js │ └── jsonWorker.js └── typescript │ ├── tsMode.js │ └── tsWorker.js ├── loader.js ├── nls.messages.de.js ├── nls.messages.es.js ├── nls.messages.fr.js ├── nls.messages.it.js ├── nls.messages.ja.js ├── nls.messages.ko.js ├── nls.messages.ru.js ├── nls.messages.zh-cn.js └── nls.messages.zh-tw.js /Databases/PSADT.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Databases/PSADT.sqlite -------------------------------------------------------------------------------- /DeploymentEditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/DeploymentEditor.exe -------------------------------------------------------------------------------- /Forms/LogReaderWindow.pbf: -------------------------------------------------------------------------------- 1 | ; Form Designer for PureBasic - 6.21 2 | ; Warning: this file uses a strict syntax, if you edit it, make sure to respect the Form Designer limitation or it won't be opened again. 3 | 4 | ; 5 | ; This code is automatically generated by the Form Designer. 6 | ; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled. 7 | ; Event procedures need to be put in another source file. 8 | ; 9 | 10 | Global LogReaderWindow 11 | 12 | 13 | Procedure OpenLogReaderWindow(x = 0, y = 0, width = 1000, height = 800) 14 | LogReaderWindow = OpenWindow(#PB_Any, x, y, width, height, "Software Log Reader", #PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget | #PB_Window_SizeGadget | #PB_Window_ScreenCentered) 15 | EndProcedure 16 | 17 | Procedure LogReaderWindow_Events(event) 18 | Select event 19 | Case #PB_Event_CloseWindow 20 | ProcedureReturn #False 21 | 22 | Case #PB_Event_Menu 23 | Select EventMenu() 24 | EndSelect 25 | 26 | Case #PB_Event_Gadget 27 | Select EventGadget() 28 | EndSelect 29 | EndSelect 30 | ProcedureReturn #True 31 | EndProcedure 32 | 33 | -------------------------------------------------------------------------------- /Forms/PluginWindow.pbf: -------------------------------------------------------------------------------- 1 | ; Form Designer for PureBasic - 6.21 2 | ; Warning: this file uses a strict syntax, if you edit it, make sure to respect the Form Designer limitation or it won't be opened again. 3 | 4 | ; 5 | ; This code is automatically generated by the Form Designer. 6 | ; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled. 7 | ; Event procedures need to be put in another source file. 8 | ; 9 | 10 | Global PluginWindow 11 | 12 | Global ListView_Plugins, Button_ClosePlugin, Button_RunPlugin, Frame_AboutPlugin, Text_PluginDetails 13 | 14 | Declare ClosePluginWindow(EventType) 15 | Declare RunPlugin(EventType) 16 | 17 | Procedure OpenPluginWindow(x = 0, y = 0, width = 600, height = 400) 18 | PluginWindow = OpenWindow(#PB_Any, x, y, width, height, "Plugins", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) 19 | ListView_Plugins = ListViewGadget(#PB_Any, 10, 10, 250, 380) 20 | Button_ClosePlugin = ButtonGadget(#PB_Any, 270, 356, 100, 35, "Close") 21 | Button_RunPlugin = ButtonGadget(#PB_Any, 380, 356, 210, 35, "Run Plugin") 22 | DisableGadget(Button_RunPlugin, 1) 23 | Frame_AboutPlugin = FrameGadget(#PB_Any, 270, 10, 320, 330, "Details") 24 | Text_PluginDetails = TextGadget(#PB_Any, 290, 40, 290, 290, "") 25 | EndProcedure 26 | 27 | Procedure PluginWindow_Events(event) 28 | Select event 29 | Case #PB_Event_CloseWindow 30 | ProcedureReturn #False 31 | 32 | Case #PB_Event_Menu 33 | Select EventMenu() 34 | EndSelect 35 | 36 | Case #PB_Event_Gadget 37 | Select EventGadget() 38 | Case Button_ClosePlugin 39 | ClosePluginWindow(EventType()) 40 | Case Button_RunPlugin 41 | RunPlugin(EventType()) 42 | EndSelect 43 | EndSelect 44 | ProcedureReturn #True 45 | EndProcedure 46 | 47 | -------------------------------------------------------------------------------- /Forms/ProgressWindow.pbf: -------------------------------------------------------------------------------- 1 | ; Form Designer for PureBasic - 6.21 2 | ; Warning: this file uses a strict syntax, if you edit it, make sure to respect the Form Designer limitation or it won't be opened again. 3 | 4 | ; 5 | ; This code is automatically generated by the Form Designer. 6 | ; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled. 7 | ; Event procedures need to be put in another source file. 8 | ; 9 | 10 | Global ProgressWindow 11 | 12 | Global Text_ProgressTitle, Container_0, Text_ProgressStatus 13 | 14 | 15 | Procedure OpenProgressWindow(x = 0, y = 0, width = 600, height = 200) 16 | ProgressWindow = OpenWindow(#PB_Any, x, y, width, height, "Deployment Editor - Progress", #PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_ScreenCentered) 17 | SetWindowColor(ProgressWindow, RGB(255,255,255)) 18 | Text_ProgressTitle = TextGadget(#PB_Any, 20, 20, 560, 25, "Task is running:") 19 | SetGadgetColor(Text_ProgressTitle, #PB_Gadget_FrontColor,RGB(0,64,128)) 20 | SetGadgetColor(Text_ProgressTitle, #PB_Gadget_BackColor,RGB(255,255,255)) 21 | Container_0 = ContainerGadget(#PB_Any, 0, 50, 600, 2) 22 | SetGadgetColor(Container_0, #PB_Gadget_BackColor,RGB(0,64,128)) 23 | CloseGadgetList() 24 | Text_ProgressStatus = TextGadget(#PB_Any, 20, 70, 560, 110, "Please wait...") 25 | SetGadgetColor(Text_ProgressStatus, #PB_Gadget_BackColor,RGB(255,255,255)) 26 | EndProcedure 27 | 28 | Procedure ProgressWindow_Events(event) 29 | Select event 30 | Case #PB_Event_CloseWindow 31 | ProcedureReturn #False 32 | 33 | Case #PB_Event_Menu 34 | Select EventMenu() 35 | EndSelect 36 | 37 | Case #PB_Event_Gadget 38 | Select EventGadget() 39 | EndSelect 40 | EndSelect 41 | ProcedureReturn #True 42 | EndProcedure 43 | 44 | -------------------------------------------------------------------------------- /Forms/RunRemoteWindow.pbf: -------------------------------------------------------------------------------- 1 | ; Form Designer for PureBasic - 6.21 2 | ; Warning: this file uses a strict syntax, if you edit it, make sure to respect the Form Designer limitation or it won't be opened again. 3 | 4 | ; 5 | ; This code is automatically generated by the Form Designer. 6 | ; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled. 7 | ; Event procedures need to be put in another source file. 8 | ; 9 | 10 | Global RunRemoteWindow 11 | 12 | 13 | Procedure OpenRunRemoteWindow(x = 0, y = 0, width = 600, height = 400) 14 | RunRemoteWindow = OpenWindow(#PB_Any, x, y, width, height, "Run on Remote Machine", #PB_Window_SystemMenu | #PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget | #PB_Window_SizeGadget | #PB_Window_ScreenCentered) 15 | EndProcedure 16 | 17 | Procedure RunRemoteWindow_Events(event) 18 | Select event 19 | Case #PB_Event_CloseWindow 20 | ProcedureReturn #False 21 | 22 | Case #PB_Event_Menu 23 | Select EventMenu() 24 | EndSelect 25 | 26 | Case #PB_Event_Gadget 27 | Select EventGadget() 28 | EndSelect 29 | EndSelect 30 | ProcedureReturn #True 31 | EndProcedure 32 | 33 | -------------------------------------------------------------------------------- /Forms/ScriptEditorWindow.pbf: -------------------------------------------------------------------------------- 1 | ; Form Designer for PureBasic - 6.21 2 | ; Warning: this file uses a strict syntax, if you edit it, make sure to respect the Form Designer limitation or it won't be opened again. 3 | 4 | ; 5 | ; This code is automatically generated by the Form Designer. 6 | ; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled. 7 | ; Event procedures need to be put in another source file. 8 | ; 9 | 10 | Global ScriptEditorWindow 11 | 12 | Global WebView_ScriptEditor 13 | 14 | Declare ResizeGadgetsScriptEditorWindow() 15 | 16 | 17 | Procedure OpenScriptEditorWindow(x = 0, y = 0, width = 900, height = 600) 18 | ScriptEditorWindow = OpenWindow(#PB_Any, x, y, width, height, "Script Editor", #PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget | #PB_Window_SizeGadget | #PB_Window_Invisible | #PB_Window_ScreenCentered) 19 | HideWindow(ScriptEditorWindow, 1) 20 | SetWindowColor(ScriptEditorWindow, RGB(255,255,255)) 21 | WebView_ScriptEditor = WebViewGadget(#PB_Any, 0, 0, 900, 600) 22 | EndProcedure 23 | 24 | Procedure ResizeGadgetsScriptEditorWindow() 25 | Protected FormWindowWidth, FormWindowHeight 26 | FormWindowWidth = WindowWidth(ScriptEditorWindow) 27 | FormWindowHeight = WindowHeight(ScriptEditorWindow) 28 | ResizeGadget(WebView_ScriptEditor, 0, 0, FormWindowWidth - 0, FormWindowHeight - 0) 29 | EndProcedure 30 | 31 | Procedure ScriptEditorWindow_Events(event) 32 | Select event 33 | Case #PB_Event_SizeWindow 34 | ResizeGadgetsScriptEditorWindow() 35 | Case #PB_Event_CloseWindow 36 | ProcedureReturn #False 37 | 38 | Case #PB_Event_Menu 39 | Select EventMenu() 40 | EndSelect 41 | 42 | Case #PB_Event_Gadget 43 | Select EventGadget() 44 | EndSelect 45 | EndSelect 46 | ProcedureReturn #True 47 | EndProcedure 48 | 49 | -------------------------------------------------------------------------------- /Forms/WinGetImportWindow.pbf: -------------------------------------------------------------------------------- 1 | ; Form Designer for PureBasic - 6.21 2 | ; Warning: this file uses a strict syntax, if you edit it, make sure to respect the Form Designer limitation or it won't be opened again. 3 | 4 | ; 5 | ; This code is automatically generated by the Form Designer. 6 | ; Manual modification is possible to adjust existing commands, but anything else will be dropped when the code is compiled. 7 | ; Event procedures need to be put in another source file. 8 | ; 9 | 10 | Global WinGetImportWindow 11 | 12 | Global String_WinGetPackageSearch, ButtonImage_WinGetSearch, WinGetImport_ListIcon, Combo_TargetArchitecture, Button_CreateWinGetProject, Text_WinGetStatus, Text_TargetArchitecture, Text_WinGetStatus_Title 13 | 14 | Global Img_WinGetImportWindow_0 15 | 16 | UsePNGImageDecoder() 17 | 18 | Img_WinGetImportWindow_0 = CatchImage(#PB_Any,?Img_WinGetImportWindow_0) 19 | 20 | Declare CreateWinGetProject(EventType) 21 | Declare SearchWinGetPackage(EventType) 22 | 23 | Procedure OpenWinGetImportWindow(x = 0, y = 0, width = 800, height = 600) 24 | WinGetImportWindow = OpenWindow(#PB_Any, x, y, width, height, "Import WinGet Package", #PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_ScreenCentered) 25 | String_WinGetPackageSearch = StringGadget(#PB_Any, 20, 20, 700, 40, "") 26 | ButtonImage_WinGetSearch = ButtonImageGadget(#PB_Any, 735, 20, 44, 40, ImageID(Img_WinGetImportWindow_0)) 27 | WinGetImport_ListIcon = ListIconGadget(#PB_Any, 20, 70, 760, 440, "Package ID", 300, #PB_ListIcon_GridLines | #PB_ListIcon_FullRowSelect | #PB_ListIcon_AlwaysShowSelection) 28 | AddGadgetColumn(WinGetImport_ListIcon, 1, "Version", 100) 29 | AddGadgetColumn(WinGetImport_ListIcon, 2, "Scope", 100) 30 | AddGadgetColumn(WinGetImport_ListIcon, 3, "Release Date", 100) 31 | AddGadgetColumn(WinGetImport_ListIcon, 4, "File", 100) 32 | Combo_TargetArchitecture = ComboBoxGadget(#PB_Any, 520, 555, 100, 25) 33 | AddGadgetItem(Combo_TargetArchitecture, -1, "x64", 0, 1) 34 | AddGadgetItem(Combo_TargetArchitecture, -1, "x86") 35 | Button_CreateWinGetProject = ButtonGadget(#PB_Any, 640, 550, 140, 35, "Create New Project") 36 | Text_WinGetStatus = TextGadget(#PB_Any, 20, 560, 480, 25, "Enter the package ID and click on the search button") 37 | SetGadgetColor(Text_WinGetStatus, #PB_Gadget_FrontColor,RGB(128,128,128)) 38 | Text_TargetArchitecture = TextGadget(#PB_Any, 520, 530, 100, 25, "Architecture:") 39 | Text_WinGetStatus_Title = TextGadget(#PB_Any, 20, 530, 100, 25, "Status:") 40 | SetGadgetColor(Text_WinGetStatus_Title, #PB_Gadget_FrontColor,RGB(128,128,128)) 41 | EndProcedure 42 | 43 | Procedure WinGetImportWindow_Events(event) 44 | Select event 45 | Case #PB_Event_CloseWindow 46 | ProcedureReturn #False 47 | 48 | Case #PB_Event_Menu 49 | Select EventMenu() 50 | EndSelect 51 | 52 | Case #PB_Event_Gadget 53 | Select EventGadget() 54 | Case ButtonImage_WinGetSearch 55 | SearchWinGetPackage(EventType()) 56 | Case Button_CreateWinGetProject 57 | CreateWinGetProject(EventType()) 58 | EndSelect 59 | EndSelect 60 | ProcedureReturn #True 61 | EndProcedure 62 | 63 | 64 | 65 | DataSection 66 | Img_WinGetImportWindow_0: : IncludeBinary "..\Ressources\Icon_Search.png" 67 | EndDataSection 68 | -------------------------------------------------------------------------------- /Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Icon.ico -------------------------------------------------------------------------------- /Plugins/Enabled-CompanyBranding/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Plugins/Enabled-CompanyBranding/Assets/AppIcon.png -------------------------------------------------------------------------------- /Plugins/Enabled-CompanyBranding/Assets/Banner.Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Plugins/Enabled-CompanyBranding/Assets/Banner.Classic.png -------------------------------------------------------------------------------- /Plugins/Enabled-CompanyBranding/CompanyBranding.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | Company Branding Plugin 3 | #> 4 | 5 | param( 6 | [Parameter(Mandatory = $true)] 7 | [string]$ProjectPath 8 | ) 9 | 10 | try { 11 | Copy-Item -Path "$PSScriptRoot\Assets" -Destination "$ProjectPath" -Recurse -Force 12 | Write-Host "Successfully copied branded corporate assets into the PSADT project!" 13 | Pause 14 | } 15 | catch { 16 | throw 17 | } 18 | finally { 19 | } 20 | -------------------------------------------------------------------------------- /Plugins/Enabled-CompanyBranding/Plugin.ini: -------------------------------------------------------------------------------- 1 | ; Plugin for Deployment Editor 2 | 3 | [Details] 4 | Name = Company Branding 5 | Version = 1.0 6 | Date = 2025/01/15 7 | Description = This plugin replaces the default PSADT assets with your own. 8 | Author = TUGI 9 | Website = https://www.tugi.ch 10 | 11 | [Script] 12 | File = CompanyBranding.ps1 13 | -------------------------------------------------------------------------------- /Plugins/Enabled-HelloWorld/HelloWorld.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | Hello World Plugin 3 | #> 4 | 5 | param( 6 | [Parameter(Mandatory = $true)] 7 | [string]$ProjectPath 8 | ) 9 | 10 | try { 11 | Write-Host "Hello world!" 12 | Write-Host "The project path is: $ProjectPath" 13 | Pause 14 | } 15 | catch { 16 | throw 17 | } 18 | finally { 19 | } 20 | -------------------------------------------------------------------------------- /Plugins/Enabled-HelloWorld/Plugin.ini: -------------------------------------------------------------------------------- 1 | ; Plugin for Deployment Editor 2 | 3 | [Details] 4 | Name = Hello World! 5 | Version = 1.0 6 | Date = 2025/01/15 7 | Description = This plugin provides simple hello world. 8 | Author = TUGI 9 | Website = https://www.tugi.ch 10 | 11 | [Script] 12 | File = HelloWorld.ps1 13 | -------------------------------------------------------------------------------- /Plugins/Enabled-Install_PSAppDeployToolkit/Install-PSAppDeployToolkit.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | Install PSAppDeployToolkit Plugin 3 | #> 4 | 5 | param( 6 | [Parameter(Mandatory = $true)] 7 | [string]$ProjectPath 8 | ) 9 | 10 | try { 11 | Install-Module -Name PSAppDeployToolkit 12 | Write-Host "Successfully installed PSAppDeployToolkit module!" 13 | Pause 14 | } 15 | catch { 16 | throw 17 | } 18 | finally { 19 | } 20 | -------------------------------------------------------------------------------- /Plugins/Enabled-Install_PSAppDeployToolkit/Plugin.ini: -------------------------------------------------------------------------------- 1 | ; Plugin for Deployment Editor 2 | 3 | [Details] 4 | Name = Install PSAppDeployToolkit Module 5 | Version = 1.0 6 | Date = 2025/01/15 7 | Description = This plugin helps you install the PSAppDeployToolkit module from the PowerShell Gallery. 8 | Author = TUGI 9 | Website = https://www.tugi.ch 10 | 11 | [Script] 12 | File = Install-PSAppDeployToolkit.ps1 13 | -------------------------------------------------------------------------------- /Ressources/Animation_Loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Animation_Loading.gif -------------------------------------------------------------------------------- /Ressources/Icon_ArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_ArrowDown.png -------------------------------------------------------------------------------- /Ressources/Icon_ArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_ArrowUp.png -------------------------------------------------------------------------------- /Ressources/Icon_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Check.png -------------------------------------------------------------------------------- /Ressources/Icon_Check_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Check_24px.png -------------------------------------------------------------------------------- /Ressources/Icon_Database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Database.png -------------------------------------------------------------------------------- /Ressources/Icon_Disabled_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Disabled_24px.png -------------------------------------------------------------------------------- /Ressources/Icon_Dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Dot.png -------------------------------------------------------------------------------- /Ressources/Icon_EXE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_EXE.png -------------------------------------------------------------------------------- /Ressources/Icon_EXE_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_EXE_32px.png -------------------------------------------------------------------------------- /Ressources/Icon_Exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Exclamation.png -------------------------------------------------------------------------------- /Ressources/Icon_Exclamation_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Exclamation_24px.png -------------------------------------------------------------------------------- /Ressources/Icon_Executable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Executable.png -------------------------------------------------------------------------------- /Ressources/Icon_Go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Go.png -------------------------------------------------------------------------------- /Ressources/Icon_Go_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Go_48px.png -------------------------------------------------------------------------------- /Ressources/Icon_Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Help.png -------------------------------------------------------------------------------- /Ressources/Icon_If_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_If_24px.png -------------------------------------------------------------------------------- /Ressources/Icon_Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Info.png -------------------------------------------------------------------------------- /Ressources/Icon_Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Information.png -------------------------------------------------------------------------------- /Ressources/Icon_Installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Installer.png -------------------------------------------------------------------------------- /Ressources/Icon_MSI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_MSI.png -------------------------------------------------------------------------------- /Ressources/Icon_Package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Package.png -------------------------------------------------------------------------------- /Ressources/Icon_Package_128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Package_128px.png -------------------------------------------------------------------------------- /Ressources/Icon_Package_512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Package_512px.png -------------------------------------------------------------------------------- /Ressources/Icon_Package_512px_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Package_512px_White.png -------------------------------------------------------------------------------- /Ressources/Icon_Package_80px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Package_80px.png -------------------------------------------------------------------------------- /Ressources/Icon_Plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Plugin.png -------------------------------------------------------------------------------- /Ressources/Icon_PowerShell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_PowerShell.png -------------------------------------------------------------------------------- /Ressources/Icon_PowerShell_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_PowerShell_24px.png -------------------------------------------------------------------------------- /Ressources/Icon_Repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Repair.png -------------------------------------------------------------------------------- /Ressources/Icon_Rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Rocket.png -------------------------------------------------------------------------------- /Ressources/Icon_Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Search.png -------------------------------------------------------------------------------- /Ressources/Icon_Uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/Icon_Uninstall.png -------------------------------------------------------------------------------- /Ressources/PSADT Branding.free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Ressources/PSADT Branding.free -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Screenshot.png -------------------------------------------------------------------------------- /Scripts/PSADT.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Scripts/PSADT.sqlite -------------------------------------------------------------------------------- /Scripts/PSADT4-ExportCommandsAndParameters.ps1: -------------------------------------------------------------------------------- 1 | # Specify the module name 2 | $ModuleName = "PSAppDeployToolkit" 3 | 4 | # Import the module (optional if it's already loaded) 5 | Import-Module $ModuleName -ErrorAction Stop 6 | 7 | # Get all commands from the module 8 | $Commands = Get-Command -Module $ModuleName 9 | 10 | # Prepare lists to store command and parameter details 11 | $CommandList = @() 12 | $ParameterList = @() 13 | $CommandId = 1 14 | 15 | foreach ($CommandItem in $Commands) { 16 | # Get the command description and flatten it to a single line 17 | $Description = ((Get-Help $CommandItem.Name -ErrorAction SilentlyContinue).Description | Out-String).Trim() -replace '\s+', ' ' 18 | 19 | # Add command to the CommandList with an ID and description 20 | $CommandList += [PSCustomObject]@{ 21 | ID = $CommandId 22 | CommandName = $CommandItem.Name 23 | Description = $Description.Trim() 24 | } 25 | 26 | # Get the parameters of the command 27 | $CommandParameters = (Get-Command $CommandItem.Name).Parameters 28 | foreach ($ParamName in $CommandParameters.Keys) { 29 | $Parameter = $CommandParameters[$ParamName] 30 | 31 | # Extract the simplified ParameterType 32 | $ParameterType = $Parameter.ParameterType.Name 33 | 34 | # Determine if the parameter is required (1 for required, 0 for not required) 35 | $IsRequired = if ($Parameter.Attributes | Where-Object { $_ -is [System.Management.Automation.ParameterAttribute] -and $_.Mandatory }) { 1 } else { 0 } 36 | 37 | # Get parameter description from Get-Help if available 38 | $ParameterHelp = (Get-Help $CommandItem.Name -ErrorAction SilentlyContinue).Parameters.Parameter | Where-Object { $_.Name -eq $ParamName } 39 | $ParameterDescription = ($ParameterHelp.Description | Out-String).replace("`n"," ").replace("`r"," ") 40 | 41 | # Fallback if no description is available 42 | if (-not $ParameterDescription) { 43 | $ParameterDescription = "No description available." 44 | } 45 | 46 | # Add each parameter to the ParameterList with the associated CommandId 47 | $ParameterList += [PSCustomObject]@{ 48 | CommandID = $CommandId 49 | ParameterName = $Parameter.Name 50 | ParameterType = $ParameterType 51 | IsRequired = $IsRequired 52 | Description = $ParameterDescription.Trim() 53 | } 54 | } 55 | 56 | # Increment CommandId for the next command 57 | $CommandId++ 58 | } 59 | 60 | # Export the lists to CSV files 61 | $CommandsCsvPath = "PSADT4_Commands.csv" 62 | $ParametersCsvPath = "PSADT4_Parameters.csv" 63 | 64 | $CommandList | Export-Csv -Path $CommandsCsvPath -NoTypeInformation 65 | $ParameterList | Export-Csv -Path $ParametersCsvPath -NoTypeInformation 66 | 67 | Write-Host "Commands exported to $CommandsCsvPath" 68 | Write-Host "Parameters exported to $ParametersCsvPath" 69 | -------------------------------------------------------------------------------- /Scripts/PSADT4-HelpConsole.ps1: -------------------------------------------------------------------------------- 1 | if (Get-Module -ListAvailable -Name PSAppDeployToolkit) { 2 | Import-Module "PSAppDeployToolkit" 3 | 4 | try { 5 | Show-ADTHelpConsole 6 | } 7 | catch { 8 | throw 9 | } 10 | finally { 11 | } 12 | } 13 | else { 14 | Write-Host "The PSAppDeployToolkit is not installed. Please install it from the PowerShell Gallery first: https://www.powershellgallery.com/packages/PSAppDeployToolkit" 15 | Pause 16 | } 17 | -------------------------------------------------------------------------------- /Scripts/Read-Msi.ps1: -------------------------------------------------------------------------------- 1 | Param($FilePath) 2 | Set-ExecutionPolicy ByPass -Scope CurrentUser 3 | 4 | Function Get-MsiDatabaseProperties2() 5 | { 6 | <# 7 | .SYNOPSIS 8 | This function retrieves properties from a Windows Installer MSI database. 9 | .DESCRIPTION 10 | This function uses the WindowInstaller COM object to pull all values from the Property table from a MSI 11 | .EXAMPLE 12 | Get-MsiDatabaseProperties 'MSI_PATH' 13 | .PARAMETER FilePath 14 | The path to the MSI you'd like to query 15 | #> 16 | [CmdletBinding()] 17 | param ( 18 | [Parameter(Mandatory=$True, 19 | ValueFromPipeline=$True, 20 | ValueFromPipelineByPropertyName=$True, 21 | HelpMessage='What is the path of the MSI you would like to query?')] 22 | [IO.FileInfo[]]$FilePath 23 | ) 24 | 25 | begin { 26 | $com_object = New-Object -com WindowsInstaller.Installer 27 | } 28 | 29 | process { 30 | try { 31 | 32 | $database = $com_object.GetType().InvokeMember( 33 | "OpenDatabase", 34 | "InvokeMethod", 35 | $Null, 36 | $com_object, 37 | @($FilePath.FullName, 0) 38 | ) 39 | 40 | $query = "SELECT * FROM Property" 41 | $View = $database.GetType().InvokeMember( 42 | "OpenView", 43 | "InvokeMethod", 44 | $Null, 45 | $database, 46 | ($query) 47 | ) 48 | 49 | $View.GetType().InvokeMember("Execute", "InvokeMethod", $Null, $View, $Null) 50 | 51 | $record = $View.GetType().InvokeMember( 52 | "Fetch", 53 | "InvokeMethod", 54 | $Null, 55 | $View, 56 | $Null 57 | ) 58 | 59 | $msi_props = @{} 60 | while ($record -ne $null) { 61 | $prop_name = $record.GetType().InvokeMember("StringData", "GetProperty", $Null, $record, 1) 62 | $prop_value = $record.GetType().InvokeMember("StringData", "GetProperty", $Null, $record, 2) 63 | $msi_props[$prop_name] = $prop_value 64 | $record = $View.GetType().InvokeMember( 65 | "Fetch", 66 | "InvokeMethod", 67 | $Null, 68 | $View, 69 | $Null 70 | ) 71 | } 72 | 73 | $msi_props 74 | 75 | } catch { 76 | throw "Failed to get MSI file version the error was: {0}." -f $_ 77 | } 78 | } 79 | } 80 | 81 | 82 | try { 83 | $Properties = Get-MsiDatabaseProperties2 $FilePath 84 | 85 | Write-Host "Productmanufacturer:"$Properties.Manufacturer 86 | Write-Host "Productname:"$Properties.ProductName 87 | Write-Host "Productcode:"$Properties.ProductCode 88 | Write-Host "Productversion:"$Properties.ProductVersion 89 | 90 | Exit 0 91 | } catch { 92 | Write-Host "MSI information extraction failed. Please check if PowerShell is allowed and if the file path is correctly defined." 93 | Exit 1 94 | } 95 | -------------------------------------------------------------------------------- /Snippets/HelloWorld.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hi, welcome to the Deployment Editor!" -------------------------------------------------------------------------------- /Snippets/HelloWorld_MultipleLines.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hi, welcome to the Deployment Editor!" 2 | Write-Host "Hi, welcome to the Deployment Editor!" 3 | Write-Host "Hi, welcome to the Deployment Editor!" 4 | Write-Host "Hi, welcome to the Deployment Editor!" 5 | Write-Host "Hi, welcome to the Deployment Editor!" 6 | Write-Host "Hi, welcome to the Deployment Editor!" 7 | Write-Host "Hi, welcome to the Deployment Editor!" 8 | Write-Host "Hi, welcome to the Deployment Editor!" 9 | Write-Host "Hi, welcome to the Deployment Editor!" 10 | Write-Host "Hi, welcome to the Deployment Editor!" -------------------------------------------------------------------------------- /Templates/Invoke-AppDeployToolkit.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Templates/Invoke-AppDeployToolkit.db -------------------------------------------------------------------------------- /Templates/Windows Sandbox.wsb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(ProjectPath) 5 | C:\Packaging 6 | true 7 | 8 | 9 | 10 | C:\Packaging\Invoke-AppDeployToolkit.exe 11 | 12 | -------------------------------------------------------------------------------- /Test/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/Assets/AppIcon.png -------------------------------------------------------------------------------- /Test/Assets/Banner.Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/Assets/Banner.Classic.png -------------------------------------------------------------------------------- /Test/Files/Add Setup Files Here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/Files/Add Setup Files Here.txt -------------------------------------------------------------------------------- /Test/Files/Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/Files/Installer.exe -------------------------------------------------------------------------------- /Test/Invoke-AppDeployToolkit.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/Invoke-AppDeployToolkit.db -------------------------------------------------------------------------------- /Test/Invoke-AppDeployToolkit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/Invoke-AppDeployToolkit.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit.Extensions/PSAppDeployToolkit.Extensions.psm1: -------------------------------------------------------------------------------- 1 | <# 2 | 3 | .SYNOPSIS 4 | PSAppDeployToolkit.Extensions - Provides the ability to extend and customize the toolkit by adding your own functions that can be re-used. 5 | 6 | .DESCRIPTION 7 | This module is a template that allows you to extend the toolkit with your own custom functions. 8 | 9 | This module is imported by the Invoke-AppDeployToolkit.ps1 script which is used when installing or uninstalling an application. 10 | 11 | #> 12 | 13 | ##*=============================================== 14 | ##* MARK: MODULE GLOBAL SETUP 15 | ##*=============================================== 16 | 17 | # Set strict error handling across entire module. 18 | $ErrorActionPreference = [System.Management.Automation.ActionPreference]::Stop 19 | $ProgressPreference = [System.Management.Automation.ActionPreference]::SilentlyContinue 20 | Set-StrictMode -Version 1 21 | 22 | 23 | ##*=============================================== 24 | ##* MARK: FUNCTION LISTINGS 25 | ##*=============================================== 26 | 27 | function New-ADTExampleFunction 28 | { 29 | <# 30 | .SYNOPSIS 31 | Basis for a new PSAppDeployToolkit extension function. 32 | 33 | .DESCRIPTION 34 | This function serves as the basis for a new PSAppDeployToolkit extension function. 35 | 36 | .INPUTS 37 | None 38 | 39 | You cannot pipe objects to this function. 40 | 41 | .OUTPUTS 42 | None 43 | 44 | This function does not return any output. 45 | 46 | .EXAMPLE 47 | New-ADTExampleFunction 48 | 49 | Invokes the New-ADTExampleFunction function and returns any output. 50 | #> 51 | 52 | [CmdletBinding()] 53 | param 54 | ( 55 | ) 56 | 57 | begin 58 | { 59 | # Initialize function. 60 | Initialize-ADTFunction -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState 61 | } 62 | 63 | process 64 | { 65 | try 66 | { 67 | try 68 | { 69 | } 70 | catch 71 | { 72 | # Re-writing the ErrorRecord with Write-Error ensures the correct PositionMessage is used. 73 | Write-Error -ErrorRecord $_ 74 | } 75 | } 76 | catch 77 | { 78 | # Process the caught error, log it and throw depending on the specified ErrorAction. 79 | Invoke-ADTFunctionErrorHandler -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState -ErrorRecord $_ 80 | } 81 | } 82 | 83 | end 84 | { 85 | # Finalize function. 86 | Complete-ADTFunction -Cmdlet $PSCmdlet 87 | } 88 | } 89 | 90 | 91 | ##*=============================================== 92 | ##* MARK: SCRIPT BODY 93 | ##*=============================================== 94 | 95 | # Announce successful importation of module. 96 | Write-ADTLogEntry -Message "Module [$($MyInvocation.MyCommand.ScriptBlock.Module.Name)] imported successfully." -ScriptSection Initialization 97 | -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/!README.txt: -------------------------------------------------------------------------------- 1 | The content within this folder is digitally signed and modification of any config, string, script, or any other file, is not supported by the PSAppDeployToolkit team. 2 | 3 | To create a new deployment, which will include config and script directories you can modify, please refer to https://psappdeploytoolkit.com/docs/getting-started/creating-a-new-deployment. 4 | 5 | To review the directory structure to see where the config, string, or asset files are that you can modify to suit your environment, please refer to https://psappdeploytoolkit.com/docs/deployment-concepts/deployment-structure. 6 | -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/Assets/AppIcon.png -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/Assets/Banner.Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/Assets/Banner.Classic.png -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/Frontend/v3/Deploy-Application.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/Frontend/v3/Deploy-Application.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/Frontend/v4/Invoke-AppDeployToolkit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/Frontend/v4/Invoke-AppDeployToolkit.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/PSAppDeployToolkit.cer: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIIHSTCCBTGgAwIBAgIQCvlbtr6iDIUOmMb7jqwI+TANBgkqhkiG9w0BAQsFADBp 3 | MQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xQTA/BgNVBAMT 4 | OERpZ2lDZXJ0IFRydXN0ZWQgRzQgQ29kZSBTaWduaW5nIFJTQTQwOTYgU0hBMzg0 5 | IDIwMjEgQ0ExMB4XDTI0MDkwNTAwMDAwMFoXDTI3MDkwNzIzNTk1OVowgdExEzAR 6 | BgsrBgEEAYI3PAIBAxMCVVMxGTAXBgsrBgEEAYI3PAIBAhMIQ29sb3JhZG8xHTAb 7 | BgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRQwEgYDVQQFEwsyMDEzMTYzODMy 8 | NzELMAkGA1UEBhMCVVMxETAPBgNVBAgTCENvbG9yYWRvMRQwEgYDVQQHEwtDYXN0 9 | bGUgUm9jazEZMBcGA1UEChMQUGF0Y2ggTXkgUEMsIExMQzEZMBcGA1UEAxMQUGF0 10 | Y2ggTXkgUEMsIExMQzCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBALsn 11 | cZKNh65erADSVI33cqSj+tKgR+RJIX2kUAJ5/nt74NnlXG4hFiI5azGM7ytrIDjA 12 | W8Bnm6gFEZBZlAig3RsXMSnrl3Wlzx1jysHNlo2AhWo61+h6H4osDczgnS+lRODw 13 | 0IT0Ue0iHTTRUq8eQuGQzdU+jh/snV+xEBfPjQVDR0WxFXZfofR+QHscet2n2vM7 14 | t4Pxl5bslym2/iR7YDSWlIBbhTkU8cNUzuqh/kuh66aX/UHABZruMRrZHNhUoYL9 15 | DYFjDRg2aia/6PbKidrXWmRw8q+h/D72PHoKFLIRe3HIBGLRBHQfUkUfJlUIpNcO 16 | aBk4w1ox4/vI4E6c5XrUcsKbZP5vD3oVQTfJ7aqEnbyy3LkFc5rjy8zf4rioebGX 17 | lr6jzjQKXBJ2XDjaV3m8olD5xHj6+a2QFO4TIzMNmT50JTHGxr7YD9qou5tn95lx 18 | WMVo5SgsWgKWB3qkhXlgvMzOzmC9h5WfhriuFxvIylROrFklvVpP3ZtLyW2rLwID 19 | AQABo4ICAjCCAf4wHwYDVR0jBBgwFoAUaDfg67Y7+F8Rhvv+YXsIiGX0TkIwHQYD 20 | VR0OBBYEFORglN0hKniG4YWPXslNC3EyO+V/MD0GA1UdIAQ2MDQwMgYFZ4EMAQMw 21 | KTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5jb20vQ1BTMA4GA1Ud 22 | DwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDAzCBtQYDVR0fBIGtMIGqMFOg 23 | UaBPhk1odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkRzRD 24 | b2RlU2lnbmluZ1JTQTQwOTZTSEEzODQyMDIxQ0ExLmNybDBToFGgT4ZNaHR0cDov 25 | L2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZEc0Q29kZVNpZ25pbmdS 26 | U0E0MDk2U0hBMzg0MjAyMUNBMS5jcmwwgZQGCCsGAQUFBwEBBIGHMIGEMCQGCCsG 27 | AQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wXAYIKwYBBQUHMAKGUGh0 28 | dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNENvZGVT 29 | aWduaW5nUlNBNDA5NlNIQTM4NDIwMjFDQTEuY3J0MAkGA1UdEwQCMAAwDQYJKoZI 30 | hvcNAQELBQADggIBAKgNLm/4pTIHSLzIgXlgaIjMXuTiG5TmxiO5XpnD9lhKmhAE 31 | ltdf8FcCVOt2cIbZEGjVOK143+n6suaTlM6UF4GI0mjuA/wDjCSh5cqcbJRamf3W 32 | KXLntsRNx+5ZjuCj3/FcV7hSFKoy3rVPpJIe6P0OdkWm1QLjqzxSpzm4sctRyMdP 33 | +Rfkbj/cYapg23zO5ec1AHLjggpGO27riJxLIqfQWV1IlW/CuWz0fUZOw6GreBUJ 34 | je9sY2pHBGTjFP74NGYFWvJ8ZAV7VbI8W7K/mzg59HHXRytUB1opfz5qQDZMTex/ 35 | LXQgGfG08yL77ncUi57e7LG20A5AMjcNG7Qx/jCr/5flXGMkB+dWecU/Q7xwphHe 36 | ++G6GZD9hn0xb5+/4CEhI03TrlBrLXa4EsINcyT6oCu81sSuPMQu2sKWt4MDrPaZ 37 | 8oqhxt68fOP0h1IgC9pZJY7A93qZkcbFnmYWTWPd8RKUB3vSwb6P7eFUY2c6lM/q 38 | XxDD6nl/4OfpqW+GqemZjSbgGCRZlNCyJAi0DfZil4tSJfVlOon5972LrRjEi/wX 39 | Xlj/u3zOzGS4jvtQSLAXUpleqWVUty0QQMt8CJW1i+vZr8iwjyEO8+HbX7s8At+h 40 | PZNr4c3og0PpNXRSQ0ncUw3rbHJNBbg9aL4YrtnGi+AXRbAlrFzyzMr7ujpW 41 | -----END CERTIFICATE----- 42 | -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.Launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.Launcher.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.Launcher.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.Launcher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.Launcher.pdb -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.exe -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.pdb -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Server.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/PSADT.ClientServer.Server.pdb -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.UserInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/PSADT.UserInterface.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.UserInterface.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/PSADT.UserInterface.pdb -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/PSADT.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/PSADT.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/PSADT.pdb -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/System.Buffers.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/System.IO.FileSystem.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/System.IO.FileSystem.AccessControl.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/System.Memory.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/System.Security.Permissions.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/af-ZA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/af-ZA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/am-ET/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/am-ET/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ar-SA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ar-SA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/as-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/as-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/az-Latn-AZ/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/az-Latn-AZ/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/be-BY/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/be-BY/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/bg-BG/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/bg-BG/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/bn-BD/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/bn-BD/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/bn-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/bn-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/bs-Latn-BA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/bs-Latn-BA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ca-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ca-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ca-Es-VALENCIA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ca-Es-VALENCIA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/cs-CZ/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/cs-CZ/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/cs-CZ/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/cs-CZ/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/cs/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/cs/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/cy-GB/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/cy-GB/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/da-DK/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/da-DK/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/de-DE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/de-DE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/de-DE/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/de-DE/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/de/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/de/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/el-GR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/el-GR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/en-GB/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/en-GB/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/es-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/es-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/es-ES/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/es-ES/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/es-MX/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/es-MX/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/es-MX/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/es-MX/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/es/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/es/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/et-EE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/et-EE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/eu-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/eu-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/fa-IR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/fa-IR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/fa-IR/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/fa-IR/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/fa/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/fa/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/fi-FI/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/fi-FI/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/fil-PH/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/fil-PH/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/fr-CA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/fr-CA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/fr-CA/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/fr-CA/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/fr-FR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/fr-FR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/fr-FR/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/fr-FR/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/fr/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/fr/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ga-IE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ga-IE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/gd-gb/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/gd-gb/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/gl-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/gl-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/gu-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/gu-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ha-Latn-NG/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ha-Latn-NG/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/he-IL/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/he-IL/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/hi-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/hi-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/hr-HR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/hr-HR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/hu-HU/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/hu-HU/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/hy-AM/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/hy-AM/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/iNKORE.UI.WPF.Modern.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/iNKORE.UI.WPF.Modern.Controls.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/iNKORE.UI.WPF.Modern.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/iNKORE.UI.WPF.Modern.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/iNKORE.UI.WPF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/iNKORE.UI.WPF.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/id-ID/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/id-ID/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/is-IS/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/is-IS/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/it-IT/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/it-IT/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/it-IT/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/it-IT/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/it/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/it/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ja-JP/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ja-JP/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ja-JP/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ja-JP/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ja/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ja/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ka-GE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ka-GE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/kk-KZ/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/kk-KZ/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/km-KH/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/km-KH/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/kn-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/kn-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ko-KR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ko-KR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ko-KR/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ko-KR/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ko/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ko/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/kok-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/kok-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/lb-LU/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/lb-LU/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/lo-LA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/lo-LA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/lt-LT/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/lt-LT/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/lv-LV/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/lv-LV/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/mi-NZ/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/mi-NZ/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/mk-MK/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/mk-MK/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ml-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ml-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/mr-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/mr-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ms-MY/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ms-MY/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/mt-MT/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/mt-MT/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/nb-NO/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/nb-NO/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ne-NP/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ne-NP/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/nl-NL/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/nl-NL/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/nn-NO/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/nn-NO/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/or-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/or-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/pa-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/pa-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/pl-PL/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/pl-PL/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/pl-PL/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/pl-PL/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/pl/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/pl/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/pt-BR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/pt-BR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/pt-BR/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/pt-BR/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/pt-PT/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/pt-PT/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/pt-PT/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/pt-PT/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/quz-PE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/quz-PE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ro-RO/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ro-RO/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ru-RU/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ru-RU/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ru-RU/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ru-RU/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ru/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ru/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/sk-SK/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/sk-SK/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/sl-SI/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/sl-SI/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/sq-AL/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/sq-AL/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/sr-Cyrl-BA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/sr-Cyrl-BA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/sr-Cyrl-RS/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/sr-Cyrl-RS/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/sr-Latn-RS/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/sr-Latn-RS/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/sv-SE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/sv-SE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/sw-KE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/sw-KE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ta-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ta-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/te-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/te-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/th-TH/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/th-TH/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/tr-TR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/tr-TR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/tr-TR/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/tr-TR/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/tr/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/tr/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/tt-RU/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/tt-RU/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ug-CN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ug-CN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/uk-UA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/uk-UA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/ur-PK/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/ur-PK/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/uz-Latn-UZ/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/uz-Latn-UZ/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/vi-VN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/vi-VN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/zh-CN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/zh-CN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/zh-CN/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/zh-CN/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/zh-Hans/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/zh-Hans/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/zh-Hant/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/zh-Hant/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/zh-TW/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/zh-TW/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /Test/PSAppDeployToolkit/lib/zh-TW/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/PSAppDeployToolkit/lib/zh-TW/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /Test/SupportFiles/Add Supporting Files Here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Test/SupportFiles/Add Supporting Files Here.txt -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/Assets/AppIcon.png -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Assets/Banner.Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/Assets/Banner.Classic.png -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Files/Add Setup Files Here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/Files/Add Setup Files Here.txt -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/Invoke-AppDeployToolkit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/Invoke-AppDeployToolkit.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit.Extensions/PSAppDeployToolkit.Extensions.psm1: -------------------------------------------------------------------------------- 1 | <# 2 | 3 | .SYNOPSIS 4 | PSAppDeployToolkit.Extensions - Provides the ability to extend and customize the toolkit by adding your own functions that can be re-used. 5 | 6 | .DESCRIPTION 7 | This module is a template that allows you to extend the toolkit with your own custom functions. 8 | 9 | This module is imported by the Invoke-AppDeployToolkit.ps1 script which is used when installing or uninstalling an application. 10 | 11 | #> 12 | 13 | ##*=============================================== 14 | ##* MARK: MODULE GLOBAL SETUP 15 | ##*=============================================== 16 | 17 | # Set strict error handling across entire module. 18 | $ErrorActionPreference = [System.Management.Automation.ActionPreference]::Stop 19 | $ProgressPreference = [System.Management.Automation.ActionPreference]::SilentlyContinue 20 | Set-StrictMode -Version 1 21 | 22 | 23 | ##*=============================================== 24 | ##* MARK: FUNCTION LISTINGS 25 | ##*=============================================== 26 | 27 | function New-ADTExampleFunction 28 | { 29 | <# 30 | .SYNOPSIS 31 | Basis for a new PSAppDeployToolkit extension function. 32 | 33 | .DESCRIPTION 34 | This function serves as the basis for a new PSAppDeployToolkit extension function. 35 | 36 | .INPUTS 37 | None 38 | 39 | You cannot pipe objects to this function. 40 | 41 | .OUTPUTS 42 | None 43 | 44 | This function does not return any output. 45 | 46 | .EXAMPLE 47 | New-ADTExampleFunction 48 | 49 | Invokes the New-ADTExampleFunction function and returns any output. 50 | #> 51 | 52 | [CmdletBinding()] 53 | param 54 | ( 55 | ) 56 | 57 | begin 58 | { 59 | # Initialize function. 60 | Initialize-ADTFunction -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState 61 | } 62 | 63 | process 64 | { 65 | try 66 | { 67 | try 68 | { 69 | } 70 | catch 71 | { 72 | # Re-writing the ErrorRecord with Write-Error ensures the correct PositionMessage is used. 73 | Write-Error -ErrorRecord $_ 74 | } 75 | } 76 | catch 77 | { 78 | # Process the caught error, log it and throw depending on the specified ErrorAction. 79 | Invoke-ADTFunctionErrorHandler -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState -ErrorRecord $_ 80 | } 81 | } 82 | 83 | end 84 | { 85 | # Finalize function. 86 | Complete-ADTFunction -Cmdlet $PSCmdlet 87 | } 88 | } 89 | 90 | 91 | ##*=============================================== 92 | ##* MARK: SCRIPT BODY 93 | ##*=============================================== 94 | 95 | # Announce successful importation of module. 96 | Write-ADTLogEntry -Message "Module [$($MyInvocation.MyCommand.ScriptBlock.Module.Name)] imported successfully." -ScriptSection Initialization 97 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/!README.txt: -------------------------------------------------------------------------------- 1 | The content within this folder is digitally signed and modification of any config, string, script, or any other file, is not supported by the PSAppDeployToolkit team. 2 | 3 | To create a new deployment, which will include config and script directories you can modify, please refer to https://psappdeploytoolkit.com/docs/getting-started/creating-a-new-deployment. 4 | 5 | To review the directory structure to see where the config, string, or asset files are that you can modify to suit your environment, please refer to https://psappdeploytoolkit.com/docs/deployment-concepts/deployment-structure. 6 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Assets/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Assets/AppIcon.png -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Assets/Banner.Classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Assets/Banner.Classic.png -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Frontend/v3/Deploy-Application.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Frontend/v3/Deploy-Application.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Frontend/v4/Invoke-AppDeployToolkit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/Frontend/v4/Invoke-AppDeployToolkit.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/PSAppDeployToolkit.cer: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIIHSTCCBTGgAwIBAgIQCvlbtr6iDIUOmMb7jqwI+TANBgkqhkiG9w0BAQsFADBp 3 | MQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xQTA/BgNVBAMT 4 | OERpZ2lDZXJ0IFRydXN0ZWQgRzQgQ29kZSBTaWduaW5nIFJTQTQwOTYgU0hBMzg0 5 | IDIwMjEgQ0ExMB4XDTI0MDkwNTAwMDAwMFoXDTI3MDkwNzIzNTk1OVowgdExEzAR 6 | BgsrBgEEAYI3PAIBAxMCVVMxGTAXBgsrBgEEAYI3PAIBAhMIQ29sb3JhZG8xHTAb 7 | BgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRQwEgYDVQQFEwsyMDEzMTYzODMy 8 | NzELMAkGA1UEBhMCVVMxETAPBgNVBAgTCENvbG9yYWRvMRQwEgYDVQQHEwtDYXN0 9 | bGUgUm9jazEZMBcGA1UEChMQUGF0Y2ggTXkgUEMsIExMQzEZMBcGA1UEAxMQUGF0 10 | Y2ggTXkgUEMsIExMQzCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBALsn 11 | cZKNh65erADSVI33cqSj+tKgR+RJIX2kUAJ5/nt74NnlXG4hFiI5azGM7ytrIDjA 12 | W8Bnm6gFEZBZlAig3RsXMSnrl3Wlzx1jysHNlo2AhWo61+h6H4osDczgnS+lRODw 13 | 0IT0Ue0iHTTRUq8eQuGQzdU+jh/snV+xEBfPjQVDR0WxFXZfofR+QHscet2n2vM7 14 | t4Pxl5bslym2/iR7YDSWlIBbhTkU8cNUzuqh/kuh66aX/UHABZruMRrZHNhUoYL9 15 | DYFjDRg2aia/6PbKidrXWmRw8q+h/D72PHoKFLIRe3HIBGLRBHQfUkUfJlUIpNcO 16 | aBk4w1ox4/vI4E6c5XrUcsKbZP5vD3oVQTfJ7aqEnbyy3LkFc5rjy8zf4rioebGX 17 | lr6jzjQKXBJ2XDjaV3m8olD5xHj6+a2QFO4TIzMNmT50JTHGxr7YD9qou5tn95lx 18 | WMVo5SgsWgKWB3qkhXlgvMzOzmC9h5WfhriuFxvIylROrFklvVpP3ZtLyW2rLwID 19 | AQABo4ICAjCCAf4wHwYDVR0jBBgwFoAUaDfg67Y7+F8Rhvv+YXsIiGX0TkIwHQYD 20 | VR0OBBYEFORglN0hKniG4YWPXslNC3EyO+V/MD0GA1UdIAQ2MDQwMgYFZ4EMAQMw 21 | KTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5jb20vQ1BTMA4GA1Ud 22 | DwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDAzCBtQYDVR0fBIGtMIGqMFOg 23 | UaBPhk1odHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkRzRD 24 | b2RlU2lnbmluZ1JTQTQwOTZTSEEzODQyMDIxQ0ExLmNybDBToFGgT4ZNaHR0cDov 25 | L2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZEc0Q29kZVNpZ25pbmdS 26 | U0E0MDk2U0hBMzg0MjAyMUNBMS5jcmwwgZQGCCsGAQUFBwEBBIGHMIGEMCQGCCsG 27 | AQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wXAYIKwYBBQUHMAKGUGh0 28 | dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNENvZGVT 29 | aWduaW5nUlNBNDA5NlNIQTM4NDIwMjFDQTEuY3J0MAkGA1UdEwQCMAAwDQYJKoZI 30 | hvcNAQELBQADggIBAKgNLm/4pTIHSLzIgXlgaIjMXuTiG5TmxiO5XpnD9lhKmhAE 31 | ltdf8FcCVOt2cIbZEGjVOK143+n6suaTlM6UF4GI0mjuA/wDjCSh5cqcbJRamf3W 32 | KXLntsRNx+5ZjuCj3/FcV7hSFKoy3rVPpJIe6P0OdkWm1QLjqzxSpzm4sctRyMdP 33 | +Rfkbj/cYapg23zO5ec1AHLjggpGO27riJxLIqfQWV1IlW/CuWz0fUZOw6GreBUJ 34 | je9sY2pHBGTjFP74NGYFWvJ8ZAV7VbI8W7K/mzg59HHXRytUB1opfz5qQDZMTex/ 35 | LXQgGfG08yL77ncUi57e7LG20A5AMjcNG7Qx/jCr/5flXGMkB+dWecU/Q7xwphHe 36 | ++G6GZD9hn0xb5+/4CEhI03TrlBrLXa4EsINcyT6oCu81sSuPMQu2sKWt4MDrPaZ 37 | 8oqhxt68fOP0h1IgC9pZJY7A93qZkcbFnmYWTWPd8RKUB3vSwb6P7eFUY2c6lM/q 38 | XxDD6nl/4OfpqW+GqemZjSbgGCRZlNCyJAi0DfZil4tSJfVlOon5972LrRjEi/wX 39 | Xlj/u3zOzGS4jvtQSLAXUpleqWVUty0QQMt8CJW1i+vZr8iwjyEO8+HbX7s8At+h 40 | PZNr4c3og0PpNXRSQ0ncUw3rbHJNBbg9aL4YrtnGi+AXRbAlrFzyzMr7ujpW 41 | -----END CERTIFICATE----- 42 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.Launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.Launcher.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.Launcher.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.Launcher.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.Launcher.pdb -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.exe -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Client.pdb -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Server.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.ClientServer.Server.pdb -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.UserInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.UserInterface.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.UserInterface.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.UserInterface.pdb -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/PSADT.pdb -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Buffers.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.IO.FileSystem.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.IO.FileSystem.AccessControl.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Memory.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Security.Permissions.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/af-ZA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/af-ZA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/am-ET/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/am-ET/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ar-SA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ar-SA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/as-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/as-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/az-Latn-AZ/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/az-Latn-AZ/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/be-BY/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/be-BY/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/bg-BG/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/bg-BG/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/bn-BD/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/bn-BD/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/bn-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/bn-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/bs-Latn-BA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/bs-Latn-BA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ca-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ca-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ca-Es-VALENCIA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ca-Es-VALENCIA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/cs-CZ/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/cs-CZ/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/cs-CZ/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/cs-CZ/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/cs/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/cs/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/cy-GB/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/cy-GB/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/da-DK/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/da-DK/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/de-DE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/de-DE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/de-DE/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/de-DE/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/de/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/de/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/el-GR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/el-GR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/en-GB/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/en-GB/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/es-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/es-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/es-ES/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/es-ES/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/es-MX/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/es-MX/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/es-MX/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/es-MX/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/es/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/es/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/et-EE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/et-EE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/eu-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/eu-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fa-IR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fa-IR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fa-IR/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fa-IR/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fa/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fa/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fi-FI/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fi-FI/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fil-PH/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fil-PH/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fr-CA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fr-CA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fr-CA/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fr-CA/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fr-FR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fr-FR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fr-FR/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fr-FR/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fr/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/fr/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ga-IE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ga-IE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/gd-gb/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/gd-gb/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/gl-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/gl-ES/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/gu-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/gu-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ha-Latn-NG/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ha-Latn-NG/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/he-IL/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/he-IL/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/hi-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/hi-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/hr-HR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/hr-HR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/hu-HU/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/hu-HU/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/hy-AM/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/hy-AM/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/iNKORE.UI.WPF.Modern.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/iNKORE.UI.WPF.Modern.Controls.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/iNKORE.UI.WPF.Modern.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/iNKORE.UI.WPF.Modern.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/iNKORE.UI.WPF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/iNKORE.UI.WPF.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/id-ID/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/id-ID/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/is-IS/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/is-IS/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/it-IT/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/it-IT/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/it-IT/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/it-IT/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/it/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/it/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ja-JP/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ja-JP/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ja-JP/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ja-JP/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ja/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ja/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ka-GE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ka-GE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/kk-KZ/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/kk-KZ/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/km-KH/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/km-KH/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/kn-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/kn-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ko-KR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ko-KR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ko-KR/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ko-KR/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ko/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ko/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/kok-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/kok-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/lb-LU/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/lb-LU/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/lo-LA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/lo-LA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/lt-LT/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/lt-LT/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/lv-LV/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/lv-LV/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/mi-NZ/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/mi-NZ/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/mk-MK/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/mk-MK/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ml-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ml-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/mr-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/mr-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ms-MY/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ms-MY/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/mt-MT/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/mt-MT/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/nb-NO/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/nb-NO/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ne-NP/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ne-NP/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/nl-NL/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/nl-NL/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/nn-NO/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/nn-NO/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/or-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/or-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pa-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pa-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pl-PL/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pl-PL/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pl-PL/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pl-PL/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pl/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pl/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pt-BR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pt-BR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pt-BR/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pt-BR/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pt-PT/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pt-PT/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pt-PT/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/pt-PT/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/quz-PE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/quz-PE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ro-RO/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ro-RO/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ru-RU/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ru-RU/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ru-RU/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ru-RU/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ru/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ru/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sk-SK/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sk-SK/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sl-SI/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sl-SI/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sq-AL/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sq-AL/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sr-Cyrl-BA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sr-Cyrl-BA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sr-Cyrl-RS/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sr-Cyrl-RS/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sr-Latn-RS/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sr-Latn-RS/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sv-SE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sv-SE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sw-KE/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/sw-KE/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ta-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ta-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/te-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/te-IN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/th-TH/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/th-TH/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/tr-TR/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/tr-TR/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/tr-TR/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/tr-TR/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/tr/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/tr/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/tt-RU/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/tt-RU/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ug-CN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ug-CN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/uk-UA/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/uk-UA/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ur-PK/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/ur-PK/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/uz-Latn-UZ/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/uz-Latn-UZ/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/vi-VN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/vi-VN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-CN/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-CN/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-CN/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-CN/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-Hans/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-Hans/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-Hant/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-Hant/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-TW/iNKORE.UI.WPF.Modern.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-TW/iNKORE.UI.WPF.Modern.Controls.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-TW/iNKORE.UI.WPF.Modern.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/PSAppDeployToolkit/lib/zh-TW/iNKORE.UI.WPF.Modern.resources.dll -------------------------------------------------------------------------------- /ThirdParty/PSAppDeployToolkit/SupportFiles/Add Supporting Files Here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/ThirdParty/PSAppDeployToolkit/SupportFiles/Add Supporting Files Here.txt -------------------------------------------------------------------------------- /Web/MonacoEditor/editor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Monaco Editor Local Files 6 | 18 | 19 | 20 |
21 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/base/browser/ui/codicons/codicon/codicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tugich/DeploymentEditor/2ac4ce58c1ee9660644d428c7207605b5fcff6a6/Web/MonacoEditor/min/vs/base/browser/ui/codicons/codicon/codicon.ttf -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/azcli/azcli.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/azcli/azcli", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var s=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var r=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var c=(t,e)=>{for(var o in e)s(t,o,{get:e[o],enumerable:!0})},k=(t,e,o,a)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of r(e))!l.call(t,n)&&n!==o&&s(t,n,{get:()=>e[n],enumerable:!(a=i(e,n))||a.enumerable});return t};var p=t=>k(s({},"__esModule",{value:!0}),t);var d={};c(d,{conf:()=>f,language:()=>g});var f={comments:{lineComment:"#"}},g={defaultToken:"keyword",ignoreCase:!0,tokenPostfix:".azcli",str:/[^#\s]/,tokenizer:{root:[{include:"@comment"},[/\s-+@str*\s*/,{cases:{"@eos":{token:"key.identifier",next:"@popall"},"@default":{token:"key.identifier",next:"@type"}}}],[/^-+@str*\s*/,{cases:{"@eos":{token:"key.identifier",next:"@popall"},"@default":{token:"key.identifier",next:"@type"}}}]],type:[{include:"@comment"},[/-+@str*\s*/,{cases:{"@eos":{token:"key.identifier",next:"@popall"},"@default":"key.identifier"}}],[/@str+\s*/,{cases:{"@eos":{token:"string",next:"@popall"},"@default":"string"}}]],comment:[[/#.*$/,{cases:{"@eos":{token:"comment",next:"@popall"}}}]]}};return p(d);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/bat/bat.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/bat/bat", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var n=Object.defineProperty;var r=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var i=Object.prototype.hasOwnProperty;var g=(o,e)=>{for(var t in e)n(o,t,{get:e[t],enumerable:!0})},c=(o,e,t,a)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of l(e))!i.call(o,s)&&s!==t&&n(o,s,{get:()=>e[s],enumerable:!(a=r(e,s))||a.enumerable});return o};var p=o=>c(n({},"__esModule",{value:!0}),o);var k={};g(k,{conf:()=>d,language:()=>m});var d={comments:{lineComment:"REM"},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'}],surroundingPairs:[{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'}],folding:{markers:{start:new RegExp("^\\s*(::\\s*|REM\\s+)#region"),end:new RegExp("^\\s*(::\\s*|REM\\s+)#endregion")}}},m={defaultToken:"",ignoreCase:!0,tokenPostfix:".bat",brackets:[{token:"delimiter.bracket",open:"{",close:"}"},{token:"delimiter.parenthesis",open:"(",close:")"},{token:"delimiter.square",open:"[",close:"]"}],keywords:/call|defined|echo|errorlevel|exist|for|goto|if|pause|set|shift|start|title|not|pushd|popd/,symbols:/[=>{ 8 | "use strict";var moduleExports=(()=>{var r=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var a=Object.prototype.hasOwnProperty;var g=(e,n)=>{for(var o in n)r(e,o,{get:n[o],enumerable:!0})},l=(e,n,o,i)=>{if(n&&typeof n=="object"||typeof n=="function")for(let t of c(n))!a.call(e,t)&&t!==o&&r(e,t,{get:()=>n[t],enumerable:!(i=s(n,t))||i.enumerable});return e};var m=e=>l(r({},"__esModule",{value:!0}),e);var y={};g(y,{conf:()=>$,language:()=>w});var p=e=>`\\b${e}\\b`,k="[_a-zA-Z]",x="[_a-zA-Z0-9]",u=p(`${k}${x}*`),d=["targetScope","resource","module","param","var","output","for","in","if","existing"],b=["true","false","null"],f="[ \\t\\r\\n]",C="[0-9]+",$={comments:{lineComment:"//",blockComment:["/*","*/"]},brackets:[["{","}"],["[","]"],["(",")"]],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"'",close:"'"},{open:"'''",close:"'''"}],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"'",close:"'",notIn:["string","comment"]},{open:"'''",close:"'''",notIn:["string","comment"]}],autoCloseBefore:`:.,=}])' 9 | `,indentationRules:{increaseIndentPattern:new RegExp("^((?!\\/\\/).)*(\\{[^}\"'`]*|\\([^)\"'`]*|\\[[^\\]\"'`]*)$"),decreaseIndentPattern:new RegExp("^((?!.*?\\/\\*).*\\*/)?\\s*[\\}\\]].*$")}},w={defaultToken:"",tokenPostfix:".bicep",brackets:[{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"delimiter.parenthesis"}],symbols:/[=>{ 8 | "use strict";var moduleExports=(()=>{var s=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var c=(o,e)=>{for(var n in e)s(o,n,{get:e[n],enumerable:!0})},m=(o,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of a(e))!l.call(o,t)&&t!==n&&s(o,t,{get:()=>e[t],enumerable:!(r=i(e,t))||r.enumerable});return o};var p=o=>m(s({},"__esModule",{value:!0}),o);var u={};c(u,{conf:()=>d,language:()=>g});var d={comments:{lineComment:"//",blockComment:["(*","*)"]},brackets:[["{","}"],["[","]"],["(",")"],["<",">"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"<",close:">"},{open:"'",close:"'"},{open:'"',close:'"'},{open:"(*",close:"*)"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"<",close:">"},{open:"'",close:"'"},{open:'"',close:'"'},{open:"(*",close:"*)"}]},g={defaultToken:"",tokenPostfix:".cameligo",ignoreCase:!0,brackets:[{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"delimiter.parenthesis"},{open:"<",close:">",token:"delimiter.angle"}],keywords:["abs","assert","block","Bytes","case","Crypto","Current","else","failwith","false","for","fun","if","in","let","let%entry","let%init","List","list","Map","map","match","match%nat","mod","not","operation","Operation","of","record","Set","set","sender","skip","source","String","then","to","true","type","with"],typeKeywords:["int","unit","string","tz","nat","bool"],operators:["=",">","<","<=",">=","<>",":",":=","and","mod","or","+","-","*","/","@","&","^","%","->","<-","&&","||"],symbols:/[=><:@\^&|+\-*\/\^%]+/,tokenizer:{root:[[/[a-zA-Z_][\w]*/,{cases:{"@keywords":{token:"keyword.$0"},"@default":"identifier"}}],{include:"@whitespace"},[/[{}()\[\]]/,"@brackets"],[/[<>](?!@symbols)/,"@brackets"],[/@symbols/,{cases:{"@operators":"delimiter","@default":""}}],[/\d*\.\d+([eE][\-+]?\d+)?/,"number.float"],[/\$[0-9a-fA-F]{1,16}/,"number.hex"],[/\d+/,"number"],[/[;,.]/,"delimiter"],[/'([^'\\]|\\.)*$/,"string.invalid"],[/'/,"string","@string"],[/'[^\\']'/,"string"],[/'/,"string.invalid"],[/\#\d+/,"string"]],comment:[[/[^\(\*]+/,"comment"],[/\*\)/,"comment","@pop"],[/\(\*/,"comment"]],string:[[/[^\\']+/,"string"],[/\\./,"string.escape.invalid"],[/'/,{token:"string.quote",bracket:"@close",next:"@pop"}]],whitespace:[[/[ \t\r\n]+/,"white"],[/\(\*/,"comment","@comment"],[/\/\/.*$/,"comment"]]}};return p(u);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/csp/csp.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/csp/csp", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var o=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var g=Object.prototype.hasOwnProperty;var a=(r,t)=>{for(var s in t)o(r,s,{get:t[s],enumerable:!0})},c=(r,t,s,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let e of u(t))!g.call(r,e)&&e!==s&&o(r,e,{get:()=>t[e],enumerable:!(n=i(t,e))||n.enumerable});return r};var q=r=>c(o({},"__esModule",{value:!0}),r);var p={};a(p,{conf:()=>f,language:()=>l});var f={brackets:[],autoClosingPairs:[],surroundingPairs:[]},l={keywords:[],typeKeywords:[],tokenPostfix:".csp",operators:[],symbols:/[=>{ 8 | "use strict";var moduleExports=(()=>{var a=Object.defineProperty;var l=Object.getOwnPropertyDescriptor;var r=Object.getOwnPropertyNames;var i=Object.prototype.hasOwnProperty;var p=(o,e)=>{for(var s in e)a(o,s,{get:e[s],enumerable:!0})},g=(o,e,s,t)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of r(e))!i.call(o,n)&&n!==s&&a(o,n,{get:()=>e[n],enumerable:!(t=l(e,n))||t.enumerable});return o};var c=o=>g(a({},"__esModule",{value:!0}),o);var k={};p(k,{conf:()=>u,language:()=>d});var u={brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}]},d={defaultToken:"",tokenPostfix:".dockerfile",variable:/\${?[\w]+}?/,tokenizer:{root:[{include:"@whitespace"},{include:"@comment"},[/(ONBUILD)(\s+)/,["keyword",""]],[/(ENV)(\s+)([\w]+)/,["keyword","",{token:"variable",next:"@arguments"}]],[/(FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|ARG|VOLUME|LABEL|USER|WORKDIR|COPY|CMD|STOPSIGNAL|SHELL|HEALTHCHECK|ENTRYPOINT)/,{token:"keyword",next:"@arguments"}]],arguments:[{include:"@whitespace"},{include:"@strings"},[/(@variable)/,{cases:{"@eos":{token:"variable",next:"@popall"},"@default":"variable"}}],[/\\/,{cases:{"@eos":"","@default":""}}],[/./,{cases:{"@eos":{token:"",next:"@popall"},"@default":""}}]],whitespace:[[/\s+/,{cases:{"@eos":{token:"",next:"@popall"},"@default":""}}]],comment:[[/(^#.*$)/,"comment","@popall"]],strings:[[/\\'$/,"","@popall"],[/\\'/,""],[/'$/,"string","@popall"],[/'/,"string","@stringBody"],[/"$/,"string","@popall"],[/"/,"string","@dblStringBody"]],stringBody:[[/[^\\\$']/,{cases:{"@eos":{token:"string",next:"@popall"},"@default":"string"}}],[/\\./,"string.escape"],[/'$/,"string","@popall"],[/'/,"string","@pop"],[/(@variable)/,"variable"],[/\\$/,"string"],[/$/,"string","@popall"]],dblStringBody:[[/[^\\\$"]/,{cases:{"@eos":{token:"string",next:"@popall"},"@default":"string"}}],[/\\./,"string.escape"],[/"$/,"string","@popall"],[/"/,"string","@pop"],[/(@variable)/,"variable"],[/\\$/,"string"],[/$/,"string","@popall"]]}};return c(k);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/flow9/flow9.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/flow9/flow9", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var s=Object.defineProperty;var r=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var c=(o,e)=>{for(var t in e)s(o,t,{get:e[t],enumerable:!0})},m=(o,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of a(e))!l.call(o,n)&&n!==t&&s(o,n,{get:()=>e[n],enumerable:!(i=r(e,n))||i.enumerable});return o};var p=o=>m(s({},"__esModule",{value:!0}),o);var u={};c(u,{conf:()=>g,language:()=>f});var g={comments:{blockComment:["/*","*/"],lineComment:"//"},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}",notIn:["string"]},{open:"[",close:"]",notIn:["string"]},{open:"(",close:")",notIn:["string"]},{open:'"',close:'"',notIn:["string"]},{open:"'",close:"'",notIn:["string"]}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"},{open:"<",close:">"}]},f={defaultToken:"",tokenPostfix:".flow",keywords:["import","require","export","forbid","native","if","else","cast","unsafe","switch","default"],types:["io","mutable","bool","int","double","string","flow","void","ref","true","false","with"],operators:["=",">","<","<=",">=","==","!","!=",":=","::=","&&","||","+","-","*","/","@","&","%",":","->","\\","$","??","^"],symbols:/[@$=>](?!@symbols)/,"delimiter"],[/@symbols/,{cases:{"@operators":"delimiter","@default":""}}],[/((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)/,"number"],[/[;,.]/,"delimiter"],[/"([^"\\]|\\.)*$/,"string.invalid"],[/"/,"string","@string"]],whitespace:[[/[ \t\r\n]+/,""],[/\/\*/,"comment","@comment"],[/\/\/.*$/,"comment"]],comment:[[/[^\/*]+/,"comment"],[/\*\//,"comment","@pop"],[/[\/*]/,"comment"]],string:[[/[^\\"]+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/"/,"string","@pop"]]}};return p(u);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/graphql/graphql.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/graphql/graphql", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var s=Object.defineProperty;var a=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var c=(n,e)=>{for(var t in e)s(n,t,{get:e[t],enumerable:!0})},d=(n,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of i(e))!l.call(n,o)&&o!==t&&s(n,o,{get:()=>e[o],enumerable:!(r=a(e,o))||r.enumerable});return n};var p=n=>d(s({},"__esModule",{value:!0}),n);var u={};c(u,{conf:()=>g,language:()=>I});var g={comments:{lineComment:"#"},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"""',close:'"""',notIn:["string","comment"]},{open:'"',close:'"',notIn:["string","comment"]}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"""',close:'"""'},{open:'"',close:'"'}],folding:{offSide:!0}},I={defaultToken:"invalid",tokenPostfix:".gql",keywords:["null","true","false","query","mutation","subscription","extend","schema","directive","scalar","type","interface","union","enum","input","implements","fragment","on"],typeKeywords:["Int","Float","String","Boolean","ID"],directiveLocations:["SCHEMA","SCALAR","OBJECT","FIELD_DEFINITION","ARGUMENT_DEFINITION","INTERFACE","UNION","ENUM","ENUM_VALUE","INPUT_OBJECT","INPUT_FIELD_DEFINITION","QUERY","MUTATION","SUBSCRIPTION","FIELD","FRAGMENT_DEFINITION","FRAGMENT_SPREAD","INLINE_FRAGMENT","VARIABLE_DEFINITION"],operators:["=","!","?",":","&","|"],symbols:/[=!?:&|]+/,escapes:/\\(?:["\\\/bfnrt]|u[0-9A-Fa-f]{4})/,tokenizer:{root:[[/[a-z_][\w$]*/,{cases:{"@keywords":"keyword","@default":"key.identifier"}}],[/[$][\w$]*/,{cases:{"@keywords":"keyword","@default":"argument.identifier"}}],[/[A-Z][\w\$]*/,{cases:{"@typeKeywords":"keyword","@default":"type.identifier"}}],{include:"@whitespace"},[/[{}()\[\]]/,"@brackets"],[/@symbols/,{cases:{"@operators":"operator","@default":""}}],[/@\s*[a-zA-Z_\$][\w\$]*/,{token:"annotation",log:"annotation token: $0"}],[/\d*\.\d+([eE][\-+]?\d+)?/,"number.float"],[/0[xX][0-9a-fA-F]+/,"number.hex"],[/\d+/,"number"],[/[;,.]/,"delimiter"],[/"""/,{token:"string",next:"@mlstring",nextEmbedded:"markdown"}],[/"([^"\\]|\\.)*$/,"string.invalid"],[/"/,{token:"string.quote",bracket:"@open",next:"@string"}]],mlstring:[[/[^"]+/,"string"],['"""',{token:"string",next:"@pop",nextEmbedded:"@pop"}]],string:[[/[^\\"]+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/"/,{token:"string.quote",bracket:"@close",next:"@pop"}]],whitespace:[[/[ \t\r\n]+/,""],[/#.*$/,"comment"]]}};return p(u);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/ini/ini.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/ini/ini", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var t=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var r=Object.getOwnPropertyNames;var g=Object.prototype.hasOwnProperty;var c=(n,e)=>{for(var s in e)t(n,s,{get:e[s],enumerable:!0})},l=(n,e,s,a)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of r(e))!g.call(n,o)&&o!==s&&t(n,o,{get:()=>e[o],enumerable:!(a=i(e,o))||a.enumerable});return n};var p=n=>l(t({},"__esModule",{value:!0}),n);var f={};c(f,{conf:()=>u,language:()=>m});var u={comments:{lineComment:"#"},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}]},m={defaultToken:"",tokenPostfix:".ini",escapes:/\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,tokenizer:{root:[[/^\[[^\]]*\]/,"metatag"],[/(^\w+)(\s*)(\=)/,["key","","delimiter"]],{include:"@whitespace"},[/\d+/,"number"],[/"([^"\\]|\\.)*$/,"string.invalid"],[/'([^'\\]|\\.)*$/,"string.invalid"],[/"/,"string",'@string."'],[/'/,"string","@string.'"]],whitespace:[[/[ \t\r\n]+/,""],[/^\s*[#;].*$/,"comment"]],string:[[/[^\\"']+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/["']/,{cases:{"$#==$S2":{token:"string",next:"@pop"},"@default":"string"}}]]}};return p(f);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/lexon/lexon.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/lexon/lexon", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var n=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var a=Object.prototype.hasOwnProperty;var l=(t,e)=>{for(var i in e)n(t,i,{get:e[i],enumerable:!0})},p=(t,e,i,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of d(e))!a.call(t,o)&&o!==i&&n(t,o,{get:()=>e[o],enumerable:!(r=s(e,o))||r.enumerable});return t};var c=t=>p(n({},"__esModule",{value:!0}),t);var k={};l(k,{conf:()=>m,language:()=>u});var m={comments:{lineComment:"COMMENT"},brackets:[["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:":",close:"."}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"`",close:"`"},{open:'"',close:'"'},{open:"'",close:"'"},{open:":",close:"."}],folding:{markers:{start:new RegExp("^\\s*(::\\s*|COMMENT\\s+)#region"),end:new RegExp("^\\s*(::\\s*|COMMENT\\s+)#endregion")}}},u={tokenPostfix:".lexon",ignoreCase:!0,keywords:["lexon","lex","clause","terms","contracts","may","pay","pays","appoints","into","to"],typeKeywords:["amount","person","key","time","date","asset","text"],operators:["less","greater","equal","le","gt","or","and","add","added","subtract","subtracted","multiply","multiplied","times","divide","divided","is","be","certified"],symbols:/[=>](?!@symbols)/,"@brackets"],[/@symbols/,"delimiter"],[/\d*\.\d*\.\d*/,"number.semver"],[/\d*\.\d+([eE][\-+]?\d+)?/,"number.float"],[/0[xX][0-9a-fA-F]+/,"number.hex"],[/\d+/,"number"],[/[;,.]/,"delimiter"]],quoted_identifier:[[/[^\\"]+/,"identifier"],[/"/,{token:"identifier.quote",bracket:"@close",next:"@pop"}]],space_identifier_until_period:[[":","delimiter"],[" ",{token:"white",next:"@identifier_rest"}]],identifier_until_period:[{include:"@whitespace"},[":",{token:"delimiter",next:"@identifier_rest"}],[/[^\\.]+/,"identifier"],[/\./,{token:"delimiter",bracket:"@close",next:"@pop"}]],identifier_rest:[[/[^\\.]+/,"identifier"],[/\./,{token:"delimiter",bracket:"@close",next:"@pop"}]],semver:[{include:"@whitespace"},[":","delimiter"],[/\d*\.\d*\.\d*/,{token:"number.semver",bracket:"@close",next:"@pop"}]],whitespace:[[/[ \t\r\n]+/,"white"]]}};return c(k);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/lua/lua.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/lua/lua", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var s=Object.defineProperty;var a=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var c=(o,e)=>{for(var t in e)s(o,t,{get:e[t],enumerable:!0})},m=(o,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of i(e))!l.call(o,n)&&n!==t&&s(o,n,{get:()=>e[n],enumerable:!(r=a(e,n))||r.enumerable});return o};var p=o=>m(s({},"__esModule",{value:!0}),o);var u={};c(u,{conf:()=>d,language:()=>g});var d={comments:{lineComment:"--",blockComment:["--[[","]]"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}]},g={defaultToken:"",tokenPostfix:".lua",keywords:["and","break","do","else","elseif","end","false","for","function","goto","if","in","local","nil","not","or","repeat","return","then","true","until","while"],brackets:[{token:"delimiter.bracket",open:"{",close:"}"},{token:"delimiter.array",open:"[",close:"]"},{token:"delimiter.parenthesis",open:"(",close:")"}],operators:["+","-","*","/","%","^","#","==","~=","<=",">=","<",">","=",";",":",",",".","..","..."],symbols:/[=>{ 8 | "use strict";var moduleExports=(()=>{var s=Object.defineProperty;var a=Object.getOwnPropertyDescriptor;var o=Object.getOwnPropertyNames;var g=Object.prototype.hasOwnProperty;var l=(t,e)=>{for(var n in e)s(t,n,{get:e[n],enumerable:!0})},d=(t,e,n,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of o(e))!g.call(t,r)&&r!==n&&s(t,r,{get:()=>e[r],enumerable:!(i=a(e,r))||i.enumerable});return t};var m=t=>d(s({},"__esModule",{value:!0}),t);var x={};l(x,{conf:()=>p,language:()=>u});var p={wordPattern:/(-?\d*\.\d\w*)|([^\`\~\!\@\#%\^\&\*\(\)\=\$\-\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g,comments:{blockComment:["###","###"],lineComment:"#"},folding:{markers:{start:new RegExp("^\\s*#region\\b"),end:new RegExp("^\\s*#endregion\\b")}}},u={defaultToken:"",ignoreCase:!1,tokenPostfix:".mips",regEx:/\/(?!\/\/)(?:[^\/\\]|\\.)*\/[igm]*/,keywords:[".data",".text","syscall","trap","add","addu","addi","addiu","and","andi","div","divu","mult","multu","nor","or","ori","sll","slv","sra","srav","srl","srlv","sub","subu","xor","xori","lhi","lho","lhi","llo","slt","slti","sltu","sltiu","beq","bgtz","blez","bne","j","jal","jalr","jr","lb","lbu","lh","lhu","lw","li","la","sb","sh","sw","mfhi","mflo","mthi","mtlo","move"],symbols:/[\.,\:]+/,escapes:/\\(?:[abfnrtv\\"'$]|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,tokenizer:{root:[[/\$[a-zA-Z_]\w*/,"variable.predefined"],[/[.a-zA-Z_]\w*/,{cases:{this:"variable.predefined","@keywords":{token:"keyword.$0"},"@default":""}}],[/[ \t\r\n]+/,""],[/#.*$/,"comment"],["///",{token:"regexp",next:"@hereregexp"}],[/^(\s*)(@regEx)/,["","regexp"]],[/(\,)(\s*)(@regEx)/,["delimiter","","regexp"]],[/(\:)(\s*)(@regEx)/,["delimiter","","regexp"]],[/@symbols/,"delimiter"],[/\d+[eE]([\-+]?\d+)?/,"number.float"],[/\d+\.\d+([eE][\-+]?\d+)?/,"number.float"],[/0[xX][0-9a-fA-F]+/,"number.hex"],[/0[0-7]+(?!\d)/,"number.octal"],[/\d+/,"number"],[/[,.]/,"delimiter"],[/"""/,"string",'@herestring."""'],[/'''/,"string","@herestring.'''"],[/"/,{cases:{"@eos":"string","@default":{token:"string",next:'@string."'}}}],[/'/,{cases:{"@eos":"string","@default":{token:"string",next:"@string.'"}}}]],string:[[/[^"'\#\\]+/,"string"],[/@escapes/,"string.escape"],[/\./,"string.escape.invalid"],[/\./,"string.escape.invalid"],[/#{/,{cases:{'$S2=="':{token:"string",next:"root.interpolatedstring"},"@default":"string"}}],[/["']/,{cases:{"$#==$S2":{token:"string",next:"@pop"},"@default":"string"}}],[/#/,"string"]],herestring:[[/("""|''')/,{cases:{"$1==$S2":{token:"string",next:"@pop"},"@default":"string"}}],[/[^#\\'"]+/,"string"],[/['"]+/,"string"],[/@escapes/,"string.escape"],[/\./,"string.escape.invalid"],[/#{/,{token:"string.quote",next:"root.interpolatedstring"}],[/#/,"string"]],comment:[[/[^#]+/,"comment"],[/#/,"comment"]],hereregexp:[[/[^\\\/#]+/,"regexp"],[/\\./,"regexp"],[/#.*$/,"comment"],["///[igm]*",{token:"regexp",next:"@pop"}],[/\//,"regexp"]]}};return m(x);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/objective-c/objective-c.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/objective-c/objective-c", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var s=Object.defineProperty;var r=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var a=Object.prototype.hasOwnProperty;var l=(o,e)=>{for(var t in e)s(o,t,{get:e[t],enumerable:!0})},p=(o,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of c(e))!a.call(o,n)&&n!==t&&s(o,n,{get:()=>e[n],enumerable:!(i=r(e,n))||i.enumerable});return o};var d=o=>p(s({},"__esModule",{value:!0}),o);var u={};l(u,{conf:()=>g,language:()=>m});var g={comments:{lineComment:"//",blockComment:["/*","*/"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}]},m={defaultToken:"",tokenPostfix:".objective-c",keywords:["#import","#include","#define","#else","#endif","#if","#ifdef","#ifndef","#ident","#undef","@class","@defs","@dynamic","@encode","@end","@implementation","@interface","@package","@private","@protected","@property","@protocol","@public","@selector","@synthesize","__declspec","assign","auto","BOOL","break","bycopy","byref","case","char","Class","const","copy","continue","default","do","double","else","enum","extern","FALSE","false","float","for","goto","if","in","int","id","inout","IMP","long","nil","nonatomic","NULL","oneway","out","private","public","protected","readwrite","readonly","register","return","SEL","self","short","signed","sizeof","static","struct","super","switch","typedef","TRUE","true","union","unsigned","volatile","void","while"],decpart:/\d(_?\d)*/,decimal:/0|@decpart/,tokenizer:{root:[{include:"@comments"},{include:"@whitespace"},{include:"@numbers"},{include:"@strings"},[/[,:;]/,"delimiter"],[/[{}\[\]()<>]/,"@brackets"],[/[a-zA-Z@#]\w*/,{cases:{"@keywords":"keyword","@default":"identifier"}}],[/[<>=\\+\\-\\*\\/\\^\\|\\~,]|and\\b|or\\b|not\\b]/,"operator"]],whitespace:[[/\s+/,"white"]],comments:[["\\/\\*","comment","@comment"],["\\/\\/+.*","comment"]],comment:[["\\*\\/","comment","@pop"],[".","comment"]],numbers:[[/0[xX][0-9a-fA-F]*(_?[0-9a-fA-F])*/,"number.hex"],[/@decimal((\.@decpart)?([eE][\-+]?@decpart)?)[fF]*/,{cases:{"(\\d)*":"number",$0:"number.float"}}]],strings:[[/'$/,"string.escape","@popall"],[/'/,"string.escape","@stringBody"],[/"$/,"string.escape","@popall"],[/"/,"string.escape","@dblStringBody"]],stringBody:[[/[^\\']+$/,"string","@popall"],[/[^\\']+/,"string"],[/\\./,"string"],[/'/,"string.escape","@popall"],[/\\$/,"string"]],dblStringBody:[[/[^\\"]+$/,"string","@popall"],[/[^\\"]+/,"string"],[/\\./,"string"],[/"/,"string.escape","@popall"],[/\\$/,"string"]]}};return d(u);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/pascaligo/pascaligo.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/pascaligo/pascaligo", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var s=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var c=(o,e)=>{for(var t in e)s(o,t,{get:e[t],enumerable:!0})},m=(o,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of a(e))!l.call(o,n)&&n!==t&&s(o,n,{get:()=>e[n],enumerable:!(r=i(e,n))||r.enumerable});return o};var p=o=>m(s({},"__esModule",{value:!0}),o);var u={};c(u,{conf:()=>d,language:()=>g});var d={comments:{lineComment:"//",blockComment:["(*","*)"]},brackets:[["{","}"],["[","]"],["(",")"],["<",">"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"<",close:">"},{open:"'",close:"'"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"<",close:">"},{open:"'",close:"'"}]},g={defaultToken:"",tokenPostfix:".pascaligo",ignoreCase:!0,brackets:[{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"delimiter.parenthesis"},{open:"<",close:">",token:"delimiter.angle"}],keywords:["begin","block","case","const","else","end","fail","for","from","function","if","is","nil","of","remove","return","skip","then","type","var","while","with","option","None","transaction"],typeKeywords:["bool","int","list","map","nat","record","string","unit","address","map","mtz","xtz"],operators:["=",">","<","<=",">=","<>",":",":=","and","mod","or","+","-","*","/","@","&","^","%"],symbols:/[=><:@\^&|+\-*\/\^%]+/,tokenizer:{root:[[/[a-zA-Z_][\w]*/,{cases:{"@keywords":{token:"keyword.$0"},"@default":"identifier"}}],{include:"@whitespace"},[/[{}()\[\]]/,"@brackets"],[/[<>](?!@symbols)/,"@brackets"],[/@symbols/,{cases:{"@operators":"delimiter","@default":""}}],[/\d*\.\d+([eE][\-+]?\d+)?/,"number.float"],[/\$[0-9a-fA-F]{1,16}/,"number.hex"],[/\d+/,"number"],[/[;,.]/,"delimiter"],[/'([^'\\]|\\.)*$/,"string.invalid"],[/'/,"string","@string"],[/'[^\\']'/,"string"],[/'/,"string.invalid"],[/\#\d+/,"string"]],comment:[[/[^\(\*]+/,"comment"],[/\*\)/,"comment","@pop"],[/\(\*/,"comment"]],string:[[/[^\\']+/,"string"],[/\\./,"string.escape.invalid"],[/'/,{token:"string.quote",bracket:"@close",next:"@pop"}]],whitespace:[[/[ \t\r\n]+/,"white"],[/\(\*/,"comment","@comment"],[/\/\/.*$/,"comment"]]}};return p(u);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/pla/pla.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/pla/pla", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var s=Object.defineProperty;var a=Object.getOwnPropertyDescriptor;var r=Object.getOwnPropertyNames;var p=Object.prototype.hasOwnProperty;var l=(o,e)=>{for(var n in e)s(o,n,{get:e[n],enumerable:!0})},c=(o,e,n,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of r(e))!p.call(o,t)&&t!==n&&s(o,t,{get:()=>e[t],enumerable:!(i=a(e,t))||i.enumerable});return o};var d=o=>c(s({},"__esModule",{value:!0}),o);var u={};l(u,{conf:()=>k,language:()=>m});var k={comments:{lineComment:"#"},brackets:[["[","]"],["<",">"],["(",")"]],autoClosingPairs:[{open:"[",close:"]"},{open:"<",close:">"},{open:"(",close:")"}],surroundingPairs:[{open:"[",close:"]"},{open:"<",close:">"},{open:"(",close:")"}]},m={defaultToken:"",tokenPostfix:".pla",brackets:[{open:"[",close:"]",token:"delimiter.square"},{open:"<",close:">",token:"delimiter.angle"},{open:"(",close:")",token:"delimiter.parenthesis"}],keywords:[".i",".o",".mv",".ilb",".ob",".label",".type",".phase",".pair",".symbolic",".symbolic-output",".kiss",".p",".e",".end"],comment:/#.*$/,identifier:/[a-zA-Z]+[a-zA-Z0-9_\-]*/,plaContent:/[01\-~\|]+/,tokenizer:{root:[{include:"@whitespace"},[/@comment/,"comment"],[/\.([a-zA-Z_\-]+)/,{cases:{"@eos":{token:"keyword.$1"},"@keywords":{cases:{".type":{token:"keyword.$1",next:"@type"},"@default":{token:"keyword.$1",next:"@keywordArg"}}},"@default":{token:"keyword.$1"}}}],[/@identifier/,"identifier"],[/@plaContent/,"string"]],whitespace:[[/[ \t\r\n]+/,""]],type:[{include:"@whitespace"},[/\w+/,{token:"type",next:"@pop"}]],keywordArg:[[/[ \t\r\n]+/,{cases:{"@eos":{token:"",next:"@pop"},"@default":""}}],[/@comment/,"comment","@pop"],[/[<>()\[\]]/,{cases:{"@eos":{token:"@brackets",next:"@pop"},"@default":"@brackets"}}],[/\-?\d+/,{cases:{"@eos":{token:"number",next:"@pop"},"@default":"number"}}],[/@identifier/,{cases:{"@eos":{token:"identifier",next:"@pop"},"@default":"identifier"}}],[/[;=]/,{cases:{"@eos":{token:"delimiter",next:"@pop"},"@default":"delimiter"}}]]}};return d(u);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/sb/sb.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/sb/sb", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var r=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var d=(o,e)=>{for(var t in e)r(o,t,{get:e[t],enumerable:!0})},c=(o,e,t,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of a(e))!l.call(o,n)&&n!==t&&r(o,n,{get:()=>e[n],enumerable:!(s=i(e,n))||s.enumerable});return o};var g=o=>c(r({},"__esModule",{value:!0}),o);var m={};d(m,{conf:()=>p,language:()=>f});var p={comments:{lineComment:"'"},brackets:[["(",")"],["[","]"],["If","EndIf"],["While","EndWhile"],["For","EndFor"],["Sub","EndSub"]],autoClosingPairs:[{open:'"',close:'"',notIn:["string","comment"]},{open:"(",close:")",notIn:["string","comment"]},{open:"[",close:"]",notIn:["string","comment"]}]},f={defaultToken:"",tokenPostfix:".sb",ignoreCase:!0,brackets:[{token:"delimiter.array",open:"[",close:"]"},{token:"delimiter.parenthesis",open:"(",close:")"},{token:"keyword.tag-if",open:"If",close:"EndIf"},{token:"keyword.tag-while",open:"While",close:"EndWhile"},{token:"keyword.tag-for",open:"For",close:"EndFor"},{token:"keyword.tag-sub",open:"Sub",close:"EndSub"}],keywords:["Else","ElseIf","EndFor","EndIf","EndSub","EndWhile","For","Goto","If","Step","Sub","Then","To","While"],tagwords:["If","Sub","While","For"],operators:[">","<","<>","<=",">=","And","Or","+","-","*","/","="],identifier:/[a-zA-Z_][\w]*/,symbols:/[=><:+\-*\/%\.,]+/,escapes:/\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,tokenizer:{root:[{include:"@whitespace"},[/(@identifier)(?=[.])/,"type"],[/@identifier/,{cases:{"@keywords":{token:"keyword.$0"},"@operators":"operator","@default":"variable.name"}}],[/([.])(@identifier)/,{cases:{$2:["delimiter","type.member"],"@default":""}}],[/\d*\.\d+/,"number.float"],[/\d+/,"number"],[/[()\[\]]/,"@brackets"],[/@symbols/,{cases:{"@operators":"operator","@default":"delimiter"}}],[/"([^"\\]|\\.)*$/,"string.invalid"],[/"/,"string","@string"]],whitespace:[[/[ \t\r\n]+/,""],[/(\').*$/,"comment"]],string:[[/[^\\"]+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/"C?/,"string","@pop"]]}};return g(m);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/scheme/scheme.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/scheme/scheme", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var s=Object.defineProperty;var r=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var c=(o,e)=>{for(var t in e)s(o,t,{get:e[t],enumerable:!0})},m=(o,e,t,a)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of i(e))!l.call(o,n)&&n!==t&&s(o,n,{get:()=>e[n],enumerable:!(a=r(e,n))||a.enumerable});return o};var p=o=>m(s({},"__esModule",{value:!0}),o);var u={};c(u,{conf:()=>d,language:()=>g});var d={comments:{lineComment:";",blockComment:["#|","|#"]},brackets:[["(",")"],["{","}"],["[","]"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'}]},g={defaultToken:"",ignoreCase:!0,tokenPostfix:".scheme",brackets:[{open:"(",close:")",token:"delimiter.parenthesis"},{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"}],keywords:["case","do","let","loop","if","else","when","cons","car","cdr","cond","lambda","lambda*","syntax-rules","format","set!","quote","eval","append","list","list?","member?","load"],constants:["#t","#f"],operators:["eq?","eqv?","equal?","and","or","not","null?"],tokenizer:{root:[[/#[xXoObB][0-9a-fA-F]+/,"number.hex"],[/[+-]?\d+(?:(?:\.\d*)?(?:[eE][+-]?\d+)?)?/,"number.float"],[/(?:\b(?:(define|define-syntax|define-macro))\b)(\s+)((?:\w|\-|\!|\?)*)/,["keyword","white","variable"]],{include:"@whitespace"},{include:"@strings"},[/[a-zA-Z_#][a-zA-Z0-9_\-\?\!\*]*/,{cases:{"@keywords":"keyword","@constants":"constant","@operators":"operators","@default":"identifier"}}]],comment:[[/[^\|#]+/,"comment"],[/#\|/,"comment","@push"],[/\|#/,"comment","@pop"],[/[\|#]/,"comment"]],whitespace:[[/[ \t\r\n]+/,"white"],[/#\|/,"comment","@comment"],[/;.*$/,"comment"]],strings:[[/"$/,"string","@popall"],[/"(?=.)/,"string","@multiLineString"]],multiLineString:[[/[^\\"]+$/,"string","@popall"],[/[^\\"]+/,"string"],[/\\./,"string.escape"],[/"/,"string","@popall"],[/\\$/,"string"]]}};return p(u);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/sparql/sparql.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/sparql/sparql", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var o=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var d=(s,e)=>{for(var n in e)o(s,n,{get:e[n],enumerable:!0})},c=(s,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of a(e))!l.call(s,t)&&t!==n&&o(s,t,{get:()=>e[t],enumerable:!(r=i(e,t))||r.enumerable});return s};var g=s=>c(o({},"__esModule",{value:!0}),s);var m={};d(m,{conf:()=>u,language:()=>p});var u={comments:{lineComment:"#"},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"'",close:"'",notIn:["string"]},{open:'"',close:'"',notIn:["string"]},{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"}]},p={defaultToken:"",tokenPostfix:".rq",brackets:[{token:"delimiter.curly",open:"{",close:"}"},{token:"delimiter.parenthesis",open:"(",close:")"},{token:"delimiter.square",open:"[",close:"]"},{token:"delimiter.angle",open:"<",close:">"}],keywords:["add","as","asc","ask","base","by","clear","construct","copy","create","data","delete","desc","describe","distinct","drop","false","filter","from","graph","group","having","in","insert","limit","load","minus","move","named","not","offset","optional","order","prefix","reduced","select","service","silent","to","true","undef","union","using","values","where","with"],builtinFunctions:["a","abs","avg","bind","bnode","bound","ceil","coalesce","concat","contains","count","datatype","day","encode_for_uri","exists","floor","group_concat","hours","if","iri","isblank","isiri","isliteral","isnumeric","isuri","lang","langmatches","lcase","max","md5","min","minutes","month","now","rand","regex","replace","round","sameterm","sample","seconds","sha1","sha256","sha384","sha512","str","strafter","strbefore","strdt","strends","strlang","strlen","strstarts","struuid","substr","sum","timezone","tz","ucase","uri","uuid","year"],ignoreCase:!0,tokenizer:{root:[[/<[^\s\u00a0>]*>?/,"tag"],{include:"@strings"},[/#.*/,"comment"],[/[{}()\[\]]/,"@brackets"],[/[;,.]/,"delimiter"],[/[_\w\d]+:(\.(?=[\w_\-\\%])|[:\w_-]|\\[-\\_~.!$&'()*+,;=/?#@%]|%[a-f\d][a-f\d])*/,"tag"],[/:(\.(?=[\w_\-\\%])|[:\w_-]|\\[-\\_~.!$&'()*+,;=/?#@%]|%[a-f\d][a-f\d])+/,"tag"],[/[$?]?[_\w\d]+/,{cases:{"@keywords":{token:"keyword"},"@builtinFunctions":{token:"predefined.sql"},"@default":"identifier"}}],[/\^\^/,"operator.sql"],[/\^[*+\-<>=&|^\/!?]*/,"operator.sql"],[/[*+\-<>=&|\/!?]/,"operator.sql"],[/@[a-z\d\-]*/,"metatag.html"],[/\s+/,"white"]],strings:[[/'([^'\\]|\\.)*$/,"string.invalid"],[/'$/,"string.sql","@pop"],[/'/,"string.sql","@stringBody"],[/"([^"\\]|\\.)*$/,"string.invalid"],[/"$/,"string.sql","@pop"],[/"/,"string.sql","@dblStringBody"]],stringBody:[[/[^\\']+/,"string.sql"],[/\\./,"string.escape"],[/'/,"string.sql","@pop"]],dblStringBody:[[/[^\\"]+/,"string.sql"],[/\\./,"string.escape"],[/"/,"string.sql","@pop"]]}};return g(m);})(); 9 | return moduleExports; 10 | }); 11 | -------------------------------------------------------------------------------- /Web/MonacoEditor/min/vs/basic-languages/xml/xml.js: -------------------------------------------------------------------------------- 1 | /*!----------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546) 4 | * Released under the MIT license 5 | * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt 6 | *-----------------------------------------------------------------------------*/ 7 | define("vs/basic-languages/xml/xml", ["require","require"],(require)=>{ 8 | "use strict";var moduleExports=(()=>{var u=Object.create;var m=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var p=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var f=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(t,n)=>(typeof require<"u"?require:t)[n]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')});var w=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),b=(e,t)=>{for(var n in t)m(e,n,{get:t[n],enumerable:!0})},i=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of p(t))!x.call(e,o)&&o!==n&&m(e,o,{get:()=>t[o],enumerable:!(r=g(t,o))||r.enumerable});return e},l=(e,t,n)=>(i(e,t,"default"),n&&i(n,t,"default")),c=(e,t,n)=>(n=e!=null?u(k(e)):{},i(t||!e||!e.__esModule?m(n,"default",{value:e,enumerable:!0}):n,e)),q=e=>i(m({},"__esModule",{value:!0}),e);var s=w((v,d)=>{var N=c(f("vs/editor/editor.api"));d.exports=N});var I={};b(I,{conf:()=>A,language:()=>C});var a={};l(a,c(s()));var A={comments:{blockComment:[""]},brackets:[["<",">"]],autoClosingPairs:[{open:"<",close:">"},{open:"'",close:"'"},{open:'"',close:'"'}],surroundingPairs:[{open:"<",close:">"},{open:"'",close:"'"},{open:'"',close:'"'}],onEnterRules:[{beforeText:new RegExp("<([_:\\w][_:\\w-.\\d]*)([^/>]*(?!/)>)[^<]*$","i"),afterText:/^<\/([_:\w][_:\w-.\d]*)\s*>$/i,action:{indentAction:a.languages.IndentAction.IndentOutdent}},{beforeText:new RegExp("<(\\w[\\w\\d]*)([^/>]*(?!/)>)[^<]*$","i"),action:{indentAction:a.languages.IndentAction.Indent}}]},C={defaultToken:"",tokenPostfix:".xml",ignoreCase:!0,qualifiedName:/(?:[\w\.\-]+:)?[\w\.\-]+/,tokenizer:{root:[[/[^<&]+/,""],{include:"@whitespace"},[/(<)(@qualifiedName)/,[{token:"delimiter"},{token:"tag",next:"@tag"}]],[/(<\/)(@qualifiedName)(\s*)(>)/,[{token:"delimiter"},{token:"tag"},"",{token:"delimiter"}]],[/(<\?)(@qualifiedName)/,[{token:"delimiter"},{token:"metatag",next:"@tag"}]],[/(<\!)(@qualifiedName)/,[{token:"delimiter"},{token:"metatag",next:"@tag"}]],[/<\!\[CDATA\[/,{token:"delimiter.cdata",next:"@cdata"}],[/&\w+;/,"string.escape"]],cdata:[[/[^\]]+/,""],[/\]\]>/,{token:"delimiter.cdata",next:"@pop"}],[/\]/,""]],tag:[[/[ \t\r\n]+/,""],[/(@qualifiedName)(\s*=\s*)("[^"]*"|'[^']*')/,["attribute.name","","attribute.value"]],[/(@qualifiedName)(\s*=\s*)("[^">?\/]*|'[^'>?\/]*)(?=[\?\/]\>)/,["attribute.name","","attribute.value"]],[/(@qualifiedName)(\s*=\s*)("[^">]*|'[^'>]*)/,["attribute.name","","attribute.value"]],[/@qualifiedName/,"attribute.name"],[/\?>/,{token:"delimiter",next:"@pop"}],[/(\/)(>)/,[{token:"tag"},{token:"delimiter",next:"@pop"}]],[/>/,{token:"delimiter",next:"@pop"}]],whitespace:[[/[ \t\r\n]+/,""],[//,{token:"comment",next:"@pop"}],[/