├── .gitattributes ├── .gitignore ├── 1.1.ps1 ├── Convert-DSCSyntaxToFields.ps1 ├── LICENSE ├── README.md ├── Start-DSCDesigner.ps1 ├── XAML ├── .vs │ └── FoxDeploy DSC Designer │ │ ├── v14 │ │ └── .suo │ │ └── v15 │ │ └── .suo ├── FoxDeploy DSC Designer.sln └── FoxDeployDSCdesigner │ ├── 0.1MainWindow.xaml │ ├── 0.1MainWindow.xaml.cs │ ├── 0.2MainWindow.xaml │ ├── 0.2MainWindow.xaml.cs │ ├── 0.3.backup │ ├── 0.3MainWindow.xaml │ ├── 0.3MainWindow.xaml.cs │ ├── 0.5MainWindow.xaml │ ├── 0.5MainWindow.xaml.cs │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── AutoLoadingDev.xaml │ ├── AutoLoadingDev.xaml.cs │ ├── FoxDeploy DSC Designer.csproj │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── TabDesigner.xaml │ ├── TabDesigner.xaml.cs │ ├── bin │ └── Debug │ │ ├── FoxDeployDSC_Designer.exe.config │ │ ├── FoxDeployDSC_Designer.vshost.exe │ │ ├── FoxDeployDSC_Designer.vshost.exe.config │ │ ├── FoxDeployDSC_Designer.vshost.exe.manifest │ │ ├── Microsoft.VisualStudio.HostingProcess.Utilities.Sync.dll │ │ ├── Microsoft.VisualStudio.HostingProcess.Utilities.dll │ │ ├── WpfApplication1.exe.config │ │ ├── WpfApplication1.vshost.exe │ │ ├── WpfApplication1.vshost.exe.config │ │ └── WpfApplication1.vshost.exe.manifest │ └── obj │ └── Debug │ ├── 0.1MainWindow.g.i.cs │ ├── 0.2MainWindow.g.i.cs │ ├── 0.3.baml │ ├── 0.3.g.cs │ ├── 0.3.g.i.cs │ ├── 0.3MainWindow.g.i.cs │ ├── 0.4MainWindow.g.i.cs │ ├── 0.5MainWindow.g.i.cs │ ├── App.g.cs │ ├── App.g.i.cs │ ├── AutoLoadingDev.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── FoxDeploy DSC Designer.csproj.FileListAbsolute.txt │ ├── FoxDeployDSC_Designer_MarkupCompile.i.cache │ ├── FoxDeployDSC_Designer_MarkupCompile.i.lref │ ├── MainWindow.g.cs │ ├── MainWindow.g.i.cs │ ├── TabDesigner.g.i.cs │ ├── TempPE │ └── Properties.Resources.Designer.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Window1.baml │ ├── Window1.g.cs │ ├── Window1.g.i.cs │ ├── Window2.g.cs │ ├── Window2.g.i.cs │ ├── Window3.g.i.cs │ ├── WpfApplication1.csproj.FileListAbsolute.txt │ ├── WpfApplication1.csprojResolveAssemblyReference.cache │ ├── WpfApplication1_MarkupCompile.cache │ ├── WpfApplication1_MarkupCompile.i.cache │ ├── WpfApplication1_MarkupCompile.lref │ ├── beta.baml │ ├── beta.g.cs │ └── beta.g.i.cs └── history ├── 0.1.ps1 ├── 0.2.ps1 ├── 0.3.ps1 ├── 0.4.ps1 ├── 0.5.ps1 ├── 0.6.ps1 ├── 0.7.ps1 └── sample valid DSC config.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/.gitignore -------------------------------------------------------------------------------- /1.1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/1.1.ps1 -------------------------------------------------------------------------------- /Convert-DSCSyntaxToFields.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/Convert-DSCSyntaxToFields.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/README.md -------------------------------------------------------------------------------- /Start-DSCDesigner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/Start-DSCDesigner.ps1 -------------------------------------------------------------------------------- /XAML/.vs/FoxDeploy DSC Designer/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/.vs/FoxDeploy DSC Designer/v14/.suo -------------------------------------------------------------------------------- /XAML/.vs/FoxDeploy DSC Designer/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/.vs/FoxDeploy DSC Designer/v15/.suo -------------------------------------------------------------------------------- /XAML/FoxDeploy DSC Designer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeploy DSC Designer.sln -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/0.1MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/0.1MainWindow.xaml -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/0.1MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/0.1MainWindow.xaml.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/0.2MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/0.2MainWindow.xaml -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/0.2MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/0.2MainWindow.xaml.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/0.3.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/0.3.backup -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/0.3MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/0.3MainWindow.xaml -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/0.3MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/0.3MainWindow.xaml.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/0.5MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/0.5MainWindow.xaml -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/0.5MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/0.5MainWindow.xaml.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/App.config -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/App.xaml -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/App.xaml.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/AutoLoadingDev.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/AutoLoadingDev.xaml -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/AutoLoadingDev.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/AutoLoadingDev.xaml.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/FoxDeploy DSC Designer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/FoxDeploy DSC Designer.csproj -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/Properties/Resources.resx -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/Properties/Settings.settings -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/TabDesigner.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/TabDesigner.xaml -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/TabDesigner.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/TabDesigner.xaml.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.exe.config -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.vshost.exe -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.vshost.exe.config -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/bin/Debug/FoxDeployDSC_Designer.vshost.exe.manifest -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/bin/Debug/Microsoft.VisualStudio.HostingProcess.Utilities.Sync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/bin/Debug/Microsoft.VisualStudio.HostingProcess.Utilities.Sync.dll -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/bin/Debug/Microsoft.VisualStudio.HostingProcess.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/bin/Debug/Microsoft.VisualStudio.HostingProcess.Utilities.dll -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.exe.config -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.vshost.exe -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.vshost.exe.config -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/bin/Debug/WpfApplication1.vshost.exe.manifest -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/0.1MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/0.1MainWindow.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/0.2MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/0.2MainWindow.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/0.3.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/0.3.baml -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/0.3.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/0.3.g.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/0.3.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/0.3.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/0.3MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/0.3MainWindow.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/0.4MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/0.4MainWindow.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/0.5MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/0.5MainWindow.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/AutoLoadingDev.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/AutoLoadingDev.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/FoxDeploy DSC Designer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/FoxDeploy DSC Designer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/FoxDeployDSC_Designer_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/FoxDeployDSC_Designer_MarkupCompile.i.cache -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/FoxDeployDSC_Designer_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\git\psDSCMan\XAML\FoxDeployDSCdesigner\AutoLoadingDev.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/TabDesigner.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/TabDesigner.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/Window1.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/Window1.baml -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/Window1.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/Window1.g.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/Window1.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/Window1.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/Window2.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/Window2.g.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/Window2.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/Window2.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/Window3.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/Window3.g.i.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1_MarkupCompile.cache -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1_MarkupCompile.i.cache -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/WpfApplication1_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FC:\git\psDSCMan\XAML\WpfApplication1\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/beta.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/beta.baml -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/beta.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/beta.g.cs -------------------------------------------------------------------------------- /XAML/FoxDeployDSCdesigner/obj/Debug/beta.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/XAML/FoxDeployDSCdesigner/obj/Debug/beta.g.i.cs -------------------------------------------------------------------------------- /history/0.1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/history/0.1.ps1 -------------------------------------------------------------------------------- /history/0.2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/history/0.2.ps1 -------------------------------------------------------------------------------- /history/0.3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/history/0.3.ps1 -------------------------------------------------------------------------------- /history/0.4.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/history/0.4.ps1 -------------------------------------------------------------------------------- /history/0.5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/history/0.5.ps1 -------------------------------------------------------------------------------- /history/0.6.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/history/0.6.ps1 -------------------------------------------------------------------------------- /history/0.7.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/history/0.7.ps1 -------------------------------------------------------------------------------- /history/sample valid DSC config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1RedOne/DSC-Designer/HEAD/history/sample valid DSC config.ps1 --------------------------------------------------------------------------------