From 98732be7887ff0a6154ef661a707c9ee9dd52b19 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Thu, 13 May 2021 17:37:15 -0400 Subject: [PATCH 1/9] do not crash if we don't have permission to save the file when invoking Save --- .../MainWindow.cs | 68 +++++++++++++++++-- .../MultipleDocumentErrorHandling.cs | 46 +++++++++++++ .../UniversalEditor.UserInterface.csproj | 1 + 3 files changed, 111 insertions(+), 4 deletions(-) create mode 100644 Libraries/UniversalEditor.UserInterface/MultipleDocumentErrorHandling.cs diff --git a/Libraries/UniversalEditor.UserInterface/MainWindow.cs b/Libraries/UniversalEditor.UserInterface/MainWindow.cs index 487bb859..be0a3fc4 100644 --- a/Libraries/UniversalEditor.UserInterface/MainWindow.cs +++ b/Libraries/UniversalEditor.UserInterface/MainWindow.cs @@ -1174,8 +1174,12 @@ namespace UniversalEditor.UserInterface { if (document.IsSaved) { + bool inputClosed = false; if (document.InputAccessor != null && document.InputAccessor.IsOpen) + { + inputClosed = true; document.InputAccessor.Close(); + } if (document.OutputAccessor is FileAccessor) { @@ -1183,9 +1187,33 @@ namespace UniversalEditor.UserInterface (document.OutputAccessor as FileAccessor).AllowWrite = true; (document.OutputAccessor as FileAccessor).ForceOverwrite = true; } - document.OutputAccessor.Open(); - document.Save(); - document.OutputAccessor.Close(); + + try + { + document.OutputAccessor.Open(); + document.Save(); + document.OutputAccessor.Close(); + } + catch (UnauthorizedAccessException ex) + { + if (inputClosed) + { + if (document.InputAccessor is FileAccessor) + { + // FIXME: ewww + (document.InputAccessor as FileAccessor).AllowWrite = false; + (document.InputAccessor as FileAccessor).ForceOverwrite = false; + } + document.InputAccessor.Open(); + } + + switch (HandleUnauthorizedAccessException(document, ex)) + { + case MultipleDocumentErrorHandling.CancelAll: return false; + case MultipleDocumentErrorHandling.CancelOne: return true; + case MultipleDocumentErrorHandling.Ignore: break; + } + } DockingWindow di = dckContainer.Items[GetCurrentEditorPage()] as DockingWindow; if (di != null) @@ -1274,7 +1302,20 @@ namespace UniversalEditor.UserInterface page.Document.DataFormat = df; page.Document.Accessor = accessor; } - page.Document.Save(); + + try + { + page.Document.Save(); + } + catch (UnauthorizedAccessException ex) + { + switch (HandleUnauthorizedAccessException(page.Document, ex)) + { + case MultipleDocumentErrorHandling.CancelAll: return false; + case MultipleDocumentErrorHandling.CancelOne: return true; + case MultipleDocumentErrorHandling.Ignore: break; + } + } GetCurrentEditor().Document = page.Document; DockingWindow di = dckContainer.Items[page] as DockingWindow; @@ -1285,6 +1326,25 @@ namespace UniversalEditor.UserInterface } return true; } + + private MultipleDocumentErrorHandling HandleUnauthorizedAccessException(Document document, UnauthorizedAccessException ex) + { + DialogResult dr = MessageDialog.ShowDialog(String.Format("Cannot save the file in its current location. Would you like to choose another location?\r\n\r\n{0}", ex.Message), "Unauthorized", MessageDialogButtons.YesNoCancel, MessageDialogIcon.Warning); + if (dr == DialogResult.Yes) + { + SaveFileAs(document); + } + else if (dr == DialogResult.No) + { + return MultipleDocumentErrorHandling.CancelOne; + } + else if (dr == DialogResult.Cancel) + { + return MultipleDocumentErrorHandling.CancelAll; + } + return MultipleDocumentErrorHandling.Ignore; + } + public bool SaveFileAs(Accessor accessor, DataFormat df) { return SaveFileAs(accessor, df, GetCurrentEditor()?.ObjectModel); diff --git a/Libraries/UniversalEditor.UserInterface/MultipleDocumentErrorHandling.cs b/Libraries/UniversalEditor.UserInterface/MultipleDocumentErrorHandling.cs new file mode 100644 index 00000000..87998802 --- /dev/null +++ b/Libraries/UniversalEditor.UserInterface/MultipleDocumentErrorHandling.cs @@ -0,0 +1,46 @@ +// +// MultipleDocumentErrorHandling.cs +// +// Author: +// Michael Becker +// +// Copyright (c) 2021 Mike Becker's Software +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +using System; +namespace UniversalEditor.UserInterface +{ + /// + /// Describes the way in which to handle an when + /// there are additional s to be processed afterward. + /// + public enum MultipleDocumentErrorHandling + { + /// + /// Ignore the error for the current and proceed + /// to processing the next . + /// + Ignore, + /// + /// Cancels the operation for a single . Other + /// s will continue to be processed. + /// + CancelOne, + /// + /// Cancels the entire operation, including any s + /// that still have yet to be processed. + /// + CancelAll + } +} diff --git a/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj b/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj index ff832bcf..9367359b 100644 --- a/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj +++ b/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj @@ -136,6 +136,7 @@ + From e4cbd06ebaf8bbd3a957e02115f1a0a33adeff2b Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Thu, 13 May 2021 17:39:10 -0400 Subject: [PATCH 2/9] provide sane defaults for the Quick Animate start/end frame and duration numeric text boxes --- .../PictureCollection/PictureCollectionEditor.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/PictureCollection/PictureCollectionEditor.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/PictureCollection/PictureCollectionEditor.cs index 3a3a61b7..2e6f102b 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/PictureCollection/PictureCollectionEditor.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/PictureCollection/PictureCollectionEditor.cs @@ -256,6 +256,16 @@ namespace UniversalEditor.Plugins.Multimedia.UserInterface.Editors.Multimedia.Pi cmdSave.Enabled = coll.Pictures.Count > 0; cmdSaveAll.Enabled = coll.Pictures.Count > 0; + txtQuickAnimateStartFrame.Minimum = 0; + txtQuickAnimateStartFrame.Maximum = coll.Pictures.Count - 1; + txtQuickAnimateStartFrame.Value = 0; + + txtQuickAnimateEndFrame.Minimum = 0; + txtQuickAnimateEndFrame.Maximum = coll.Pictures.Count - 1; + txtQuickAnimateEndFrame.Value = coll.Pictures.Count - 1; + + txtQuickAnimateFrameDuration.Value = 500; + if (coll.Pictures.Count > 0) picFrame.ObjectModel = coll.Pictures[0]; } From 0d624fd457e42a172a8b43e575b02238e7f345ba Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Fri, 14 May 2021 23:53:06 -0400 Subject: [PATCH 3/9] remove extensions compiler so we get a clean build --- .../UniversalEditor.Compiler/Program.cs | 87 ------- .../Properties/AssemblyInfo.cs | 46 ---- .../UniversalEditor.Compiler.csproj | 47 ---- .../Associations/FileSystem/AWF.uexml | 20 -- .../FileSystem/Abomination/AWFDataFormat.xml | 117 --------- .../FileSystem/Abomination/CLTDataFormat.xml | 44 ---- ...versalEditor.Extensions.Abomination.csproj | 58 ----- .../DataSetCollection/SDFDataFormat.uexml | 20 -- .../Scientific/DataSet/DataSetEditor.glade | 39 --- ...iversalEditor.Extensions.Scientific.csproj | 54 ---- ...891C1AE-6699-45DA-8B22-13BCEBB63364}.uexml | 77 ------ ...4EC64DC-6D44-11DD-AAB0-C9A155D89593}.uexml | 28 -- ...184B08F-C81C-45F6-A57F-5ABD9991F28F}.uexml | 46 ---- ...AE04EC0-301F-11D3-BF4B-00C04F79EFBC}.uexml | 42 --- .../Properties/AssemblyInfo.cs | 36 --- .../Adobe/AIR/Basic Project.uexml | 28 -- .../Adobe/AIR/Images/Application_16x16.png | Bin 702 -> 0 bytes .../Adobe/AIR/Images/Application_32x32.png | Bin 1408 -> 0 bytes .../Arduino/BlankProject.uexml | 34 --- .../SoftwareDevelopment/Arduino/Blink.uexml | 55 ---- .../Arduino/Images/Blank.ico | Bin 4406 -> 0 bytes .../Arduino/Images/Blank_16x16.png | Bin 728 -> 0 bytes .../Arduino/Images/Blank_32x32.png | Bin 1544 -> 0 bytes .../Arduino/Images/Blink.ico | Bin 5430 -> 0 bytes .../Arduino/Images/Blink.xcf | Bin 4564 -> 0 bytes .../Arduino/Images/Blink_16x16.png | Bin 811 -> 0 bytes .../Arduino/Images/Blink_32x32.png | Bin 1832 -> 0 bytes .../C/GTK+ Application.uexml | 61 ----- .../COBOL/Class Library.uexml | 37 --- .../COBOL/Console Application.uexml | 43 ---- .../COBOL/Database.uexml | 64 ----- .../COBOL/Images/Application_16x16.png | Bin 770 -> 0 bytes .../COBOL/Images/Application_32x32.png | Bin 1521 -> 0 bytes .../COBOL/Images/Blank_16x16.png | Bin 651 -> 0 bytes .../COBOL/Images/Blank_32x32.png | Bin 1178 -> 0 bytes .../COBOL/Images/COBOL.xcf | Bin 13945 -> 0 bytes .../COBOL/Images/Console_16x16.png | Bin 818 -> 0 bytes .../COBOL/Images/Console_32x32.png | Bin 1629 -> 0 bytes .../COBOL/Images/ControlLibrary_16x16.png | Bin 780 -> 0 bytes .../COBOL/Images/ControlLibrary_32x32.png | Bin 1504 -> 0 bytes .../COBOL/Images/Database_16x16.png | Bin 808 -> 0 bytes .../COBOL/Images/Database_32x32.png | Bin 1787 -> 0 bytes .../COBOL/Images/Library_16x16.png | Bin 791 -> 0 bytes .../COBOL/Images/Library_32x32.png | Bin 1686 -> 0 bytes .../COBOL/Images/Service_16x16.png | Bin 804 -> 0 bytes .../COBOL/Images/Service_32x32.png | Bin 1655 -> 0 bytes .../COBOL/Images/Silverlight_16x16.png | Bin 1752 -> 0 bytes .../COBOL/Images/Silverlight_32x32.png | Bin 1752 -> 0 bytes .../COBOL/Silverlight.uexml | 20 -- .../COBOL/Windows Forms Application.uexml | 20 -- .../CSharp/Class Library.uexml | 37 --- .../CSharp/Console Application.uexml | 43 ---- .../CSharp/Database.uexml | 64 ----- .../CSharp/Images/Application.ico | Bin 5430 -> 0 bytes .../CSharp/Images/Application.xcf | Bin 4172 -> 0 bytes .../CSharp/Images/Application_16x16.png | Bin 845 -> 0 bytes .../CSharp/Images/Application_32x32.png | Bin 1260 -> 0 bytes .../CSharp/Images/Blank.ico | Bin 5430 -> 0 bytes .../CSharp/Images/Blank.xcf | Bin 3808 -> 0 bytes .../CSharp/Images/Blank_16x16.png | Bin 726 -> 0 bytes .../CSharp/Images/Blank_32x32.png | Bin 992 -> 0 bytes .../CSharp/Images/Console.ico | Bin 5430 -> 0 bytes .../CSharp/Images/Console.xcf | Bin 4530 -> 0 bytes .../CSharp/Images/Console_16x16.png | Bin 958 -> 0 bytes .../CSharp/Images/Console_32x32.png | Bin 1525 -> 0 bytes .../CSharp/Images/ControlLibrary_16x16.png | Bin 853 -> 0 bytes .../CSharp/Images/ControlLibrary_32x32.png | Bin 1738 -> 0 bytes .../CSharp/Images/Database_16x16.png | Bin 905 -> 0 bytes .../CSharp/Images/Database_32x32.png | Bin 1996 -> 0 bytes .../CSharp/Images/Library.ico | Bin 5430 -> 0 bytes .../CSharp/Images/Library.xcf | Bin 4172 -> 0 bytes .../CSharp/Images/Library_16x16.png | Bin 836 -> 0 bytes .../CSharp/Images/Library_32x32.png | Bin 1393 -> 0 bytes .../CSharp/Images/Silverlight_16x16.png | Bin 879 -> 0 bytes .../CSharp/Images/Silverlight_32x32.png | Bin 2018 -> 0 bytes .../CSharp/Images/Test_16x16.png | Bin 901 -> 0 bytes .../CSharp/Images/Test_32x32.png | Bin 2017 -> 0 bytes .../CSharp/Silverlight.uexml | 20 -- .../CSharp/Windows Forms Application.uexml | 154 ----------- .../IronPython/Console Application.uexml | 84 ------ .../IronPython/Images/Application_16x16.png | Bin 796 -> 0 bytes .../IronPython/Images/Application_32x32.png | Bin 1691 -> 0 bytes .../IronPython/Images/Blank_16x16.png | Bin 726 -> 0 bytes .../IronPython/Images/Blank_32x32.png | Bin 1404 -> 0 bytes .../IronPython/Images/Console_16x16.png | Bin 904 -> 0 bytes .../IronPython/Images/Console_32x32.png | Bin 1818 -> 0 bytes .../IronPython/Images/Library_16x16.png | Bin 814 -> 0 bytes .../IronPython/Images/Library_32x32.png | Bin 1831 -> 0 bytes .../IronPython/Native Application.uexml | 25 -- .../Windows Forms Application.uexml | 24 -- .../JSharp/Console Application.uexml | 84 ------ .../JSharp/Images/Application_16x16.png | Bin 851 -> 0 bytes .../JSharp/Images/Application_32x32.png | Bin 1816 -> 0 bytes .../JSharp/Images/Blank_16x16.png | Bin 726 -> 0 bytes .../JSharp/Images/Blank_32x32.png | Bin 1404 -> 0 bytes .../JSharp/Images/Console_16x16.png | Bin 969 -> 0 bytes .../JSharp/Images/Console_32x32.png | Bin 1874 -> 0 bytes .../JSharp/Images/ControlLibrary_16x16.png | Bin 850 -> 0 bytes .../JSharp/Images/ControlLibrary_32x32.png | Bin 1806 -> 0 bytes .../JSharp/Images/Library_16x16.png | Bin 845 -> 0 bytes .../JSharp/Images/Library_32x32.png | Bin 1866 -> 0 bytes .../JSharp/Windows Forms Application.uexml | 155 ----------- .../VisualBasic/Class Library.uexml | 35 --- .../VisualBasic/Console Application.uexml | 40 --- .../VisualBasic/Database.uexml | 64 ----- .../VisualBasic/Images/Application_16x16.png | Bin 809 -> 0 bytes .../VisualBasic/Images/Application_32x32.png | Bin 1585 -> 0 bytes .../VisualBasic/Images/Blank_16x16.png | Bin 677 -> 0 bytes .../VisualBasic/Images/Blank_32x32.png | Bin 1253 -> 0 bytes .../VisualBasic/Images/Console_16x16.png | Bin 918 -> 0 bytes .../VisualBasic/Images/Console_32x32.png | Bin 1756 -> 0 bytes .../Images/ControlLibrary_16x16.png | Bin 825 -> 0 bytes .../Images/ControlLibrary_32x32.png | Bin 1593 -> 0 bytes .../VisualBasic/Images/Database_16x16.png | Bin 893 -> 0 bytes .../VisualBasic/Images/Database_32x32.png | Bin 1923 -> 0 bytes .../VisualBasic/Images/Library_16x16.png | Bin 822 -> 0 bytes .../VisualBasic/Images/Library_32x32.png | Bin 1735 -> 0 bytes .../VisualBasic/Images/Service_16x16.png | Bin 864 -> 0 bytes .../VisualBasic/Images/Service_32x32.png | Bin 1744 -> 0 bytes .../Images/SliverlightApplication_16x16.png | Bin 845 -> 0 bytes .../Images/SliverlightApplication_32x32.png | Bin 1911 -> 0 bytes .../VisualBasic/Images/Test_16x16.png | Bin 885 -> 0 bytes .../VisualBasic/Images/Test_32x32.png | Bin 1848 -> 0 bytes .../VisualBasic/Silverlight.uexml | 20 -- .../Windows Forms Application.uexml | 154 ----------- .../Images/MSOfficeAddin_16x16.png | Bin 855 -> 0 bytes .../Images/MSOfficeAddin_32x32.png | Bin 1812 -> 0 bytes .../Images/UniversalEditorAddin_16x16.png | Bin 696 -> 0 bytes .../Images/UniversalEditorAddin_32x32.png | Bin 1276 -> 0 bytes .../Pascal/Blank Project.uexml | 19 -- .../Pascal/Class Library.uexml | 19 -- .../Pascal/Console Application.uexml | 19 -- .../Pascal/GUI Application.uexml | 19 -- .../Pascal/Images/Application_16x16.png | Bin 2082 -> 0 bytes .../Pascal/Images/Application_32x32.png | Bin 2082 -> 0 bytes .../Pascal/Images/Blank_16x16.png | Bin 865 -> 0 bytes .../Pascal/Images/Blank_32x32.png | Bin 1968 -> 0 bytes .../Pascal/Images/Console_16x16.png | Bin 933 -> 0 bytes .../Pascal/Images/Console_32x32.png | Bin 2217 -> 0 bytes .../Pascal/Images/Library_16x16.png | Bin 903 -> 0 bytes .../Pascal/Images/Library_32x32.png | Bin 2315 -> 0 bytes .../ActiveX Application.uexml | 19 -- .../Visual Basic 6.0/Blank Project.uexml | 19 -- .../Visual Basic 6.0/Class Library.uexml | 19 -- .../Visual Basic 6.0/Control Library.uexml | 19 -- .../Images/ActiveXApplication_16x16.png | Bin 625 -> 0 bytes .../Images/ActiveXApplication_32x32.png | Bin 521 -> 0 bytes .../Images/Application_16x16.png | Bin 639 -> 0 bytes .../Images/Application_32x32.png | Bin 523 -> 0 bytes .../Images/BlankProject_16x16.png | Bin 654 -> 0 bytes .../Images/BlankProject_32x32.png | Bin 589 -> 0 bytes .../Images/ControlLibrary_16x16.png | Bin 661 -> 0 bytes .../Images/ControlLibrary_32x32.png | Bin 460 -> 0 bytes .../Visual Basic 6.0/Images/Library_16x16.png | Bin 558 -> 0 bytes .../Visual Basic 6.0/Images/Library_32x32.png | Bin 455 -> 0 bytes .../Visual Basic 6.0/Images/Wizard_16x16.png | Bin 495 -> 0 bytes .../Visual Basic 6.0/Images/Wizard_32x32.png | Bin 527 -> 0 bytes .../Standard Application.uexml | 19 -- ...{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.png | Bin 533 -> 0 bytes .../CSharp/16x16/Class Library.png | Bin 459 -> 0 bytes .../CSharp/16x16/Console Application.png | Bin 309 -> 0 bytes .../CSharp/16x16/Empty Project.png | Bin 329 -> 0 bytes .../CSharp/16x16/Server Control.png | Bin 663 -> 0 bytes .../CSharp/16x16/WPF Application.png | Bin 324 -> 0 bytes .../CSharp/16x16/WPF Browser Application.png | Bin 625 -> 0 bytes .../16x16/WPF Custom Control Library.png | Bin 368 -> 0 bytes .../CSharp/16x16/WPF User Control Library.png | Bin 454 -> 0 bytes .../CSharp/16x16/Web Application.png | Bin 513 -> 0 bytes .../CSharp/16x16/Web Site.png | Bin 744 -> 0 bytes .../16x16/Windows Forms Application.png | Bin 358 -> 0 bytes .../16x16/Windows Forms Control Library.png | Bin 282 -> 0 bytes .../CSharp/16x16/Windows Service.png | Bin 269 -> 0 bytes .../CSharp/32x32/Class Library.png | Bin 921 -> 0 bytes .../CSharp/32x32/Console Application.png | Bin 667 -> 0 bytes .../CSharp/32x32/Empty Project.png | Bin 732 -> 0 bytes .../CSharp/32x32/Server Control.png | Bin 1298 -> 0 bytes .../CSharp/32x32/WPF Application.png | Bin 698 -> 0 bytes .../CSharp/32x32/WPF Browser Application.png | Bin 1415 -> 0 bytes .../32x32/WPF Custom Control Library.png | Bin 738 -> 0 bytes .../CSharp/32x32/WPF User Control Library.png | Bin 918 -> 0 bytes .../CSharp/32x32/Web Site.png | Bin 1426 -> 0 bytes .../32x32/Windows Forms Application.png | Bin 562 -> 0 bytes .../32x32/Windows Forms Control Library.png | Bin 703 -> 0 bytes .../CSharp/32x32/Windows Service.png | Bin 595 -> 0 bytes .../FSharp/16x16/Class Library.png | Bin 426 -> 0 bytes .../FSharp/16x16/Console Application.png | Bin 296 -> 0 bytes .../FSharp/16x16/Silverlight Library.png | Bin 670 -> 0 bytes .../FSharp/16x16/Tutorial.png | Bin 419 -> 0 bytes .../FSharp/32x32/Class Library.png | Bin 665 -> 0 bytes .../FSharp/32x32/Console Application.png | Bin 450 -> 0 bytes .../FSharp/32x32/Silverlight Library.png | Bin 900 -> 0 bytes .../FSharp/32x32/Tutorial.png | Bin 800 -> 0 bytes .../Generic/16x16/Extension.png | Bin 283 -> 0 bytes .../Generic/16x16/WPF Toolbox Control.png | Bin 348 -> 0 bytes .../16x16/Windows Forms Toolbox Control.png | Bin 288 -> 0 bytes .../Generic/32x32/Extension.png | Bin 305 -> 0 bytes .../Generic/32x32/WPF Toolbox Control.png | Bin 433 -> 0 bytes .../32x32/Windows Forms Toolbox Control.png | Bin 317 -> 0 bytes ...Editor.Extensions.SoftwareDeveloper.csproj | 242 ------------------ .../Project/SCE.PSM.BasicProject.uetx | Bin 3686 -> 0 bytes .../UniversalEditor.Extensions.Sony.csproj | 52 ---- UniversalEditor.sln | 30 --- 202 files changed, 2621 deletions(-) delete mode 100644 Applications/UniversalEditor.Compiler/Program.cs delete mode 100644 Applications/UniversalEditor.Compiler/Properties/AssemblyInfo.cs delete mode 100644 Applications/UniversalEditor.Compiler/UniversalEditor.Compiler.csproj delete mode 100644 Extensions/UniversalEditor.Extensions.Abomination/Associations/FileSystem/AWF.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.Abomination/DataFormats/FileSystem/Abomination/AWFDataFormat.xml delete mode 100644 Extensions/UniversalEditor.Extensions.Abomination/DataFormats/FileSystem/Abomination/CLTDataFormat.xml delete mode 100644 Extensions/UniversalEditor.Extensions.Abomination/UniversalEditor.Extensions.Abomination.csproj delete mode 100644 Extensions/UniversalEditor.Extensions.Scientific/Associations/DataSetCollection/SDFDataFormat.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.Scientific/Editors/Scientific/DataSet/DataSetEditor.glade delete mode 100644 Extensions/UniversalEditor.Extensions.Scientific/UniversalEditor.Extensions.Scientific.csproj delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{8891C1AE-6699-45DA-8B22-13BCEBB63364}.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{B4EC64DC-6D44-11DD-AAB0-C9A155D89593}.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{F184B08F-C81C-45F6-A57F-5ABD9991F28F}.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Properties/AssemblyInfo.cs delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Basic Project.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Images/Application_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Images/Application_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/BlankProject.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Blink.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank.ico delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink.ico delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink.xcf delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/C/GTK+ Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Class Library.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Console Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Database.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Application_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Application_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Blank_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Blank_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/COBOL.xcf delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Console_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Console_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/ControlLibrary_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/ControlLibrary_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Database_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Database_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Library_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Library_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Service_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Service_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Silverlight_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Silverlight_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Silverlight.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Windows Forms Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Class Library.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Console Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Database.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application.ico delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application.xcf delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank.ico delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank.xcf delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console.ico delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console.xcf delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/ControlLibrary_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/ControlLibrary_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Database_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Database_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library.ico delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library.xcf delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Silverlight_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Silverlight_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Test_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Test_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Silverlight.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Windows Forms Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Console Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Application_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Application_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Blank_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Blank_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Console_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Console_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Library_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Library_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Native Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Windows Forms Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Console Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Application_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Application_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Blank_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Blank_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Console_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Console_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/ControlLibrary_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/ControlLibrary_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Library_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Library_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Windows Forms Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Class Library.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Console Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Database.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Application_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Application_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Blank_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Blank_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Console_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Console_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/ControlLibrary_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/ControlLibrary_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Database_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Database_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Library_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Library_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Service_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Service_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/SliverlightApplication_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/SliverlightApplication_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Test_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Test_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Silverlight.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Windows Forms Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/MSOfficeAddin_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/MSOfficeAddin_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/UniversalEditorAddin_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/UniversalEditorAddin_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Blank Project.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Class Library.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Console Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/GUI Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Application_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Application_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Blank_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Blank_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Console_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Console_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Library_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Library_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/ActiveX Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Blank Project.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Class Library.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Control Library.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ActiveXApplication_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ActiveXApplication_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Application_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Application_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/BlankProject_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/BlankProject_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ControlLibrary_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ControlLibrary_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Library_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Library_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Wizard_16x16.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Wizard_32x32.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Standard Application.uexml delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/ProjectTypes/32x32/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Class Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Console Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Empty Project.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Server Control.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Browser Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Custom Control Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF User Control Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Site.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Control Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Service.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Class Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Console Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Empty Project.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Server Control.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Browser Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Custom Control Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF User Control Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Web Site.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Control Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Service.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Class Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Console Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Silverlight Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Tutorial.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Class Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Console Application.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Silverlight Library.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Tutorial.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Extension.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/WPF Toolbox Control.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Windows Forms Toolbox Control.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Extension.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/WPF Toolbox Control.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Windows Forms Toolbox Control.png delete mode 100644 Extensions/UniversalEditor.Extensions.SoftwareDeveloper/UniversalEditor.Extensions.SoftwareDeveloper.csproj delete mode 100644 Extensions/UniversalEditor.Extensions.Sony/Templates/Project/SCE.PSM.BasicProject.uetx delete mode 100644 Extensions/UniversalEditor.Extensions.Sony/UniversalEditor.Extensions.Sony.csproj diff --git a/Applications/UniversalEditor.Compiler/Program.cs b/Applications/UniversalEditor.Compiler/Program.cs deleted file mode 100644 index f83a9d56..00000000 --- a/Applications/UniversalEditor.Compiler/Program.cs +++ /dev/null @@ -1,87 +0,0 @@ -// -// Program.cs - the main entry point for the Universal Editor Extension Compiler -// -// Author: -// Michael Becker -// -// Copyright (c) 2020 Mike Becker's Software -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . -using System; -using System.Collections.Generic; -using UniversalEditor; -using UniversalEditor.Accessors; -using UniversalEditor.DataFormats.Package.OpenDocument; -using UniversalEditor.DataFormats.UEPackage; -using UniversalEditor.DataFormats.UEPackage.Binary; -using UniversalEditor.ObjectModels.Package; -using UniversalEditor.ObjectModels.UEPackage; - -namespace UniversalEditor.Compiler -{ - public class Program - { - public static void Main(string[] args) - { - Console.Error.WriteLine("uex started..."); - List listFileNames = new List(); - - string outputFileName = "output.uex"; - bool foundFileName = false; - for (int i = 0; i < args.Length; i++) - { - if (args[i].StartsWith("/") && !foundFileName) - { - if (args[i].StartsWith("/out:")) - { - outputFileName = args[i].Substring(5); - } - } - else - { - // is file name - foundFileName = true; - - listFileNames.Add(args[i]); - } - } - - PackageObjectModel ue = new PackageObjectModel(); - OpenDocumentDataFormat odf = new OpenDocumentDataFormat(); - - System.Text.StringBuilder sb = new System.Text.StringBuilder(); - int totalInstances = 0; - - string exefilename = System.Environment.GetCommandLineArgs()[0]; - string workingdir = System.IO.Path.GetDirectoryName(exefilename); - - for (int i = 0; i < listFileNames.Count; i++) - { - string relpath = listFileNames[i]; - if (relpath.StartsWith(workingdir)) - { - relpath = relpath.Substring(workingdir.Length); - } - relpath = "Content/" + relpath; - - byte[] filedata = System.IO.File.ReadAllBytes(listFileNames[i]); - ue.FileSystem.AddFile(relpath, filedata); - } - - FileAccessor faout = new FileAccessor(outputFileName, true, true); - Document.Save(ue, odf, faout); - Console.Error.WriteLine("uex written to {0}!", outputFileName); - } - } -} diff --git a/Applications/UniversalEditor.Compiler/Properties/AssemblyInfo.cs b/Applications/UniversalEditor.Compiler/Properties/AssemblyInfo.cs deleted file mode 100644 index 81603d90..00000000 --- a/Applications/UniversalEditor.Compiler/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,46 +0,0 @@ -// -// AssemblyInfo.cs -// -// Author: -// Michael Becker -// -// Copyright (c) 2020 Mike Becker's Software -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . -using System.Reflection; -using System.Runtime.CompilerServices; - -// Information about this assembly is defined by the following attributes. -// Change them to the values specific to your project. - -[assembly: AssemblyTitle("Mocha.Compiler")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Mike Becker's Software")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("Mike Becker's Software")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". -// The form "{Major}.{Minor}.*" will automatically update the build and revision, -// and "{Major}.{Minor}.{Build}.*" will update just the revision. - -[assembly: AssemblyVersion("1.0.*")] - -// The following attributes are used to specify the signing key for the assembly, -// if desired. See the Mono documentation for more information about signing. - -//[assembly: AssemblyDelaySign(false)] -//[assembly: AssemblyKeyFile("")] diff --git a/Applications/UniversalEditor.Compiler/UniversalEditor.Compiler.csproj b/Applications/UniversalEditor.Compiler/UniversalEditor.Compiler.csproj deleted file mode 100644 index ba1587ea..00000000 --- a/Applications/UniversalEditor.Compiler/UniversalEditor.Compiler.csproj +++ /dev/null @@ -1,47 +0,0 @@ - - - - Debug - AnyCPU - {5E639F63-97B0-4B34-8928-29A5A3C661F4} - Exe - UniversalEditor.Compiler - uecc - 4.0.2019.12 - - - true - full - false - ..\..\Output\Debug - DEBUG; - prompt - 4 - false - - - true - ..\..\Output\Release - prompt - 4 - false - - - - - - - - - - - {2D4737E6-6D95-408A-90DB-8DFF38147E85} - UniversalEditor.Core - - - {30467E5C-05BC-4856-AADC-13906EF4CADD} - UniversalEditor.Essential - - - - diff --git a/Extensions/UniversalEditor.Extensions.Abomination/Associations/FileSystem/AWF.uexml b/Extensions/UniversalEditor.Extensions.Abomination/Associations/FileSystem/AWF.uexml deleted file mode 100644 index 47daf666..00000000 --- a/Extensions/UniversalEditor.Extensions.Abomination/Associations/FileSystem/AWF.uexml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - *.awf - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.Abomination/DataFormats/FileSystem/Abomination/AWFDataFormat.xml b/Extensions/UniversalEditor.Extensions.Abomination/DataFormats/FileSystem/Abomination/AWFDataFormat.xml deleted file mode 100644 index 49ea02c5..00000000 --- a/Extensions/UniversalEditor.Extensions.Abomination/DataFormats/FileSystem/Abomination/AWFDataFormat.xml +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - Abomination AWF archive - Michael Becker - - - - - - - - - Compressed file entry - - - - - - - - - - - File entry - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.Abomination/DataFormats/FileSystem/Abomination/CLTDataFormat.xml b/Extensions/UniversalEditor.Extensions.Abomination/DataFormats/FileSystem/Abomination/CLTDataFormat.xml deleted file mode 100644 index d9634b0a..00000000 --- a/Extensions/UniversalEditor.Extensions.Abomination/DataFormats/FileSystem/Abomination/CLTDataFormat.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - Abomination CLT archive - Michael Becker - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.Abomination/UniversalEditor.Extensions.Abomination.csproj b/Extensions/UniversalEditor.Extensions.Abomination/UniversalEditor.Extensions.Abomination.csproj deleted file mode 100644 index 06f3f7f7..00000000 --- a/Extensions/UniversalEditor.Extensions.Abomination/UniversalEditor.Extensions.Abomination.csproj +++ /dev/null @@ -1,58 +0,0 @@ - - - - - Debug - AnyCPU - {D1FB19C4-025E-4D4A-8532-4196AFCC8813} - Library - Properties - UniversalEditor.Extensions.Abomination - UniversalEditor.Extensions.Abomination - v4.0 - 512 - - true - ..\..\..\..\MichaelBecker.snk - 4.0.2019.12 - - - true - full - false - ..\..\Output\Debug\Extensions - DEBUG;TRACE - prompt - 4 - false - - - pdbonly - true - ..\..\Output\Release\Extensions - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.Scientific/Associations/DataSetCollection/SDFDataFormat.uexml b/Extensions/UniversalEditor.Extensions.Scientific/Associations/DataSetCollection/SDFDataFormat.uexml deleted file mode 100644 index 726c1bce..00000000 --- a/Extensions/UniversalEditor.Extensions.Scientific/Associations/DataSetCollection/SDFDataFormat.uexml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - *.sdf - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.Scientific/Editors/Scientific/DataSet/DataSetEditor.glade b/Extensions/UniversalEditor.Extensions.Scientific/Editors/Scientific/DataSet/DataSetEditor.glade deleted file mode 100644 index 3a1110d2..00000000 --- a/Extensions/UniversalEditor.Extensions.Scientific/Editors/Scientific/DataSet/DataSetEditor.glade +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - False - - - - - - True - False - vertical - - - True - True - in - - - True - True - - - - - - - - True - True - 0 - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.Scientific/UniversalEditor.Extensions.Scientific.csproj b/Extensions/UniversalEditor.Extensions.Scientific/UniversalEditor.Extensions.Scientific.csproj deleted file mode 100644 index 02c81b34..00000000 --- a/Extensions/UniversalEditor.Extensions.Scientific/UniversalEditor.Extensions.Scientific.csproj +++ /dev/null @@ -1,54 +0,0 @@ - - - - - Debug - AnyCPU - {D46D9232-F585-4552-B3CA-6B0F284B746A} - Library - Properties - UniversalEditor.Extensions.Scientific - UniversalEditor.Extensions.Scientific - v4.0 - 512 - - true - ..\..\..\Production.snk - 4.0.2019.12 - - - true - full - false - ..\..\Output\Debug\Extensions - DEBUG;TRACE - prompt - 4 - false - - - pdbonly - true - ..\..\Output\Release\Extensions - TRACE - prompt - 4 - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{8891C1AE-6699-45DA-8B22-13BCEBB63364}.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{8891C1AE-6699-45DA-8B22-13BCEBB63364}.uexml deleted file mode 100644 index 84d05df7..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{8891C1AE-6699-45DA-8B22-13BCEBB63364}.uexml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - C++ Application - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{B4EC64DC-6D44-11DD-AAB0-C9A155D89593}.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{B4EC64DC-6D44-11DD-AAB0-C9A155D89593}.uexml deleted file mode 100644 index 73d849c6..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{B4EC64DC-6D44-11DD-AAB0-C9A155D89593}.uexml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - Common Language Runtime Intermediate Language Project - - - - - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{F184B08F-C81C-45F6-A57F-5ABD9991F28F}.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{F184B08F-C81C-45F6-A57F-5ABD9991F28F}.uexml deleted file mode 100644 index 103e5c93..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{F184B08F-C81C-45F6-A57F-5ABD9991F28F}.uexml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - VB.NET Project - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.uexml deleted file mode 100644 index 141bdc22..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/ProjectTypes/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.uexml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - C# Project - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Properties/AssemblyInfo.cs b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Properties/AssemblyInfo.cs deleted file mode 100644 index 5ee2cb2f..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Universal Editor Linux-Specific Content")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Mike Becker's Software")] -[assembly: AssemblyProduct("Universal Editor")] -[assembly: AssemblyCopyright("Copyright © 2014-2019 Mike Becker's Software")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("f06910f7-0c0e-41ec-b0b2-cb7ef1d18d8e")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Basic Project.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Basic Project.uexml deleted file mode 100644 index 5ab2cea6..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Basic Project.uexml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - Basic AIR Project - BasicAIR - Creates an Adobe AIR application with one form. - - - Software Development - Adobe - AIR - - - - - - - - -]]> - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Images/Application_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Images/Application_16x16.png deleted file mode 100644 index 997510b59a0bebff03352da57c09b73298afe751..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 702 zcmV;v0zv(WP)WFU8GbZ8()Nlj2>E@cM*00JUOL_t(I%cYY)NY!x^ z#XsNQ`)L^_S_(PjCI+DxEkc_hG_%=3UO^!abaGE*H*N0pQ1t_*oRFszsz0sCuC05fzK5ScZxQ z4lTo>1}d7N;t@N-`KKGd9|nM2Z{&r)g852|(p*4l5MM7)0)v2NE?BbL3Jx zq3=2>@MiH7@9z)Q3ButX?wy1H>yICiyn9P?2%HlkjE}Q7JIjG8dgm^!vkPbo~Cam;ocQ=6EeV`hfNsVRz4#D0iSHN+rE)4vJa9Rm)`C?pB{0|PV;4)Swh zfl{$Z0oXN16jYrgk&_JELA367yOz*BH%HIN2rpY&*esX1m(8*^J)ChRuBW2 zgBUolOQ5j2%GIqchO$|j+S+LA>Y{6Ol>BBHRYw(4krNBxsGdwOU9LU$ixhN>ScIJN*0k}6~K zuTcw#8lsS@BjSiTY3hg?gbZ?8!ME>gEPwujh>?mQqNJ*b2r7oCqN0e^QBBz_mg?tw kKL6prKk?@6G0t3n08=AnYixi3kN^Mx07*qoM6N<$f(aiVx&QzG diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Images/Application_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Images/Application_32x32.png deleted file mode 100644 index 51bef30530f9d949c538440b793ee7bc917ca327..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1408 zcmV-`1%LX9P)2`03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00iVoL_t(o!|j(#h+Rbx zhQFG7?o2Xaf{7*~*=R(?7etL9z7XBG67cjasZY>4y? zF_WNQ^A`HnKs<8%p1* zV#l+`8Qpm|io_uWoIn2y?y(gFo11{@;zcfh@-d5MESa$=v1EqKa5HQ&p#jR}WhygD zcS*M0O6yAK}*VCB>)&K^2M`PX06 zWGF(6Gwzb%5j0KU;oBRa9J?anTLMi4BNF}w6bBBle9JA#OL^0*D40pq5;frY=2A=8 zq$gq<4xuzzymzCy2{3{zw)ser*`b%=l9>ocJ5>%F_l=$>#I=j zfgFmB$9xWW7uTsPV>y*rIe3u!PoHM@4L2|<3ch;jB{oJQG#c^w(W4xd@N2JS?c6yW zQsE-&i9RoQY~ulCrgktyis^|v%lF*Fo||rBVKf3@eA{jO?apdd;X8K%aPZhMF4r~F z2&NKsBt0(W1eT*<9tXPY){-Wt;VCegOmfLc3I5@C-^C6bVExi19(?&_1l;@l^E76B z_QDH^2VMNPI)%ID8=!8nx+2zuSU2ORFTUXWlPB4K`|V8r_yc$6&L^Mbnp~BO<~H%{4&1`?JNh#99QDB_AF+Lb0?&U6uq;6a{;4zM13S ze8ckIy#Sm)bB0T6YhXs*)q_@V$_4Wwh!g>#9*SCGn%!e&P*q)0k~@E%JvxhC|5DqYY$2-h|c3@Tvca=ez=szJ22J#s(s%rgM&0M?|;0SEr3B=8Hkt+%;}n9?aw>a3b3D*RKtN - - - - - Simple Arduino Project - SimpleArduino - Creates a simple Arduino project framework. - - - Software Development - Arduino - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Blink.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Blink.uexml deleted file mode 100644 index 965357f5..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Blink.uexml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - Blinking Arduino - BlinkingArduino - Creates an Arduino project that blinks an LED. - - - Software Development - Arduino - - - - - - -/// The setup routine, which runs once each time the board is reset. -/// -void setup() -{ - // the first thing you do is to initialize pin 13 as an output pin with the line - pinMode(13, OUTPUT); -} - -/// -/// The main loop routine, which runs over and over again forever. -/// -void loop() -{ - // you turn the LED on with the line - digitalWrite(13, HIGH); - // which supplies 5 volts to pin 13, creating a voltage difference across the pins of the LED, lighting it up. - - // do nothing for 1000 milliseconds (one second), giving enough time for a person to see the change - delay(1000); - - // Then you turn it off with the line - digitalWrite(13, LOW); - // which takes pin 13 back to 0 volts, turning the LED off. -}]]> - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank.ico b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank.ico deleted file mode 100644 index 730d7ed35bce9814cae45898b2bed8961193e444..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4406 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 TKD-EQ+@zL1yaGGPwn+F7gK3`W diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink_16x16.png deleted file mode 100644 index 7ee3754fd8fd36a2305cd91bdf0485ae4935df44..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 811 zcmV+`1JwM9P)WFU8GbZ8()Nlj2>E@cM*00NImL_t(I%bko%NR(j| zhM#Zz=b}TIQko@7PHGZmh2f=0D&mWZnEq`Y<4^e+~tz!^? zOZ9Dj^A~Al%$#k^Ow^bkGsc8}8Z#O;=D^W&egJD$+AQe)=RtacAqrQdvM)WI$*9C7 z;%E&7co_0&$~(r7jnb3W}-j?Zd3g z#bjjg!|ftJ&V3MAZaEuV(DR=6GJqFgQ5M*owCNVf+uHiifU zh)Rhtg5Al>_F4kiu`-SFj!r_yYS@*Qjx7yYO?TOoxt4>^I%%GmU>5L>j6f*FtZids zNOCzd9SA5(OQFi=LtME=X?q)qH?LEX>7#MSUUsIg=1TW#q%jZ-!ssY-N}&z75MB!) zYQx2?MV!pr!29q7xkY6pT5iT7Q7&vO=0j>5;m@CN3=d-*f?y=Vw32A>S_04pY;8z# zCs2~&!ImJk0U#WFU8GbZ8()Nlj2>E@cM*00xXnL_t(o!^M|fj8#_^ z$A9~rbMMTZnLB*UOxjSuGUJTejt!#LCX9*LA~e%N5v`Dc zgH23)Flh-bqb- z?DfC@^|d$rpMM5`&5tUoAOfm@g3O)^D4-I`RKu~>$%tg4;aH<_RZj_ZPYjtV0568J zc3t$bt!-L;G+Gy_112-yGV7aIHcS85(HRUlGx^Yn6P?MCRtM3<%p?#sb4ZpW9l}FXf=_W;)h7j%-l!k;;Xsfje|AHsy-K@7^wGk-Mjvou~r`^kqqi$ zWfp*48y{!q_VsiByn?FEiakZB#+KGxuUea{#$jOvL^NLe<*%OOr4vK*FmMwOgaNFm zn$UQi;i}PUz}EoPi7T&a&dgJ@Gv0x|BpXIyT19u`!+=I?l;W zn`!ovpm42NV%7dZ3YAKjR^>AL4(+GkYeiOm4X2|6&Yq=rc$gJK$C(hH{m=$npOc1V zYh&Z>sT3nyzDM@)9prZG;I*~uXmnk!`DH%0cMpnUMY!kHS142}v?P-JY0Y~6GMb@3 zC-9l&IDLK4*9Sd4m~@)Ffz1JYcUi~t^VWf1{Np$nL+654E^m8`<>{6%>J`>3xq~ZP zx3jFNnS!e2~$->5mX2gJ1xLhc*Adw*DdXxi8@7}>UZG5r(`#W1mxe4~&zm5%W zz8==EZ#|4_3?lHs8wcql%z4lE;l>Rpl`z>XHV6n*34lPAdlF4wzf9@b7=Vi67(>xo zRKdk?@{vs;I9rQ&Re1LFshGGI&isq#R;?zmmX$#f3s@1nd>+Qfp`ih$rU-nWKm@Cb zRn<1v>j9Fn3k0~gqXXXxyE7R?4GG63;kbB?gXg%2D1ZLwB8RVx#sCICy1+YEM=2DF zv}CiP0TC#bU}6HUUx!?dAY#CVwoHTPE(TIgec9c4*WG~f^}_MxXQL82l;zc zEv*RZ`(LR`#f{%Bp32I z6vI=!U*?7Tz7d@-l$Tbo<%!SU4V4NFYNE7N@O{YV(OeEGm8e*Y)H)oF;s6P6M(2y( zPp@3X54w7Id-O7y>1jlvvn9=%+wY(~nZk-7n7H=;q-P~xDO7Ox4MqVSrXR&3#u%*c zBO)>V0IuV>vj8Zz+HMt=HZ`-gvpa03s$mDLYxAO7Ydi|KHK#dM$kX8_Xe^gW>$+jd5QYJ%rYt(bwq=xvUGVD2Y>W44!w7T z(&QxLm(J6iQYI&IBpVw@H#agic7>uQC{2y+{jgkoJ!#wz4ZyBH9MJ9GegGSvBQ-W? zRZ*!wSk&aUUN=4?g!A7%Kfw6tdG6ov1dXX?4i4_3P;r@}o%as>ZtkgA1WpfUup(Hi zhzNld#41(=u@cH8l!+)}B?Kvgiq^@5>FG&Sl?&(3;(A_P3VyX z#%vTsRpZt5a2!Q`bxjpBJx)tfdF#mEa2$uOHn==CM$_$Wx8}w(Ffj1;z`%e4tDBmd z?(6UG*Y57_S7+-vpB4ZSalDZFpin574I4Jl($c~$0|2 - - - - - - GTK+ Application - GtkPlusApplication - - - Software Development - C/C++ - - - - - - - - - - - - $(GtkPath)/include - $(GtkPath)/include/atk-1.0 - $(GtkPath)/include/gtk-2.0 - $(GtkPath)/lib/gtk-2.0/include - $(GtkPath)/include/gdk-pixbuf-2.0 - $(GtkPath)/include/gio-win32-2.0 - $(GtkPath)/include/cairo - $(GtkPath)/include/glib-2.0 - $(GtkPath)/lib/glib-2.0/include - $(GtkPath)/include/freetype2 - $(GtkPath)/include/pango-1.0 - $(GtkPath)/include/libpng14 - - - $(GtkPath)/lib - - - gtk-win32-2.0 - gdk-win32-2.0 - atk-1.0 - gio-2.0 - pangowin32-1.0 - gdi32 - pangocairo-1.0 - gdk_pixbuf-2.0 - lpango-1.0 - cairo - gmodule-2.0 - gobject-2.0 - gthread-2.0 - glib-2.0 - intl - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Class Library.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Class Library.uexml deleted file mode 100644 index 86a4156b..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Class Library.uexml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - Class Library - ClassLibrary - - - Software Development - Common Language Runtime - COBOL - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Console Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Console Application.uexml deleted file mode 100644 index 3c2a007d..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Console Application.uexml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - Console Application - ConsoleApplication - - - Software Development - Common Language Runtime - COBOL - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Database.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Database.uexml deleted file mode 100644 index 0701c8c2..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Database.uexml +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - Database Project - Database - - - Software Development - Common Language Runtime - COBOL - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Application_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Application_16x16.png deleted file mode 100644 index de8f117890d16957e801d60e202851dc37fd12ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 770 zcmV+d1O5DoP)*|03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00L%7L_t(I%cYY`XjNAf zhQD)jOrp7JOz?%$5?>gdDGr<{6$G6)696j5+0 zIEb%-IM66~t2C)3n#Vo&p0oFQIJlQ2N^#*6C>^vgH@a)1<|m~z|!95wi5_anwW1P-5G%cdRO zh!|=h>WDgO38N!b07|o8)Eut<{+i<#db#m%D;f;b22{+a0b&qh1R#A=`E;P%_J-kq zpCBT{qLU;YdbE&WnuCjl7vzV96Ym@H5<#k9m<*pK5bB{R&z=o7|%D;wR|_n&aLOv;U0e8yB_<{ zK}(u&{kI{W4^FV`$9C>r`Uh2r(lAITYXw+AmIp+P;ZK3S8@=Gl{El{B434wEZx!aw ztB2#HttHeT#wH-ka?l#JdcfRSRGx!ciil$lNeTYEQeiPY*w`>R;-LvDHS($KpaA>_nRXXUakiXil#J(|q?mJ?rW zW7>CU&w1ed?YobBY|2^ET_$P=q7V$s{hRCj8H#PJTpZ_+761SM07*qoM6N<$f*r?9 A(f|Me diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Application_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Application_32x32.png deleted file mode 100644 index f6eb14be500e2d939748dfe45e889bacf8e57baf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1521 zcmVWFU8GbZ8()Nlj2>E@cM*00mV^L_t(o!|j(@s8&@J z$AA0YYg(E4qJ)iRNeYz|R@nSdG(1GqLo{IZU=bQ=85%@1KtTmr3B5E*MFUh&7)_E? zQeAIZXmq=n*`(>0_d49+>^1bT_jkT?KCclN^wNRzowN5od#|1BPQbp8E~(+_v)B?5nqpke{tN%{Jxy)b8f20MJ$S=0pyuP4Mz=E?PJ2Z4U0; zPvz^@x83Y4ZFYT7{%pw z2iyDiqTm~LRUogz*5bd)vE}93HBhIlPNCJzR~$I=g)Pj#?xMZ%aB$DY4J@~f{BDjp zn1Q*s+U~gz)WFQkzIz^elnYC>Ks>gq4 zQnOQ9(T96L%@8rv^zR*TPd|Hh3I`q1iF>Gt%H2_OUV8XP09L>AM>+SLOD6+x$t_1_ zN-78$h#6L;VDqnyPetuCQ{(%MTM$)D9WmqJ2?sH_OX*(MhnS&eeDdWw7F>TNogLwC zg`30&<^eNHNB}BU*FX_v&fybRSHd^k6kPcF*NXv|b;Ji?f?L6=HHW24cISYxsg9j= z`b6g5dpz5F_weAY8vwX)-jOZtD}ofYng%)w(TZ`!T?sDW%B+*$0N{~(&IT(8L%R_X zp1HS=5%HAU=7=Pv4-YAmri^9Ml(DIHxL2r4PqlUg3Mq|m8@!w`JpzqhHR;Oe`lp$0GA*9XALH z@4#Z(57xeQ2O_O#*LM$ad)C0z6UGB@{!K^m#mm2ydMN9M8m3+sp<4uvj6^LzT(j(W zv{Fu+JDR#93S!Q;#e3X3??%p@dw4QZsy*ERA>{IGX+ID(+^YzPf<~}{B1)bdn6t2# zVz3_>Y9K>(1U`H1_C$k7Yvb{Jp3LuB(SvE;&YK8S#=2ruumaB%Xcpebj~-Xz649wd+cQlc!9?s}6`NSj4PI3+AZbfACn$L*CKS&S#oX zP|432>FMdouK9c9d!pWB}L)Es}Sq5%=Zb%eNc3o&ZB&0e^4W6FZT2HK{9 zcb~frH4ssrd*$_9?~|jrmB%m7dvq%ey>`Y1=xX#gShn(HMr0<_j}atO@b>*vQ^d_P zom$pH$^cbIRQc%D$HM;nGwND$^A+U+&%VCeH6u_KBTWTJGsjIz%t2K4`>$E;Kq6v@ z!se~RsnTVG>bU||PsQ#;`IjAN^f!3^l{XoYNKpteMv5X5W4eo&QniQ?i4j%ZZwLMY X5s7m(^hv5$00000NkvXXu0mjfO(WI4 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Blank_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Blank_16x16.png deleted file mode 100644 index 95c0b965a384849e6e2286751362925d5fdd63e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 651 zcmV;60(AX}P)WFU8GbZ8()Nlj2>E@cM*00HkwL_t(I%gvHIYgADb zg}*ynlTz@Rp-KY~tXF7CQDe=Kv*C zvkZX3Qdkn@u_cy&D+=U_{K=SMrgS~3J?Md@PKQNc2Tv!U3~pG%jxb`LSnEqMcPon90X)$ zD*!349+B7c5EhUW;K8kLG_P-9_u&mpjV@p=NFd8r0l;fvb8?8ofm2)9cd`Yy{Pkbn z8N)*et!@y?pF_*1So=Z=NJNrPE3-!Fewj2aVD$~YjEwQ7Zve9(GsDcu+%YrU0&~aB lu_ni791rKmWFU8GbZ8()Nlj2>E@cM*00aI>L_t(o!|j&Oi36Xk%%xx34sX`L5rxMz@$ZLVXM%>en2$@EdpIcw8*G`AX>O> zl`|uiG-D*ffKXDK86797_nfE2z3+YR`_A_}wQDmMzP$II``&ZT`#jG%_X}&|e;%Qp zJj3@A;0Q-3*&R??dw$lo_Sy;Q*_^4@!1=TI5~K|FU1eIdUYN%?@hsf z88s48$c`f#Y3|)5;+I=OtEvohUrmItu<$o8?mN%uokM&zHNlrt6MS)gf;&cs_<4FE zQj%!Nf$JZMB5$5CnMj+N;s1ufrRhZgPMqF>D`nj-_l$A6o zVD40vV{WS_aPxY_Z5!4_xFw{}64lwsD*$}^&F}flBL}wt@Z>9Z$KaWg1|d0A?zpdl zfCRUX4zhg1V&*lZ$;m)iT_ZVBud62D?wKB|yrqG`K0T;es#A)B;gKkv@jaV3{N8-37qp(OD|*E-doe{wV-< z?AjP9a5(qLRsQ(x7EiyiJ?o+F6K2+51G&2;zTf<894YcrnKGmyWiY;H6ED1dFD~)< zsmlO-{qa1*>(^yHSWzV|VW$2GD8JnB?G9mp++NkuiKnt__4lDb2%+f(iu6Y63|Aiw zQjK?|MMJrLKWK5{ptKtO#E$d0{n=H6T+&Fxk+882IPx*uwO2LJ^K zsSQh*8}9umpsClgA{@2(EGojvdm`=C`j~z0$LxE{*m|CNcROy5`X%5FKV7;KyH%>! zDv8DvTWIWLanD_Ng48@ZHWz-6^XPHM)%bBOFf;ut=IXD3V<$gMj-%7)Jc`CW1yK{c sw#RuCBeg9F7O5yhwfOSnq@xm+T`Qr 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 PcneNu|G#BBvxE5`9=Xq) diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Console_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Console_16x16.png deleted file mode 100644 index 79aa0dee2d8807230e2b9ca8e85ac0dfe3b06ea4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 818 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 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Service_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Service_16x16.png deleted file mode 100644 index bbdb09b040608853ba8634dee557dae8de7df6ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 804 zcmV+<1Ka$GP)WFU8GbZ8()Nlj2>E@cM*00M|fL_t(I%cYY`NL5i3 zhQD*}!FSS&d|%UyD4{{opax-5VOTWkK{N>(q)`MBA%vwwkAZ>oP9Z3e0tY?V(*W4B6Ey<2&c5gPrIp<7UXS(+MhB+K$ZrE>!1H|ooZ;bq3EAHm z8SX|aAK%R+A@MPtPjlF?rI_aWK^``bvTRivoAzW;ur?hdg6FA#KqNv+!goRz*p^_l zU?~sFvKbl~#SX#2+T|1#r!mm~BTgVQ1it4nWs=Fx+W^3^3s6xuNn~u2vO}7XlTKrG zKiT=olp|5)a zC&5M=@csA*o*TuDMFB`l3Xz)PkdmB;-}{WMwN+R)v|Jse^WGSX3sbNNw(*<5ccX|c z7y%+{yUx{C^Tg>-EZaExg#tsSYZW8o%r_}>l)fmhr_vN#wVh0000WFU8GbZ8()Nlj2>E@cM*00rAgL_t(o!|j({j9pa~ z$A6od&J;Q=lZdkiT8oFh@4n~U4g~bU7fy2TIcuM@ z_FDV@|F5;rf%lL9^Wi!dU*hj(fMO_y#c>5J+M3Rtv9hhWc<%aiY?6Pl$N01Z=r3mT z5f+vlEd4r@mIGT)f+vnsc)I)S7*i?cNppeX3JFj^qdVdXRsqJID~I8dPxr1X%s58^ zR+_}pMBM;xj_2JRDfcGWJAMKMFEU+#ya-#D|02g4r|Z=~nX)p4S_)rC;M`vw;o7f$ z?nFEc%wli_jkXf6)ldUfP_wRW7RNvoR4t9&a{C>O{bUXV-tM^R%6%LdpH22zA6vw> zyVj+^ouFpK;H2Q4`(|MQ2M-=VMCYbpE;XpV%{_Bz;($iH*4`w-$|a)Zy&(E76R1z- zeCP7#S+j142mZ1#tj3JHzc)_h`8uoCFX{&FAV8!@yXTNhpixB7cY}Z${Bx`hz;}Oq zR-7MO1m6;)GJov+Z z0kHSciR63UB})MK{I^y_N(u-mcvZAW!5fFF=0#CaUfq8LFM^8URavm;6dKdQ*uDy0 z6;b6+&+X&7tG-CzN$wqm8^i}{4pj|E0OGZ*fh_lYaCmQF`HHE4d0selF#zjN`va)Q zG~$~=P|DS!Y7l{$s0WXc%_1K^8k4HZ*{g^JO;qJb52bZ?D^ThIeNIo z&w)h2mv3H!C_K2c0>I;U zzs|t?z7DHVh=z!j6KLm>pfA!9AatqDMLUftl-9vF+a=LSgt^q`=Q*5np&ds(s0wOD z4dfnE9}viVT3vAJ@Mf5TNC+ficqQ>HV$7fCP<1qBgvN~Y^b|`AlHM}Ra}Sz>=H$6g z?RCR-<7CYm`D_(wRngWYnuq=1>2r=SG&Kb)w*&CfSe@&m23CD|2!IQ}v68<&^q-`M z)IUT~v9btFbC8^NF6qH%?_3*TPbdUr#Ej`}n^}F={cMht9DC}Uti9p;tXR2*1q+8$ zbpSXQ+p~uKz>8v5M8FG34w{kWJ~}%#ZXG9U)bPzJzF9`#$)!^zh^xmY`M~6HmMmSt z$x*mc(1S|c&N~Pc?)B%nfM!^vK%!cozT=DlUCcc6enSQ7S6y1(wCeTP^{lk-caFY3 zhbg!|m_OK`&Fi+|kENU)h%eE?GW|6%+6xpgF1;xtGNCQ@5=~%^_;syyqT%df6k%>7oPY z^ThT)C;OVMyLqirq2*!0&~WJes_05(%bhiwx^o|YCU#(TS^YOE3`*oc8 zA&-v~JaX$QR099kKen^v)b2^(cy)pwY~RA@=qSsUEpzYX%c%dxEmtIm`*-g(i3p@- zB;aeqT(s+anza_KdW&qT%{5zhb9CY`$0sM4nW_KRpJt^O67Ll+@Wz|1(CK0q{M!0^ zIrRE|YPHGmj%bFUJonl&?6~1-07gbe7#JA%-x8?Ss{Hcd-_iCtS?0;}oGi;}w^}qB zGqhSwyce?EBi=J~>S9JmM*$cZ7+_>%#J$%9-U8ZiD|HjfPUQdq002ovPDHLkV1io4 BD<=Q| diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Silverlight_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Silverlight_16x16.png deleted file mode 100644 index e8a90405c7d69e0ad3e1e73eade509f1b3ce99fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1752 zcmV;}1}FK6P)WFU8GbZ8()Nlj2>E@cM*00ulsL_t(o!|j({h+S6| z$A9~L+_^J%?%X?*nMs<&rpZj3FB45mn?h<4>O-rAf~9CHeNe$5`VuHwsl-~e6fqVg zElRP1LLr8V6iV};AT3R_&5#%yo6eB0na)RMl9@YqZtmyVYx!`_oO|x%CiTJKiyIDm z?{)TG>%aeN?Y;Jf|Cj%9G0TmwazYgl6hYBQE`UaTiR)!qYhN%?-JG-BC!Qbnk8_^^ z@RDeDkZqZu@wcqB)v&Grc&(ho=;qkt6l0rCJ5o#n00}ml5|ij9Xk5`UC?=lM{A&^# z+W^oOB^oPg8Zd3fn>LVF0$eG-#s#NXN>HApt?B=yk0nyKG6q^**6KoOF`odi=XW!F z_sIvZJomx0D;o&?+b|g~+XANEw5O(x3C0FE&0gkYg7Fa)TI9*nIac zJ}3qR4a@cn+%u43cm=gbXKR$Bt+rfJ9S*4uhn>6g92(if4}Q6gx8IzN8Ifo!23A^P zpasCuxhm5Q7|yzE9>|dCN|E&(wsbcEJh%4)9^TN!sF4#b<^xSZQUz12|i#=1yIyBUX7}&?oD;;r7$;PyuDJWO?@Y-kF=k*A|&fR&Qd3ie@UMzF?`Evlg_`Nfv(rzLi5)8aE zRnnnsiepQb*{bDq8S=ixHQ*UTrweHZ(w?E)b0}1W$*N_#V(Ic7)&62}OD*ybFsW|gU;Wo#h;55$E# zvL3xDhaT6EaSc_gOq2rFc6n^gdUU#mxtemmY$;2Fg>t~RemD#e*X`qE`G`-rV0J zs;CWvclWmJHHj;B!E{}Cr!3U-9`9F#Tp%1Dzrw{!^Nh}1;mCM_zg@bDEte=PF7n>Y zB5zGDac-f^ntGAUxzil{$+LHHelm%CoV{iNljf%G}?a~K4y1t9qs^zyI6&dhT z%w=-;4xC-8kji+h=}R+LvmBc&(dBzQd3%-(Rg3K#wYDsP-C((NkNK&`6WwmyqB@ZRWUeAi*$J-47IPKK+s66Sjm zR1_zE3Q-!>e6*zZg04o94UV{`H-_{!x)Xo-ML2pC%;% zWgFl-9aN^~xja6@*1i;veeMpvK9n^#9`Q)l$IJTw0000WFU8GbZ8()Nlj2>E@cM*00ulsL_t(o!|j({h+S6| z$A9~L+_^J%?%X?*nMs<&rpZj3FB45mn?h<4>O-rAf~9CHeNe$5`VuHwsl-~e6fqVg zElRP1LLr8V6iV};AT3R_&5#%yo6eB0na)RMl9@YqZtmyVYx!`_oO|x%CiTJKiyIDm z?{)TG>%aeN?Y;Jf|Cj%9G0TmwazYgl6hYBQE`UaTiR)!qYhN%?-JG-BC!Qbnk8_^^ z@RDeDkZqZu@wcqB)v&Grc&(ho=;qkt6l0rCJ5o#n00}ml5|ij9Xk5`UC?=lM{A&^# z+W^oOB^oPg8Zd3fn>LVF0$eG-#s#NXN>HApt?B=yk0nyKG6q^**6KoOF`odi=XW!F z_sIvZJomx0D;o&?+b|g~+XANEw5O(x3C0FE&0gkYg7Fa)TI9*nIac zJ}3qR4a@cn+%u43cm=gbXKR$Bt+rfJ9S*4uhn>6g92(if4}Q6gx8IzN8Ifo!23A^P zpasCuxhm5Q7|yzE9>|dCN|E&(wsbcEJh%4)9^TN!sF4#b<^xSZQUz12|i#=1yIyBUX7}&?oD;;r7$;PyuDJWO?@Y-kF=k*A|&fR&Qd3ie@UMzF?`Evlg_`Nfv(rzLi5)8aE zRnnnsiepQb*{bDq8S=ixHQ*UTrweHZ(w?E)b0}1W$*N_#V(Ic7)&62}OD*ybFsW|gU;Wo#h;55$E# zvL3xDhaT6EaSc_gOq2rFc6n^gdUU#mxtemmY$;2Fg>t~RemD#e*X`qE`G`-rV0J zs;CWvclWmJHHj;B!E{}Cr!3U-9`9F#Tp%1Dzrw{!^Nh}1;mCM_zg@bDEte=PF7n>Y zB5zGDac-f^ntGAUxzil{$+LHHelm%CoV{iNljf%G}?a~K4y1t9qs^zyI6&dhT z%w=-;4xC-8kji+h=}R+LvmBc&(dBzQd3%-(Rg3K#wYDsP-C((NkNK&`6WwmyqB@ZRWUeAi*$J-47IPKK+s66Sjm zR1_zE3Q-!>e6*zZg04o94UV{`H-_{!x)Xo-ML2pC%;% zWgFl-9aN^~xja6@*1i;veeMpvK9n^#9`Q)l$IJTw0000 - - - - - - Silverlight Application - SilverlightApplication - - - Software Development - Common Language Runtime - COBOL - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Windows Forms Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Windows Forms Application.uexml deleted file mode 100644 index 806b1ef5..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Windows Forms Application.uexml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Windows Forms Application - WindowsApplication - - - Software Development - Common Language Runtime - COBOL - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Class Library.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Class Library.uexml deleted file mode 100644 index 022f0d6c..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Class Library.uexml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - Class Library - ClassLibrary - - - Software Development - Common Language Runtime - C# - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Console Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Console Application.uexml deleted file mode 100644 index e49261d4..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Console Application.uexml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - Console Application - ConsoleApplication - - - Software Development - Common Language Runtime - C# - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Database.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Database.uexml deleted file mode 100644 index 19217651..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Database.uexml +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - Database Project - Database - - - Software Development - Common Language Runtime - C# - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application.ico b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application.ico deleted file mode 100644 index a564b626542ef55e0a2da0cbf71d5fc75447a09a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5430 zcmeHLe{5UT6@E-;%7y^{!>wiV>@@)`C23pbQ3$1%q139|S^ILq{{0A0@DwMK)%KBS(qr1Km9dB>JdsSuFS5bnBKjmY-#m#>yalBvk=Yu#m z1zh+V_;M1{6Dlr_Mc~_7f@dEwzx?#WX2^jU&RsFSWsiP;D8G{H>JUZAJ9>F&rH|h)Z8i;G3~ef!G(gaPk=9A05US|6Z(EW^(Kq z7(mO3lVbhnjpg|Goh|6x;l#wLLEOCaCM;{ohO$)wzP$`v+Y_|M6#g|jNc-01 z>J-|}jA;D3HsW|y2@Y-Fg!hBHvAFJb;2WSLvLCN?7bC~F9Dn@a1z>6tBZuF^>PLR+ z=!^^_5G8GC*EEie^=j)c0w>jeM87zV49|D*{kOh{;pj)?$sw#+ez)U8HHrh1=g}Qi zad0Gx_D@F86dJ+gCqtzFM%=gOmqLGGU>)-Ps|2uRP!SM+MhDXs6 zj$r@b8T{j97=7*gDCTMOM7wZyGJ?sev&5YtG)zsL#b*Ouc=7RHIk-M{xn6mBhJ4EB zw^R>t;Hz_@CiwXi|9lKjwynU9{=Z^!=mh?-B3rEg`?gX?V*O>ho2Gv*PLp>Rv^~yE z;_~?zF2%pX3x}S?rLU*(+39|~^5lbJ{p+Z$sXy|Q3{fFMqmI(DJ9y%sgC zRd{P}6{;GyqO#77osDnfjh$t1dt9*QWr_7qH~h}Aq|c5!d+oR@xCTqR^Rf7d4R^FZ zjvw!{;?~^{;Fg-Zaq~74Zg6Gd#!a{4x(zqs_J@~<^-ne0%d+>cg2ne+s+X0xzuAWS z>K?-{YI5=O?aQ%r%Y!hL-iyVr-h&?%-Gv|i-h>}KcN=cAn#$%oU-LZ&6s1H5H56_Z zbE1RhQ&B>%@mlUPnS^Bo?nnQ>=5~OplKj%pROv!fg%jTLVt6+f!&6!a_l5$v*B8K5 zWQTK|4bHVT6hD)T;(RNp2XlER)-Uv)6{W5TGlb=Ii@%xpW2(@=It0`(;-icZ;*lg+2m7#4&eZprKh^UlkkMYjsq+;j4DRNA)E@--E12@RR3G;%5!PHsX&{ zZ`CzuUXTwmCo0v3?giHb*QNL@=JebQ1rcWqO6awes42hDkmUEmIT{xlf(LvWKWX6j z16PP&)F^TIC{CeOI}A-U}b z?C_8JVQI05Iqx8yA$o_Oht!~UmeRbS_^CD}KYQ+BenNPF-q){W{K@+F887;`u{AbUZpP^EJoAZ(yxHjkH*Lnud zYiC!+FEu3ixwjLC#!va8i#>1B`D4^)=e>yEO&;@}3IF3U#LlbWS_n`r$o$XL!Tp4L zIrl2=nat0gH<51E5TpLW8e)+!c|jNofuE~Xx2%)F&q8WQ@UsTy^hKJG+nOupSexW! z9rB*vmFIzbCiiW@Pksn~U4zU8*QBURI-Bx*I)~z-cKCdH2WOu@=HRoyBZIk9y%6zJ z4RFsXTxk{j9B+dEDl{}v?-q5&J%Y|5$E)=qr}#WGW*NU&!}+K0j$kYC({Bfke_qe~ z$oHOrfH*7k`$X)e*ZQ3OlC;VA)4bp_!tqnjpFc}4gf`+2b!xv|t~!2cN~#9- zBEg^HL5c>BKTQjtKk}b@F8_A9c78ns)&c{Aqd6HKh5V z=b!myEwDCvM|h$0vj*o&wpsDpn(fGKupzgOP^+Ul7uHI`HbMoV+zQKPLMdS*VS@!( z>j_1Kb%d9)U|vgjhLE2H(<+7;rj>*|!lPywb4&s={bzo2&lS*RhpE%1;Q)dN+XVms diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application.xcf b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application.xcf deleted file mode 100644 index 468cb6405b41014538d2a19efb6f9ff55bb6db0e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4172 zcmd5#qc=SpM2-ORd&YZCYWrGW(i}3ah#H zQi9C-zo9g8xhY!*wQ=nTWxbpp%xYG_TzE5KD?8m{s;PcVKYyKmK4W?IfR+uyekBT$ zqxPBlRJ9K;bkn5%v`PKxlloUp>d%_|OXa=Z^kdt>hkgzKQ8$4D{$aU9-c#wp3I(l?1TBAoubce*!b2Q`hH!}lY{U6By@tl zxWyKkxd^2m8j8G=f8;oA*u1Iz)BOWqo%{5|cXWq)6E8e(^K3kPpu^kd*>&rNzYdKI zO0f-k{cZWT-+Jp^Xvon84!*P;EL?!j62Agj^%s>0ElEKWEyP;_}W8DjoUYy}9(jUrN@{Q;)yhM!)`d_rR=$h#Kfv%(!O{mBJsz z`ahl+r=#SHhj+gQ{6{C-&xogDv6DxZdftPTJ(o;)D;|6N@kf^~U5>m*4;^@S-&Qs= zt1`3HW;&ftY)19$RsXHm(*UOG>5T7raP_JER6|ow*K6u0?nRrS|07oZT2;Q;+IQcz z?(Vx7_5ZM?Gsg={=RTGcG_5MIrL&hZ0Gc)}*(=!KUc}Rs$-o3Nb|?@Hd2Rc5a%va)6YbPNf3TV2+Fj zaWraR-T}-3P{2GHLxB29Rdfo~5FS)VgXA(iTg68Z5LH<6W(=}u7Pyf?y9yy9d5e)0 z<)U1e4|4vb&qlJyFa`?*Mp1V$ijt}1Ya1a^yUi9Q3O#sn(?gHqU8 zhcp~gG zxHuQ@6zqJ%s7;R=Y;`X1#z{QFc%R@+ z6=$$va8hTjsxlc2rNsx+Ne^xU)S*REb=F&oRvmz6CkDN#zy z6UYw4d%C;3I@;Snx5<&#%#c}uuT|2+$i}pr466y8{kG{Q2%^y6AG#S%S51N=ygUL0 zn~2Mjv`WdTnPyQT!4p9qA#%b2M2}?>!2xjr^nt-rw^?O0luroY3p_dE#L+FsFHr(` z69^}Ng_*Z*hl9ksj7Sn=vA#$o)Efx&Y$Y5?CEzg(8lccEOC3fe%A5@K5a%RGY$ORB z3Is4=EI1I`%TY|0p+p#eQS56;L>z*nR|FcOW2tQ!ipV$g{BLv3aLS}pj zV-eOsN`xF8gvebY7=k$#J!PmD;}~oQA#pJP4l!ghq(qkDvDPxwgX0mnWH?woe$_Es4Fh@(gZW-ZFf;uFzCy`JbELu%M4&E`)gb7$nVkFdDg4#r}o2?fobNGB*j>97M!H#CuAue>f zsRVh%SQjB_4~yb`Ei%S&Nd$AIFw#_nJh2$$#a2*`gWKNq@QC&GMYsqbiu5{)P;0EW zO_o&;V!+bo@wB$KuzGHCI2wx(l&VKr|CA(h;&`mbysWHj3AaQj(G;aOiU-HJ_=F^i zF)o(uF=sYQqBR~0^>V#jfbU5eGw85V`fQJ|EpllKr3|I%OF}5%^%@T>}MO? zlqy#MWh|JHpcP4OPUSB)*nHFlSHTcm1y&X+&AS!XTvWpBCV)H04z@~IzZFH@F09@J zlwy+~%$PA@l*=UnHDN<_P~$^NOqip;3WZ(HNeqXMK{Soth}2S@CVWdHyG diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application_16x16.png deleted file mode 100644 index fabb154c3236b0723f3efde855d86ba846aa15ab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 845 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 IM6N<$g0(U^J^%m! diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank_32x32.png deleted file mode 100644 index c750cda85a444b7f989d9a36dcf5719de7f1816e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 992 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 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console.xcf b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console.xcf deleted file mode 100644 index d9cce98f3b06d0f811968bd247a9022def0b4831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4530 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 SeoDrohoFoj<4`o2g8mJ9){3oJedFh03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00SaPL_t(I%UzP)YgTmt z$3N#h=Xu?p7q_YC*eqyP;-;-!C7D89cp-=tffs^Uqr!p(LGR?nE-L5`unXBmg%{m4 zMmkV@+(j8oH!RGlQCrbA+B5b%XXp2Je!p|N5G(rJe?NTr^7Q~-`uf;Mab@8Y*2lU8 zY=Y4#iP1=z5=(`Y4y!Cm3XD!sI;J>ZJ{16@iBEQ80}`K{=i%Z6tj0(mPYPmjR}ur!%lKolwReujcg2y{ZpCe*aS8iO+yqZFm?K74@g zq)p9*@-?VOMQ{H=i4!(rTj^wo?*i+M+fJ>qWAn2w{$R4LaJNxZ40Ajx91; z=f;hnP*SpcU=NK@kq%of19T^Q;1#R&=&2xO%3 zTnimruHIDCuP>8C4az0QrpJHd`NC^=zhg`CjgyCtjMG`gko|SK)dS6=_;gi$*h~SSX*r@YSb3 gr12tNb_@UKZ^3G`RJ0Nwc>n+a07*qoM6N<$g0NPwod5s; diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console_32x32.png deleted file mode 100644 index efa049df5e81f86d44b1d8a2b5e0a4e03ab29939..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1525 zcmVWFU8GbZ8()Nlj2>E@cM*00mh|L_t(o!_AjJXj@kl z#(ydrWN_gLYLaSs+XokvksMV!amm+s4o}4I! zf|a4z9f})hK^Y86zz_utR))}*!5~2keh|aGpbNLd`!C6M|17=mc)HSi_xsLwzH{zX z0zm(<3BZlr9W9gug?j-~0g>-U<^w>9U@nG!M@b|^<{*^>p!>6(NHR1gEIU3Qe!vGo z!oVlwE-EEVC=ebYsX$5@BQ6v$fb_Er03!rW9SVfUJ_MI8P@q5rTt&eNz@-Y8O#U}; zKgu!SCqy2k@FW7lw*IvTCcG$9N|GA#fHB4cBLuR?B|48b$9N!hra(f))e1l&sQ~E( zATTd2(WT03CoO26v$%JElY95$gofuaa5V&|WW)!qNre&!5&Gan0<|w|eEn6G8y}ZW z1Re&Li~>eUh=BkRRpb-`0Ja^Lq)%k~$8Cz2uONb&k3=ow3IrsCaKU5g5N8vxENkSu zUmk9;e04dLJR0?o0)EuOtBTb5_yB?ALyF*+=vjTB z-?szV0ZJd10^rj1D*>=us-sc+ibPXn7zX`*KQQRuZbZXI8>#1U;NCo)PE&ZVfN7d! zrZTkm+BCjz1mu$deO1&#L2&_!3v;2YgiXfJnNX6)dmY-pZH|~q3`R{@SS(QfsElcv zbe%3zNw$C5Mn+R06l9E6tdZb9qJ(#s!M*i3^N*r7O_Rjk1P50SV!L8MAle$w0!PYI z!N)~CJPgAKFkBDF5ZsZ4u)dLF)3LM&ON+T69a}%tVIk-8uj@)mSxd?*^LqiWr(HY z6kq^HLLrx>n42M$ayP6_rxUBK#`6Yi`)dGHW-Ig$`)-GgHX_T5NC)H* zD2MAGt+gJwml$X*gnJ#maxXE^y7#K5*+8>_F1N~h$KKJ)zbH)H(0bkC$T_0^^Bae>)59HoXQ@d4+(ubT5(WXBIx;2LF*d}locz#R1%Cy;7{++^2)|~$Dnev zNMA}WJh;GWb~P5YKW2;>W^&y`an_AKG2Mt%0Rrjt-96nSQTS}M3M@0l?Q40;3uUUE zDvcKn*9$Xcs(V%JW1ETOL@a8M=$qP8IbP=pfcnOkb`Ok_x6WG>7jt2UR*@~)dwF6q zg*ge$m!oB9Bn|9qHb%-IaW~-t%WfjvOYETOC8kR*0sp@tKx5a^ON+T!I~BwK@sg04 zOp%%dNA_tvcU8zvWhtI7xc diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/ControlLibrary_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/ControlLibrary_16x16.png deleted file mode 100644 index a69b54f02fe7869b698e5ff248fe1f18fee861f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 853 zcmV-b1FHOqP)WFU8GbZ8()Nlj2>E@cM*00Oy5L_t(I%e9eBXq;6T zg`e-68S^uf^w+ecTBog1FcAzza3e-hNO7U9x^N@zq8k_fphd7QiWU@H2yR`}AOxx? zN+hC=HBdrICAFnRV$w<5G)_vJ$z*2k{qFm|*G0QUw2FHOAoVY;dI zj)h26L&XSQ30??J@a;h61n-2b9q>-@Ug)ltj^zQ+)OGaLh?WB&1SJWIIVEccv>ouR zK(i&ZS{cDZz1?EZVz0{sY|rlJ(ZX{CA25liDk_FzXikw1LlZ?ijov%ESZ=IvN9^Im z#Yyr2+nPf>J9v;7A;ySW#0>6fYdHOA*Z2O=S4^Q!S!L395cKIZ)55LL5 z@(TcbvoygY=`(~NGKo1f;wYK=_n_CtoK(cEZYqU8U)lHy%La(aQqixryA z)79BY&*pw6f2veY&YZ5O7-oj*t+Z&EDWy`Wk^p=*K6PaE`px$tMWFU8GbZ8()Nlj2>E@cM*00u5eL_t(o!|j)Ej9o<; z#(#6}-CbHJ?TS>WHMT6$W`&~G7^C5X#-a@+X{?FWQYD1C)HePrq*zd>mJlVYKuoqx z6ChYXQ~iWQ8oz-t3a(Hn3#GP}Zb}ieWxIdxIrIMU!<>8WEek18;}@OePwzCpsd3=3 zzlQpo8O^@v@Y}LAbJQFaM^%yX9mR>!kf?|lF(yJW8nH-Yg(wo07#)eq`Oho>p#Dy! zGPMM*j;bNzh$<4xzO=w&2^34vLahAFks=Xpw(K2&H#1j9)X?&g=!iHmCL#$q0aZjw zQe9ydQmUb<)!Z`_m^#w)FL?klYGMR&>Y{YLg$HJ9cgq9VOadRBx|YrBKQ}`GcW`$c za04r2qwJew4rXBPRa~zHI_iO17C3n7MHY4~VPaYkh40_l&jD^d^Ab2ExF>KY5wT|M zEpT@ShgvPr*^!Y2sAYk956q&u+1y}w_$aD&W)D=L4n_iRW@&)o>32)C%puF5qn6Rt z5%}BGLA>2dB?}Qn?F6vC@dy z+saNUyElQo)py6t3FYh|1hNpoTmNac?>_w<0Co-y&`}G7K-vkWZ@mk=%D$yU`^3oy zX>A>-hfo$u zQ%B6ulBtTN*o>$553%{HtI0ArJ~hm5UU`&L#V7!4d)9N|S?}ZKwybaH-N??N0d_3! zXM9R&NORtjKoMozd*?mTCV}Cm-~z5-f?F)#1xJT3C(8oAIJ}3xCpMg>-W`A0!DB1; zvGavi);pH>vvX*GTL-uBz02;RqZSZNX9z%6h_-<%?nn^#5M?SNcRqwwVfT1@Ia6|9LL}+KbtRn>U^GJZv}qu$9E%Ud}96;%)Fy5Gkd|YA7Vch7xa5j40 z0_e6Gr(_5avOqm>TGl`KaDNq>Lm`ftV%{<#ZUQFkxNaV6S1!k_DHVu1QJq54>CoAc zanFlgFbuDZA0-gz?10zvVXoeHCEvd6rYh^N^ju$^L_Kqsa&j!)1KPF?vls;|f)$7e zYA`aUygE{F_(X%RZ@UXMXcWrmgz~FL_wmI=>i~G@&>p_^r>`-1^7m~1!v>B`9OLZz z+5GS${gpy_;hgyLB#pu-#BopcgsGRiph(-yH4-JF<}?ap)7IO0{`u#~W28|Si?4c+ zXP({9iPuMXS8XBNm)=>CSoQd4dGf@Q%Zuh{5QD5G9$iR)ZosZZ`1O^Qd7)I0)?a#E|{c3Q=Ok|zmds? zFfncX=a;UAev4*vjTu9X`;nf zJ;=kiEvr1RY3uD=vt~7UjKtDFPYpg>O=#|^ge&VuE1hm`)xI}RV`|>=fQaFm6USZy zpb#UEUafi41MQyBlE8fr@5SB9Y`v_G(v@lERrYwR->fmJqI6_*gnNE_Il1&Q|Gaci zoXG={$n(2L`oq8VRTS={zP0c3)g(Xr`QskNx#^qVAjY(Bqk8!b;N>BbB>qpe83oDu gzRmo<{Wse`0k)>uhh?ln(f|Me07*qoM6N<$g1AUT82|tP diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Database_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Database_16x16.png deleted file mode 100644 index 6695cc4e6263f5fa4746366fad5a4955b8a82e27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 905 zcmV;419tq0P)WFU8GbZ8()Nlj2>E@cM*00QkvL_t(I%bk-;h}Cr* z#XtYYHSbji&AC?2U?DSVIy4yMG(`mw1QtOm7C}y%#6=Ing|u-Y5fMZ!QZgueT8&a9 zm6aQNs6h`#t!d21%;Y@s&dj}c?w$L8{eHjix5XsUrl7Mqo5O)~4u_tD5Ac7{aZei_ zK+mE3l(2y~L9Jko!z2!qTGGUl#g;5Fq?b9dFcom7_jfM@2=Wo(m6LdQI1#c;AhX!S zqOrw9hBz`ru^~;A`bC6+3zU_B||{cO6y@`_AlUbH0mW zeI8R|zwqh{PbFbX@!GyhX)!mpzsZVaK0lm(o%WkHVvjnkBshhMq{MsY-saOaFLT#w z53gwfUF*8}`s3c`!b_zJrP3cnjg&Y}kSt?p@+^<8>S62g?d%=f&+?`=wq5@Ot#g)Q z%Aa7O8qs$N63|A6H8+Bw+p0Nv)jD73fuy*Cor{CKB4FG*d^rQD*d2-{q{?CPI73&{<`rq$* f%N?u#^U{9;4*{#u`8c*j00000NkvXXu0mjfWFVZD diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Database_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Database_32x32.png deleted file mode 100644 index 86bff988aecc65ef1190159ff50a1766b15e3e3a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1996 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

pdDEx9Hh=l8G8 I0y-=3AGzXWX#fBK diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library.xcf b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library.xcf deleted file mode 100644 index a9eeac22a88b31c7a5c95b8f1a5546f8c98f4b35..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4172 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 a)=KdWP%&x-c=25tp<%@j(e`EoBL4=1piiX$ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library_16x16.png deleted file mode 100644 index 85ffbc0f7cc341373a3061b45a010d14095bf512..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 836 zcmV-K1H1f*P)WFU8GbZ8()Nlj2>E@cM*00O8K9XgdHEsv5hDz>D`U{Zq{Z{zXFk_Z8Ud_pi|3;=;3l@g&nNverk z79FP~iKP`wY$~Y53HhWOfDmAiA?An=G6zQEtiW516asP@=>;y-v~^mvFxWWYj(Wr) z_GP>LbN#-5qm=il_CATdZ#2B0sC)0V_gZ=X)rBEno$&tWUr%^|wzrZoAO(002v9x~ z?Jj)Bi+GeX&rUHj56Vd11{jclHxL9crbf6sSzuZROv)M?E_}wezU_?0pp<=`L3o3;w^xq=;qF*>R_y=2-@8asnHKw=sF!cAAd_I38tpt?L0Bv)77v9XZ*79-RU#wqY zxPIq%dIn~qokTl{vQSkc9DRD2i|Yz>w|5aG4(W8}pc+k5ipnIhMmB3$WqBUmWl#Su zb`G$NtRDS#97{xJ-(Jli_$#pPq&WCj71oM`3Q@d5i%uZRRXLEYx zLFV?X=A*79CWFU8GbZ8()Nlj2>E@cM*00h-ZL_t(o!|j(nXj@kl z$A1p5a0MNnAcF-NqT)am9EgkywIPckLtMJJQ=F-&bZFAa9y1l2E^?PzWQiyQ;tavb z5UdU*&R~!N4OXBK1rqWMHatNL?|~oO1HPaR??dlNN?Ipld*Pz@ao+i#kN-XA2>$D9 zEWW5bSnO#dU{x<3YtPVV)adq#Ft9y$-uJlfp0{T&jC^#Ic)KUsm6yMx$W0`l(o|BP3b<%Sy z?=cKOSs`#oI-})G_M1~D@m@wKkP+aC*O6TPWj%ausYqU*zyR|O&qv4®WoG61#C zT4)@=v1H_|6M+u^U`4r(uG5O^FYDAgYXDp?Eg{h<88p)RAaD!Zz@c%_z!x8Y#fe1< zs>t%wzSq}FOVm1RRHv)>LBBYqYk_s56A($?eZ9eVJJ&KIH`_OPeC2V*>*{osT4#;r zXUnWiR>L&BmxSr2ktSX0y&E_Qcx9r(=H)FG&Mbrt#_w>wv;;tPx|-oYXuLv@44?W2 zNS+%%)$jwMcB{?y!!=fZUX2<`m&UzSuwdimMgm^RFETeiPwi5j%0z{dJwSYJ4c!CCTi2-l;!s)G#y=9~FKAkis%!^B;c^KK z^b$VksMf30iAa0Bax#0gIm(DV!Y- z>nz|Lx#TQ`vcMIG^AA6x{<@y=I$p(3OF(q~;{hg)fEZ{$ZKIC_=fDM^`Nu92_(&jl zhdzZX&~7yu&lma1o@13&HufSe_=?r`Do)^#w{i*dW72w8d;OVV1hFj4Qk^0pLNEfk$xzlAHU)iLw*F>p2Q+Ap8GxLaq14`d(L4twmH%LN}EO1h-kT73> zXaEn-0LFtLl$+C2%uX&MfFDFtlj)ab35I)!FwhG`(sNuqTIoy#w240oS?~ESzBqW# z9ZDA#G9%i^?io*9qf#IO+dC~pG~Qts5oor2M7)rMzQ9Fr{&W!$L_D-FFzM0V7h0`$ zUpXPmWuX5H^3LJK(ps1*m+=CSpaW)?*|PLY?^~OOuPMyL9_7%7d7L8`ji!EY6Og_E zLtRsbKu1L20TO`Qb&)bO+u>v@f#3xK6X3QbihxG@9!!P`w(qZveat^2OAHi?^C8n^ z7cnm9&uO%dqhRykKu{Mz8I1zQO@Zw@E*rnLJ_o%^EJz+L00000NkvXXu0mjf#2Rwm diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Silverlight_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Silverlight_16x16.png deleted file mode 100644 index acceb5a3bb73de22c472aed88999520442caf55d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 879 zcmV-#1CacQP)=+s*wNy03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00PrVL_t(I%Z<=WXk29& z#_|7m=FCjSGovO`3_1}@i(-wYRzh@B34(}11;I*DP{e{31Qj-W8{i&WE{{q3I3fAJWudFj9oHTgc`1hI91*BC160b2|>)eKn`k4ESi333#@ zlhlF{rk|Q&u3e{`FEjq_D4y|nWAt6VjHcHDhcEW$YDK4;H=EIJeZrNsf;{*^6IqrS$tksp2y}=wnowSr#50@|j!BXvB_@<&B(PYLZ&PTERNO zsRH01?N}ymD{-dLiS+DJVtVbizC5}4 z_?z2?ALa&l^|n3s&cyIY5Qay}ml`}hRx{7tTYZ%q^bePnrQ`KBbVvXI002ovPDHLk FV1i}Gm~H?7 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Silverlight_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Silverlight_32x32.png deleted file mode 100644 index b42d12319ca505fb9c276c35d3e0f8067e2b8861..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2018 zcmV<82Oao{P)WFU8GbZ8()Nlj2>E@cM*00%}%L_t(o!>yNHY#h}U z$A9VtWi}K%7ZW7quvWDil%}WL7gH_5HE=HNMqcXOB?g~oYQRVGhG+x**n`` zyby8`Y3)D8QX-;wQM^;U_qhC>Iweg7mwKEN(ljHKrb3!zbBXh~)RU%)OFg~+T6J*( zOM-jJz`f$V;GE*T$ECUM=E2h(D9u3=C;2zUB^hDh(-UY~?iJ@V*L$zHRB=v8(}my} zP@4LTKtAuB;F64p_p&sB>d4jqR}A2UzzN1Fq4Tul=Uxhn%+AexJO;Q(4BSwCkUbB4 z>0_i+K~+&e1tcE}xh{$*h=8chk5vf+OCd4@)^Mc!U#=*wXJ*dx_>cEtKaKm999%PS zB_kq@vCf05YW^Dt14ALSSPOwQbUk0n&l4sl#_(P~nLra%LCC-xRtg~GfRfQ_SRGhH z6k3V}%Za%o8KZnZ$y49UClHu-`$t@#>oi@?0{3SR#t>Loo?G3hHqQ?~OBh;O3L)bC z(gZZOHY3ph)_GkO$rMx-V+__BtN~*(_PSuNM-P7&fWe^wqR>$%|1%P|5zK_d`SMlhfd8>DA+|A(708eh+$4t#rsnqaG5oiE4&t4aLC7ZLx5Cn$b z9NW*Xzdy8S{g2*$lHY&%&-{FW)j!;}kHMh0CH(pg|YVJ=Zl*M#wz znBy1bI1?+eZ=5-dSI3&*_g!;8zuxfzcdx!1fT5}P*tKzYMrhkU9)D}^d<;Z}C<>PL zKrMEhm`OO7S}KXBnktdC6lw{Vm!QA1K*1PZ89Uen|LM)o;JtEl-)(djzQ?An>-pCD zZ!eK!rVwd)ohdvoui7y$TY|4!}(NrJlry<{lWC zjyvBu7pr*X&c2B5VmMzqbiRnFX6d&5vXB+UfHcq3<1?ceV`zyiA0{W+_Rl6;G4QOvt#8~h*Kp_l*w<*QBQ=_DN{39+=yfym8cTdQ(>m& zxof%dhf~VyRnKM13iP%FERPJKfr2%hi-n`p38l!=-xjc;J*1Kf6UNdTUCDRWe;);$ zSIV=F)MbUt8bjiQnVMv`XXL!m%2ok{hj*zZ`Wm%A&b=@l`XC13r zL$2!xDFueJu`*iqR3+ucwtzk{C`#&-Bo(}5mNu_$Ra8u-=N++%5{}I{>T|;6tZ;3I zWnCelXrR@_gkq>A$~zU$`B>>MS>o6+9xEs6Sx?tjFr2+G&9Nh+h-%it<^7|GWRGV3 zV?!6onp;&NoJ@ox0#_{$IXvswR8Za=JI{uq!x;D=wj7TwD+@w7QI0xzziKF2!!2!& z()c(}|MJD`OhudZ0L{jdU)Sio-smv^%+KDvpf%uYYdSbn_dIu`LT_YP-BTj6aA>kd zp*3W4cagKP=N}WZv_>I2uj$~6J&|d#hR-75ilSk-oKkbbWu<^EeI*W#R5)6R@do0$ zvZl3z!&5Pbj-De5ERWo@k}q_Bc5ncD+p0Fx78w3EK1-X0p0DSg z)%eRlN3i8GJ3rscj=q9v4Y(v?SGGmmenpAX<(S_cs}P7#5J%NJB5SFgp5ny2qikpq z_S~_ayH~ZE&d^|uxg-QkAgu#oi4Nb${xPDc?CE0wVIw%$fcJ50SVP;&L?ph5C8xG07*qoM6N<$f=AiK AE&u=k diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Test_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Test_16x16.png deleted file mode 100644 index 6e28270552bd4d64f1f204d2246bf50b1b35c391..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 901 zcmV;01A6?4P)WFU8GbZ8()Nlj2>E@cM*00QYrL_t(I%Z-s;Xw`KX z$3Or7`Jc_Rm}i6ag3xs4keb#K+C@;A;zgs3CQOQ=@}fJtkg<{zxF9J(EQ*B{5hQex z3C5x~P9h{uuq(H-nrpP<=3#SnUUts@FTb~^i`i8qeQq9j`0{}*LPScj}7zqGekWjhaf-{2C4y_C-7IX|rB&f)tVxK#*8+r2HeN@{+ z>}-nbUJ(G^9vwR(|ABQPN{b{)%fYT z_EPvBtj31?wIBGdIL7$WI5vVrMfkJVRtEa+?|J-2Ic9#bL9w*LT&d37!XnCrJbP{* zePBGpFBY}-9~@sQ!LeL7^?|xOBc>Ox_wqWcLACcNQI=OM*jB~$juyN)B4Q} zKagXz@E&_NK7#(+4D57-aW*Jr4!^X5AjCtTQu}4M)`F4k5G!2 zFvb$-I7U(efKL-MO0<{mnJV#Z`Avaem3&X b|Iz;qmvqsk5I**v00000NkvXXu0mjftL~Qz diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Test_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Test_32x32.png deleted file mode 100644 index 8449ce8be20037038e4067a033ac7407133449ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2017 zcmV<72Oju|P)WFU8GbZ8()Nlj2>E@cM*00%`$L_t(o!_Aj}kd{>y z$3M@*yDQ7DRVqg`kRL1JLMW&M=;%1kSZPkpFvUa^)0B!^8i<*}Skr_~I<~3N%z_M} z2&I)x3duAz8Ki<~K+du`uxzklvcj_a?(X~JdG0;u^v8YPcb5t=ZKj@?XYP;pdGGg} z@A=+y&xQZ-6Pa0c@Wp37Ya)uNVNMZM%p2+z6-B+Em2qXxRpzrfZ(%H}X|1XuYKS*P1fR9e8_p@-3EnHt1%sSZTpH$5FAR@I&@<47cfyDE zoC`qi-BP8Z0bC3b#e2hx;9b`DgW%ycoEL`2BbhpG24iZ+QkNS=$FX*{@83~f_gxuK z^;`@ufqD_cJHva!xuM`1z@6Z{Fmv1t=8eCGNn;!6Dj&n8!ibtbo!Wq6$CUS^0lYHI zE0H(qYwEb*!&4bkSI@}8NTv>(&L_5ik_|K0Gq!6iFBqrkzfjjVSrY~W~hN?eN%vlIEMNSb>V;6T95BvM=p-&J<)}T za#{nbpax0+R|Pdg0VS*+0dWjb6os$smo@W& zjU!mn*u=L#@*r;N4XeeKtoan?+}d|@zP5XTX4|XWQ&h{~;nGYH|@rlfNF{QLqm`W%{d7QL&5x zFCY#yC3QZ~uMt<=v7fZq%NfJlx%m3$S$5@Jl&nZksfVH!sQX|YFLgY}q{&OUZQ6>e zPVxhS7sU+XSTnDEI7`$JBm2D?0s&32ECiB?Y;i620BH`m}?rJA3 z^)UMe;o%p)&-^)`sT$Ceo*k9n(jgttm>@^<+sdtceZh38y^Bp#`P580|Z zc$8P_1g#jDRo(zO?-i2-*LO5jvucRKM^|)^mU@|SjZltD%$+co9WQQY^vqFoyxzf- z^BU;0JU$h6@7|4CP`73Eqh?B1(~Q;7R}IB&RRi6<-8{1GViMoT)QKLSg<$KdNvIgh zpB1|LyYO|w_;C|xf4Q9r6VE3vd5W%pB%TdV{R~yhl2@o=LM{n&*kC`@7=sl{?(QY? zqsrj%XZ~Q4F;GcHJ`q|EzD`Yjj#6z2Nj!a;r%)*3@+nag^ZTDZ9KEMoQS{i!1&Q~H z7wGIN&rIprdhVD^=11{{&%YP|Kj-vL_?o4R&d>J00000NkvXXu0mjf0NKv4 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Silverlight.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Silverlight.uexml deleted file mode 100644 index da48459c..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Silverlight.uexml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Silverlight Application - SilverlightApplication - - - Software Development - Common Language Runtime - C# - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Windows Forms Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Windows Forms Application.uexml deleted file mode 100644 index 7e5fb919..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Windows Forms Application.uexml +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - Windows Forms Application - WindowsFormsApplication - - - Software Development - Common Language Runtime - C# - - - - - - - - - - - - - - - - /// The main entry point for the application. - /// - [STAThread] - static void Main() - { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new $(Project.MainFormName)()); - } - } -} -]]> - - - - - - - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - ///

- /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Text = "$(Project.MainFormName)"; - } - - #endregion - } -} - -]]> - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Console Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Console Application.uexml deleted file mode 100644 index c1e56660..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Console Application.uexml +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - Console Application - ConsoleApplication - - - Software Development - Common Language Runtime - IronPython - - - - - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Application_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Application_16x16.png deleted file mode 100644 index 181e9de3ba64f49fad62cba43308988dddcaabe7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 796 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 IM6N<$f{@rX82|tP diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Blank_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Blank_32x32.png deleted file mode 100644 index a7852adc73c2ad5786bc70750910f9bc7accd074..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1404 zcmV-?1%vvDP)WFU8GbZ8()Nlj2>E@cM*00iJkL_t(o!|j$ah+S0> zhQB%YzTG7Vf;J0+1|f}2Op2(@ZV<5&l0svl2*ysxE~FE&(P$wOOoVhcc1fp=g(4fZ z3K~oZC@zv{LR>YHjl0Rdd+#~(Tbz5}eY?qvrA-c8-t3uk=FH6h&&SV`o8A*_2L_w4h$-hnaxe+mHHyS}BqxR75F*?&I(5Sx~1t0veVgTj1HxDho3n`)$ zQ4>*JL99_#;c*C6g{loy5AiWs)etomsw-62(9|f_5VNhV>%FV9BRPyDjr}Nph9QJ( zEL8@=`U{<=J#XFR{>E*~#T^_l>kS%U${#jnYU|&&8AoM(=b$DykS1}!WhCx^y`WJb z3hFTq#1{L!7g{bDQARzwV?>9B&R*ujiNCIHPSHo7e6Bk!cPS-TOs=MJRkdqaCEco$ z)`v-Jx1w&`jJm!S_4hxGuC3Pk^Lnk-^+p?2Qr)=fpD*b8TGYjrp_Z>~=%qtPbUOrh zSOO#=fjlQwEr#-}bAh)qfJ^ zIP)db17l`7kW#|$mH}6jsAe=k~KzZzN3kk&N zB=75>ydCrYvA!^cf)On51GpQ>ovG3Y!I&zII`*#HnJ*}h9R{FTJW5QWX+(6#eNqNm zoJL08eihpju(PLgYcM0cyqn^Qg0OOlVEOU#$%69rrx_GRF&1@PJeuqNzyj+V&f3sP z(MgjWaJBe%q?y~76-%GyKDBloTRw;8_TjVJ^O-G^rT8#M9T$%h4=eysoI1|7nZUN` zKumr&4rClXwT|rFpLfqLWiFgu%8A-NM{Jz9@)bYRq#i`=}42~UUP#9&%uuaT> zJeQcpYFqRBVEG*UehEAMSw1(vpP1VIu%&v^i+$9CjspuvsiUZ)aurO3fWEX+*MN4- z30RmIHg9VWVE58$qr~!hf_{-2gAwZu<|QD zx1Z!<`ux|-Ts+U#i8CH`#{s&aT(~D(6CKc~^?J$|nB9(c?8KJOjqopmQM_}I^2kB7 zzM3!JcR%jAy5yVs$N&9Aa`b20^(Mf~0=RDLFI$K)X`~TK;O1eH_o*i4axh-nv&z1kb$ldx#wx;f~IoH2o{VOMT|}r zMOhfZoH9Tip^8r3IG&&^VOWdR^+@Wbsdq$7xKDzheN@_95yK{r-sIq(&kU1ij&vis z)eY;I&$RoJkXw63cyct!0e86Y<1e{ewe=cX(j?^;nmbw6bp~_EX2ZSCarJgwc`tX+ z2^=`|=KEupX^m&nxVMj}f4tkza_${;du{Znm%INl?yY-keEka(d3`h=APbWK0000< KMNUMnLSTZ(J(KSM diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Console_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Console_16x16.png deleted file mode 100644 index 4b1352e2429b06a7b4b6d9b27a23ba15dc1706fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 904 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 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Library_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Library_32x32.png deleted file mode 100644 index 3fc04de0cd26ffa557fba3a7cd4344378b3b0395..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1831 zcmV+?2iW+DP)WFU8GbZ8()Nlj2>E@cM*00xUmL_t(o!|j(_jFndv z$A8~&m>X?pD8o%Fw1EIc(rIa;m{6>~*uB)Y<1H~7sakEK<-rH~ zQjOTumbBQWDVLUubf7b+AVRqe;|$DXn9DieW$(S#@?n4HoEc_F8XKSVOV0Un&bRko z|NUR<|6luq|Me>YNYfO6-@WxE6H!!^;1yLPco0z}C?N^=Z0AC@W+i_DlIVgv(Ez^PJr!w10!rSK6*<_s4C&MQSQ zT!{a9ujHY*Zp()WuF9<7B8s;dIQNDtgBD)Nyis$8^8xP_AB@5WpcC&E=OMV}+H)8< ze0k%4u?ChmY5;UDfa>_y*!A>d7=~GbnPEoxG1Nd5Fc3A&6tM)%P%}h9q+D8?V}d5A z#w?CZ5QJK87|k(;p(Q{fZp`4u$W>Hz z{uEgGWtNmo%w!?5(vrZ!$}|%b{f&98t=+6x(u)hm_3;8rz!bEcSKoOZY>?Xkm=l~j z3t(y}(6+FJiHUxWoOo*1)b6fc9{KbiNm@EFuZYfO&@?JZBw#A@tH3an`j(r)0W^uZ zwR)a_Wj&9w{qZsGS@{GLll@$}`T`$Y(n?2bOJi==q6I8lTwzg1f&!uRk=x6#oLHx< z?gJ(uGlI|F{e!WPYnK=uJH(wG!z^FCkoBKvr>%09P#k6HT{pP1qe3uk)W947IxFW* z>g%$xl9`5b(o3AX@GH(=d=7xN*2Nq-@f3Xn-{P)C3n<(KM~-jj#HpQBDqZ9*N?OVk z%%g&&&VCF|%)41jS=qDV6Z{l6#tyTr=MnB(wS(@iUIvH%#Er3oTpNCcYV9)4-(=H< z@6y)VP41=%B8b@S09Ye9l$Bf8bopCtcHwQ?vJZgCs;5$^@WB1w<9Od!894g`()0@5 zUA=5r`wjm3K@}|}sy1H=vM#>;!{0D5mGQ!!Q@s7^v+VxaPs#F}_GFls_k5EDNy5OX zlXGg|gW;UfN#Wv9&OIxiU|G+jr0Ep^9)95G)N-W=L}Lnq$}K8*ao=S-f9*YX?R=8g zUOLB`d*9{H{S|h6Wd|#I7V+ZqKcQ{oCZ75Jv#eb4ah5OrEZZL+W80Q}R8uYcMPz8I z>RG>LS3@O>yLvfyB}Gl6CunreMhXtTZMJgBYVP>tm-+QCud?&W!%R+QJhq|A$^E-I zlscAvZWCEGW7XD_mkvKie!$^2oJP;A=IQNwqSX?O%IiGBYWPcnsx(qiiQP`=?7V~a z_D$-Si(ZJxz{hS3>_pW0#peFq7;u{Q31-$c^)@@eHnn~tSwl*A5RMD9# zC<>u};1soL&d|^>BF6Ez`p9Z2S(-C3GC|K5l{3fsD6*71%Nf6UoytZcfW#WMs|rJ7 zj^4E~MF3-y9<`Q+t&1pS{0Jb=0-xEk8GzRhoFRluY}vLRvp^!AYXddT1Y`ZDHlPTm zfeTjxgHt1f;BWDbDAZFIYG8^=QW{#_*5irDW-^fF%@cyC;k`h}NX%iODD@r?Ef4}? zMPt18AvPMNv~bD}sHi3wTJFB-t|HoyatR=wk-UqC4Cg)OYnVEa7|c13w-iy2Faxj) zP5NhAI7uV#b!XGk!qft)GgOeJf&?Yc1ESzufG`a@g8>(CR*L{;Fd!k$spsEH12e5N zQ17gzn;WRyBEzEaymRy@X|-T%bOh%D$BvJarzu%AWpX0L9uh9U_b-YpBhON5lT|7k zK}0xx`ZQ`9`-oa}I*koSRN^T~6+_VSIWuLLrk>54A7*;mF4^8;*sr~nnz!}alQ z-k9|CY-vGlAwkc`v+$SqjjZO$YB`hD6kX>T?Jvl(Dp{6MOnE9B<0AX_{y6zh-ikUqe;WaWpsZQ* zd4f~2{C%7sV(tAI-o-a2_1(NWtaPmMv - - - - - - Native Application - NativeApplication - - - Software Development - Python - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Windows Forms Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Windows Forms Application.uexml deleted file mode 100644 index 604b790d..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Windows Forms Application.uexml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - Windows Forms Application - WindowsFormsApplication - - - Software Development - Common Language Runtime - IronPython - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Console Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Console Application.uexml deleted file mode 100644 index 69e6b1a5..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Console Application.uexml +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - Console Application - ConsoleApplication - - - Software Development - Common Language Runtime - J# - - - - - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Application_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Application_16x16.png deleted file mode 100644 index 545e52a83071ea382975b1e84d08d95cfab00db1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 851 zcmV-Z1FZasP)WFU8GbZ8()Nlj2>E@cM*00Os3L_t(I%cYY`Xk2v^ z#((#J@6E%`#25`R4H^X(R;Y`Df%<@ew&_DDA`P`_-Rhz~Rvi$rw2O+U*sY?Af{zy5 z6p>b~ii)CLsWh!R)HGv4Lfa%Wlezc*J}yRFcGGY5gYzxU`3@gkrxJkKdpL6ALtARW z8oYHlWAWBtjKyk$HMYyvW1Yvv1OZMptFLDOu|yAUeS)~Uj1+C8(pDUVPk?8g$@cU2}xxDdu54s zK8Tz;O$PAmrrqp({&7S=Li#%@@7C8OuHy@<8+ocWkk3Ep|Kf9C7blddv%>3jMI?x6bVF^Zkj_}N8nG0UjQ zUG%VP8b@mKMq^K`~HwC+>aj$;JrP(z~8}U96B$7!e@m6C!gdikJF>_&o zToNwS8{Gc;D4jy%L&UjAhym|~PN&`7;N&mWgOzn7ljHZs$>$y&!G=+shr)Qy{rMOB zYp>K0)fXiYLPTOD#7K;hN@d-*3Ba50ojh{e*!tRXQ=_d#8;dcXxyD64c;kiSy6U=P d-+^n+{{SP)WFU8GbZ8()Nlj2>E@cM*00w+XL_t(o!|j(*j8#V& z$A5Fqxx2TB-2w$6#Oy+`8d?luVo{WB8qmHNh+1r-PsV6s;$qOGsXm#szEsz4P4q>L z^+B_ZCdP*nwW%mHQ4H3Swkk_(DHOJp?cQZCd+(W<@B4h1bI-lIr8TjSI?3eBnK?7_ z|9{{A`(_UOuNP-#^~?EPjrv7#s5!(y%n=QuIU?y9dQ}|}hgU~12RwCMb_(70}NyI|Lday{Um#9#sW3LjlFoxF%R?P~?u`AxE>3(Y)}FS_5f3Svp2R zDivmLy17}+*tB9@wW(OEQCmO_Tn3p-tZg8&vXf6R+;B99GeiV^GYi-X{W_Nx#=tp8 zoBQFJgdiVVC_GjVB3aEY*;%& z_Ss$JcjRQVFOs>md9gdE_|jc8az{SEIv$=(aerunc1Kz4DiRf`0Yn)vnP4V3iy&=G z7T_ayr?EdACCgUhuC;J8&tQ8Gpc}`Mu$Cn=$RAFu3;^`~cb6)2wP; zV)##wrv>+alDYY-RH45tdgRl6){UM9CMNOG@X=Bf^Z=AWYSRz8qnBU+Y}a^doH~X( zbqqF*;@6Kd)F@JPEI-T0ru(eJM5Tcb?4wgE3)dndwp@g!F-TUC&b7_>_fPmoJmY`!gAxN6*V|BuKrh-!38!$&2=3_DS=4$75CThXP&V18rr$S&aF4F{-%Pt))Eihe-D@EJtzM1EVpfc zFGU7ELKzhw6cs26=z62ou1F0WXrh8vAyz~Y(12MS87WTJ5QH~xk1vJUac0img@2E8SvL`xg+b-|pQpdZoDUi=U`3v_JXfag)jd zbuyBaJW?OEOVl8W@Y|n#$NkrTMec_z`!R`8i2^UZ(j{sVji@1JRhv3bs2L%~xBP3i z48UA#jz_0|MTi0KBOwHQ41|!X4=GfA5Ml_32>&l{wfq}T$8ZPJ<@sR%0000WFU8GbZ8()Nlj2>E@cM*00KHmL_t(I%cYacOO#<0 z#(&>C7Y8e&ZLPY{!c8tBO3|WwgjrOJ2wJtU)@}L=Y8NFfT@*wRLPU$8i;J{^3N(Z+ z6d6Q`X3jXyeDl4xb6RMr+kD{Rz*#&zhaU%4s083!D_5c=^MF-oC^Sf@Yo3%mHOW!e z0yQzzW1hMgB9v}SOygvC3CKm63C5>@r8nyG4C zRjZ;pC-XafHlQ<6_4=JB3Sa<|w2CT3QG8IGi`Y!CX(X$9d@WFV^%#jD_xlMcl&2;E z$p3AjD2Yih2E;+JWN?j0v86!pkh~qld>kQpH$>Aau-5ahfdV25qc1S$c3_G*3atsb zVvgdqOOyuhVFqrZtJfl3JvWam>|=!~czGgt+J^#2AS&5*Ft4OnIJv-|a{L{fXO;oM*-Q1CBq3yQc>vX8-^I07*qo IM6N<$f{@rX82|tP diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Blank_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Blank_32x32.png deleted file mode 100644 index a7852adc73c2ad5786bc70750910f9bc7accd074..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1404 zcmV-?1%vvDP)WFU8GbZ8()Nlj2>E@cM*00iJkL_t(o!|j$ah+S0> zhQB%YzTG7Vf;J0+1|f}2Op2(@ZV<5&l0svl2*ysxE~FE&(P$wOOoVhcc1fp=g(4fZ z3K~oZC@zv{LR>YHjl0Rdd+#~(Tbz5}eY?qvrA-c8-t3uk=FH6h&&SV`o8A*_2L_w4h$-hnaxe+mHHyS}BqxR75F*?&I(5Sx~1t0veVgTj1HxDho3n`)$ zQ4>*JL99_#;c*C6g{loy5AiWs)etomsw-62(9|f_5VNhV>%FV9BRPyDjr}Nph9QJ( zEL8@=`U{<=J#XFR{>E*~#T^_l>kS%U${#jnYU|&&8AoM(=b$DykS1}!WhCx^y`WJb z3hFTq#1{L!7g{bDQARzwV?>9B&R*ujiNCIHPSHo7e6Bk!cPS-TOs=MJRkdqaCEco$ z)`v-Jx1w&`jJm!S_4hxGuC3Pk^Lnk-^+p?2Qr)=fpD*b8TGYjrp_Z>~=%qtPbUOrh zSOO#=fjlQwEr#-}bAh)qfJ^ zIP)db17l`7kW#|$mH}6jsAe=k~KzZzN3kk&N zB=75>ydCrYvA!^cf)On51GpQ>ovG3Y!I&zII`*#HnJ*}h9R{FTJW5QWX+(6#eNqNm zoJL08eihpju(PLgYcM0cyqn^Qg0OOlVEOU#$%69rrx_GRF&1@PJeuqNzyj+V&f3sP z(MgjWaJBe%q?y~76-%GyKDBloTRw;8_TjVJ^O-G^rT8#M9T$%h4=eysoI1|7nZUN` zKumr&4rClXwT|rFpLfqLWiFgu%8A-NM{Jz9@)bYRq#i`=}42~UUP#9&%uuaT> zJeQcpYFqRBVEG*UehEAMSw1(vpP1VIu%&v^i+$9CjspuvsiUZ)aurO3fWEX+*MN4- z30RmIHg9VWVE58$qr~!hf_{-2gAwZu<|QD zx1Z!<`ux|-Ts+U#i8CH`#{s&aT(~D(6CKc~^?J$|nB9(c?8KJOjqopmQM_}I^2kB7 zzM3!JcR%jAy5yVs$N&9Aa`b20^(Mf~0=RDLFI$K)X`~TK;O1eH_o*i4axh-nv&z1kb$ldx#wx;f~IoH2o{VOMT|}r zMOhfZoH9Tip^8r3IG&&^VOWdR^+@Wbsdq$7xKDzheN@_95yK{r-sIq(&kU1ij&vis z)eY;I&$RoJkXw63cyct!0e86Y<1e{ewe=cX(j?^;nmbw6bp~_EX2ZSCarJgwc`tX+ z2^=`|=KEupX^m&nxVMj}f4tkza_${;du{Znm%INl?yY-keEka(d3`h=APbWK0000< KMNUMnLSTZ(J(KSM diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Console_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Console_16x16.png deleted file mode 100644 index 3a5c18028bb9acb127ba4918b2b7f8d219bf3e94..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 969 zcmV;)12+7LP)WFU8GbZ8()Nlj2>E@cM*00S*aL_t(I%T>}}Xw_vL z$MN@b&Ts$DjBRJml!1s#+2+`?+8-%&3Ly(BQ|OOGHxVI0QAB?T+z6`Ogd|ZE-E2f% z)zvCTOqzl@H_6%`ylBo@nAY0a&iVa*=lMR*^ZPwr2w9)|_v`AT0Is$(SigT@C=tPl z!5V`T!H8hAMzmnWV2#Dt1e<~f#tL;q0YF-Yx&x1ruC3zZ5 zc<;_zz^@NH!|5CAy!QH=jE|3#$te1I`xqS^Ax%@9b69H;W3XZnqlu%4n)cpX0DyCj zD2iBEn5SGW)7jZY6oq870md4PSd0-w1g(WQim)!Z4dik;W@cvS=;$Dq%P}|m3(h52 z>o8)F|HLAiIF50NBlzw5%D(06aeumZ0FNT;Qp7mcB*j{TwGI)3h(?PbS|ehJq6lXb zf?|~I@7X!o-?JluL?F?S#GJWQ%MaiFNhVu~bq=ldzev6zPj7Dz8}6(pD1~LzCdbY4 zQ7S7u&L`N^)6(Ji`kUu?@s(FuxHyRsjTlQ?TN}sU9cIt!WyXRQGR0URHDt1mrhFA! znsRL2QcLsZIua@={Jlb{RARNTMr&&u-@Wq&dvbSCmSB3qGdrc2o8sDsLA;YGxLo>s0Ee8#Mfq5Aua8*t9~SUl^I<>#ON zK<$4F-a7`rFTQlJxiXK%6I8^+VIN6?I&hf(?aa&-zpyNR_KNuVW$}LEE1$OGz4u%F zK(qI|ne-nYAM!_9&w1~Md^3Cf;{5F=PMrO5I1EcVj3Uz1G5Eq$G!Go|S4(F5wzobV r=F1P1I`;OE@5!E5N}U3rWf%Vd?9uQ##c>hw00000NkvXXu0mjf#O}ja diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Console_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Console_32x32.png deleted file mode 100644 index 5bec4ec1ae08ff1a003a83bb4c5467986db8a76e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1874 zcmV-Y2d(&tP)+~fAq4;c03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00y>6L_t(o!_AjnjFv|g z$A9zgQkRMfEYQNj?iTu?QX=A#ZbF(}j3~QFg&Pu~iAtj(df~blds8fyq~2&i(!_WL zF`80>iBh7(lmuus#UR)kKN6I>?6&(MZdqvx?>lqO94}_x_kErP+QchQGMSHOX3qbd z^FK55H~=#PU~Ju-)BqxmXbv?{bBKYMLr8U~m*@~2K01OyFo%zoJVs+qunNJNYsKIP zQ|Jqs_`})D9GNu-(}yvXL#a?op)3WWW~usiJBCP z5=00=2oeY(7j6@8#B!k&#Bb4&>OeV+;%oVrEUnl1q?sk${Adl=^`8(rCx` z^8i41clRx0Cr|#GZQHgHRg=5xAT%Hv2r769*>b^4(F*~ey`fRx8^E4DPx18AdmFA# zwGlNf6pctGl}JE?Albrt>_hMb@9{q1gHQbs2;LK8@<8jI0E~~1H{1@ebLW?dF%mVh zMUXo2nr(raaF1EHR=n^4s&T^M_N<7f2|LT2xawv~0QN zZ<5c0k_UVcI_AGzNbHD31rsoZC|C@+_MCn7-bT7L0c6Xw#iE+BK$?e;s-mJSSh%pv z0WVrmu9!uf31$j0WaSBfyZJ7XbG)f2S*)Sy`clkQX) z-n!BBKnP7&`yj09T2i{AV=hKaZB2J#jKvv|>> zq-mYbaa3IL#?4w}$$|=> z-_#5AGB!4bh%{VYtyVdA?p(=g_7A7_?gLCrO*cajL_q^Yj}Q5@Q^$tkztj7*^L*#W zf8y=`RH^LS3F|Ag{P8TUEsl9}Tj23e!ukp;T9nnRSJTa4||AR-rah|@fpW55{(UkiyK64*Y4K;AiG5>=tFmEdy*bOfngo!Kgg_KTQIAeThK0LU#3}!Y5 z_7B_bpVYY={`t!`Fa=8S&|bm+QoAkgq7`W2t}3i)eagnx7o~WqQB+bju6ND_;3=$N!`J7Xo||Qtc{N1poj5 M07*qoM6N<$f<3Hv-v9sr diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/ControlLibrary_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/ControlLibrary_16x16.png deleted file mode 100644 index 26dc25682d0059690f6a9d0a7db3c9bd8ec212e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 850 zcmV-Y1FigtP)WFU8GbZ8()Nlj2>E@cM*00Op2L_t(I%e9a@Xx()j z#XtX79_>xNjfUbasQ4HfiP(z4CA47M6da_4M(yYlM1+QGV;Y!MM%+}uoK+M$b& zw3>LKpoU^JskKr=5=pg9X&$}L-~adcejToZyLgs!IB?*c1OE{bz;Z9A?;AMqR5yQk<(WC&sKK}~cf31)Q@S0%T?#FibV7A9ti7*;tLX6djsIU!tca>^Z zL?!V9k*Mio?*Ac_chX=xuIjUY>u_K%LyeDebq{;Y6zVU_sbho~x|t*~gz z6KQc)NNF2AidswC)Hq43c;|^1S2jocpL%lN>YAZyBa%%A{==Znj9e*YymA06PICHMnJNWT7zeMjgpt9mR2o8fc95R;4&!${M^qjs>)VaSG0CNKg#LrjQ^IvWNONfs zA3U+mo0N(xkl3p-UosTskIHn=RDo} z2(t@&Da5xBpD{E0J9loaa`mSbTo8N^oD+fsyjSY=YOBGGn=#fzM6-)5|5m1MES()4 zbQMc{HT7-z^30X8_ljsB1VKdzB8Uiu!q##G@bTEC(YtG#ry#+4#Ro+sV)EjJGxO79 cZ}WfRZ>RN^;YBE65C8xG07*qoM6N<$f(R;xv;Y7A diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/ControlLibrary_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/ControlLibrary_32x32.png deleted file mode 100644 index e0b1b86314f7235d5aad9c246242ae3284ad2570..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1806 zcmV+p2l4ocP)WFU8GbZ8()Nlj2>E@cM*00weNL_t(o!|j(_jFndv z$AA0#zB4mY$|ZnB(1KVZ8liSDs4+sLP;E_H@q+adHSwX*$Pm$_=>wXyYGR6n!Rk{@ zOtp!S^vN`BQ)6gLFV=v9qQwD*mXUIqVeWIzxA)p>`LMrp&dfmTgT@zK$(OUQYya0; z|F!l$@V_q3%vznZ-L+Onai}?>K{SULh&hDx8=9Xw1cz5gFbL-GnpI=8)&$E4*4`@y zyDyw~#cV{&cl-dNU{SCjm@h#*R+gwVpe(Vnj`;>Ut!-rk3nk`D%zFqP6AzMf&6XdY zTM9rnW7MYoSo$0e!!QS~6nS%PKB7#2mi0#~})VroP07pItiVFtgV8 zlZPL-tBI;vjA|0qLQpHcTBD3MRYsd=L>r$H8=Vvz9v2%L3pP07?c%Vvk%?gSGMW!+ z{_lUW;c>D4^9}18sM{B}f8VYQ!Bxbd0tlwbsaD0%G|j1jR&5MwMMhU=MxHtH%u)Mb z-sYFW*|TSeQTdkuT8A2F6;V}CGZauP&1-_C21V}Z>~M6|GP(v{ZgC*ZCr^t+V#UJj z4G%YKS!`NaUA3vKR-@$sHEo6$#dNB=4W}^yx((8?G^HyHv`c1{G%*e za2Yo-it9UyZM+j*x-t=KMlpkYZ?al;>_N8m0FWQp$DFQ=Ih`32wao!9ahm@lW)WwC z#t}?Lu#LASy+@wMW!F$Ub|@|F-bhqyg{w_oYgsMZddLs#1EAKslUnX5vJ|$a2MX_{ zb@;lw7ti3smiNu&u3K`}uKxrJ4nM~67YA8(@Cg8pFZn2Mk5zq`l|AuuJ&AM&_EBqc zpl1(W3@?_lpc#S?1T2CkAgkZGij_C4Wa)|(Ot^WBG;-?i*#yA+lP_@XiRbW(ucx+Z zemgs6-eqL_+g693iUS)qQ!ka#Ng+mS11LjmxgMbJ#A(i)Jj1CI{XG4LehweI#NgVG z0kGt;2k97mm6027-Wno_RTyOX$Ka|@fU zd^a){2m*0>8ipXC0n{TRM1`TT$hjfUsn;6peP};XL2pW7&^hyv58uh~=s4DWGp_F_ zowqDXb2n`wL_hV!QG0I?!j3)yn zD%K1^kO;BzKnO@Q%AkCH>m7_w)_HZ{B2x{eSo1E1e)Jn&8F-Clb>+{0JH_oE-%Q87 zKPSsT)M%837bQrB9jdGj%HU`qYWrr5QPJuhQiKpeJ*EK>LBzO!_g+dL2ww0Kxaa;K zvts#m%$qxhp^;HOz4fg;{o(FjEW4R4H02(fvaYLkc&)n*7p zF!eYUVvI;Mc7N|XOg4mxy7IujeOL6yCR4^VyrN3th*ej$8VxU~wy$n8!_-x442_C4 z0Z5FX0j=slsEWm^+aKnUUF#@An8ArM1VTli!+$*5QmAG`O^Q>hC8n!sEAQ3PSgN2E z2SgN$fiQL+po*LEt6l3DpR5zS%-}@usgMBt;@6L2rj@l;y^hi=Mz#F_!P@QS8>1=3 z(8v(IkFO=j8Wt}Ce-#eQ?n?sClaD;${;hvS?jeeM?*3Fu$%DUq!h#sz-rhq9iWf_H wEvYa`OqHzpocd456%UfHe7%SN%YRe;3C!~}9~WS93jhEB07*qoM6N<$g5$VN*8l(j diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Library_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Library_16x16.png deleted file mode 100644 index cd1443f70f62471e2fe2efa0cb9ae61cb94726a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 845 zcmV-T1G4;yP)WFU8GbZ8()Nlj2>E@cM*00OZ|L_t(I%e9bAXk2v^ z#eeT(W*R%GlZ1kbGz;rO1u+qWC_+UW8@f?Sf-Sgk=|WIkD2TWawF?p5+g;Px7HVv3 zKhic9>7v9z3?9q04zVv*AKt4 z`xB=NtTvcJV|77MXtXNOh3;x?(Z*sVzys%6y$53e$x*e@eaO8HeAdQyT1a{iNfRVZ z@aYC@rbwpnDkJcoEg>AeTT?N>;%ocqzq3l=!1@SX9zgeRNA-nh2~a*nxe)CGg6cN( zdXsjkhCg?n7+`*QoW1Y8h43-JeBW1ApiJV>bFyl)SHC=eu(!T z@!hcat|!vvQZ=Uh`2oDvlrK#Yg&u3{g98WyqRDTFTtRtho}R0xsZ?WXQ(qC}n(+5a zgtNy{yC%q#!#LAD0lI5KfYmzT)$?%q1hV&C0w6r}1<~MBxYs8DsLURPoo`_7H;}w% z?99bKIrPI})T`qZGgAb=PSY8FiKX>b0POB@q6#dI5 zTsY3?t`6BFJLvmp8hPdg^z2~*+-dOl z#!uKVVXbqW#>&q;JM<>j3C0Lc9M*a|op!fDk|@fRoUD^matU#uC`^t#loFLA|J#)d zb4N}toE7hIPVgc)5k!P)b?fC=sbWjo>P2O3R+^SuH&XJ7A-TOt<9hMO^yJKo{Ga#- Xn`M;FILGvz00000NkvXXu0mjfyK#V{ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Library_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Library_32x32.png deleted file mode 100644 index 86925d5329b4d19e4480d66838c5326b207455bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1866 zcmV-Q2etT#P)WFU8GbZ8()Nlj2>E@cM*00yo}L_t(o!|j(_Y+P3r zhQEF0j5CZ&6HL+sP?NR^K{7?HT`6@$9J z#6^@B8mUz&g3?P+($J&|%_vD@2zA=n*u>Z1%Z%rov(MgZ@vzU#*ltoJ`Up!pnlt;d z_P_r1uf6wy|8+9}stUk(e_2}{fVPd{N}Ak3=V@8L#~jk!AexL(H@g) zM6R8=PT>dBQzl-E=wk=J2i~FHp}9kC2F{{chPV{649ybMrpStS%~CYaP@AFFLT*uK z!3AGy?fciZ01&Ne)fGP)9)m$q)D(0TyeXzLq1982H?7H?8SgSFrmhBHOvj-CjD`oZ z!qwXUW+epB(BA^6Hv!;prU6ld=LWe~$Th+#*cBRZMeajeRA|BA)L`3l3{D`Yw0764V{M^C+=H!=}b??s&#&2!Pril&*@X6Ch#daXB|E-pKruRFcIltOHRw<$`-YKFMrOkjSmhqSh6a6`g&Bb!9_kU4-`@c`pWZjed;@ zj!`hiP>LXqpj-+dlCJ6^;Gaq@HYb>TI9ban!!gx z$BEyDeX2f>8M%NCK7wqyBaB&dx|DtxqIL%luf2g8yPC>T*j1Lx-_Wu}(u3 ztOf9kU;j- zsZ_23aPOX-fyVL%#BIj!_#~w(!vXccUOu$>RyG`X9I38HezH3(a?5%|Ldlhn9K!E< zu#HXb=*2DNMT%yHpjjii|}F)@kv!kObWlI4V3Hf&|v&fRRe=hKv~45Qs2 zWU+6M#o6mr@7+c9#pmFm4~Iqi9w7IM`NB|#1*bGmIjj>h8%o@JLA-VVq^V=~KtBL4 zzVs%}U1eZ!C#b_vC27oHKewOwonidP@21oZshy?%3@Lq^Ft(w&=r^3 zQP&q8f|BLRLfzp7oELOu3X&x6Togpfa}O>7%@IFO*7yMb+BC?fA3sYb2}^E<>Bd!- zy1ME4+T+}{tq&(knkm)^xr@+07g6WJ++vQG&dKV%Ai9PDfZPh+3pUSDw~UGfZ)r?j zrA&Oi$0JunsaO*jx|~aSW+d78(xUI!&b|M30EBWWeE_ zkY=Goto4vLKrHwSfXUf0-0hP%$q}^x%r@R(>aW-M%swBEXaNx=wGNTa(XFbem|~0~ zUQk)ZK+bDtPSae@n46u#TF>jRUnglcNgGWT7Mtijp3yg^NRuX6(qwsYnYb66^VDiJ zL=`W=aVWK*bWv&7y=Z6)JE*K?ps(*f>UB%KF@nu6v8UgH_o#>I>l=7!!Lf0`;I)jC z3U;oW@x@6*gkK$d1`#c8N8uJD(z$@3o%hxqqh;+feD&0Gq={v6YL2|$bN0NFEaxQ4 zDT|FJeurb`d`6Ni2Nsqbac^+)%5M&v|LUvA{44;-bK$N#_mSs9lAg!r*Vxh9#AVG; zPHqFw|I<_5nxoE9p^K{a@Y+)|{PO4t^L{?f;?@Z^GBQTJKF!2L4d*;BpYCCH&M^Lu z8Qyw(gonQV5#~=)0>9>+xxVC14P6b_pO-)BLDyZ07*qoM6N<$ Ef=wEV^Z)<= diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Windows Forms Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Windows Forms Application.uexml deleted file mode 100644 index f1a2eb17..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Windows Forms Application.uexml +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - Windows Forms Application - WindowsFormsApplication - - - Software Development - Common Language Runtime - J# - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Class Library.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Class Library.uexml deleted file mode 100644 index a214a34a..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Class Library.uexml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - Class Library - ClassLibrary - - - Software Development - Common Language Runtime - Visual Basic - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Console Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Console Application.uexml deleted file mode 100644 index 31fb7ea1..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Console Application.uexml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - Console Application - ConsoleApplication - - - Software Development - Common Language Runtime - Visual Basic - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Database.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Database.uexml deleted file mode 100644 index 7cbd0601..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Database.uexml +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - Database Project - Database - - - Software Development - Common Language Runtime - Visual Basic - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Application_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Application_16x16.png deleted file mode 100644 index 154d6603fc7715569a374a9b9bbf142dc72b31a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 809 zcmV+^1J?YBP)WFU8GbZ8()Nlj2>E@cM*00NCkL_t(I%cYY)Xq{yg zhoASo?~O_CmBylYlXz_M3 zf<-#0(5BSdq-mO@i7~x5_xs-OJ%1c-W|tl~(}5ocp63VmI04|T4=u%p7xYcVdhzU0;7c0f=bb@As%Ph=Qom2;^eq;$(4}Vu(0J$3ZEz z_;cx2od6yzq0%@Dg`N-NW>rf}?X&yzp2=M2K!X{mJ$}Or%IV1==Z)T$xC1jy@8(x?c0qsXj%Wn_HP*uMO!P zY?F&pijYdvFt90R`_BR34&qMl@xV7f{KnrOJk9OxhD$ewoO&}WkFdP5F%D>Qh08dg zJK2JmDBMQ~E$ZAL``oR-%TFFe#M%B=X^NsnNhMc!92;itxPqEf)Ty!{>SGJ>eaz!6 zMG-TSYlSowjex3S`9b=Y~2rWFU8GbZ8()Nlj2>E@cM*00osvL_t(o!|j(zh+S10 z$A9-#CFRqAZPLU*Ei^H98zJbTO@X~IE|eg;Fu{eiqKkkCDo)+fy%0o22uPzY6cvr) zJP;>PNI;{FK^vzOiIR$?Wl|<(`BGJ}@`ii9!NocE-uJ2!1zX&-7asSXbBFVN|KU5| zga7v; zQ%4=tJpR-X1#<{$sKtAxAeP=!$1FbM9_PA`t?%sypf(Q@0EaA_o27#Tp5f^^cPEQ) z0C651cgorH<}r`jG4FT^q>QTTTrQSA?!8N8%zggYA^;EMZ4 zSkRx*m%+mRjB6hm<;**FQ6H%FEN&h%S9i=D5k>810;piGpf|7JziZtxKAy_iHax=# z^**)@&+ze7&Ry%40Z<>vIDVjyMfDoTEv!+iWsw3vRWa3L2jD4NFFjn1&7l*F^+QXd zpLb68oYxO6;q&npdk(f4nP@RG(PpgC;gpjHSXA#v%@HxwVgUX7zCCoes9kPq%P;ur z+3Xq_$J7xsG(D(dacsta{`(m>ZM=+CgLTdutg~tRBv-Fp%BJm;oHtl!)nJ_~9vI>2 z;hCPKE?K#V*Zy$^hmQzih9wI6^C15k{KLCl=^JheF5n6#xP^4id3(n)ELFq}YZkM8 z%Q&|^JqEyo8&~uq`S4!=xc1Re9{TVQpO3fbt7R#%A^_2@HxzdxbHQD~LRvfqkhNwJ z5zL|0i8O2-p5gVqvs|)r5vvC4JpnxM<^cdc9GL}R)nJ|7V@*U2(;|Re%Ec#}7nC=} z3{jm&$HnIxJ9mEx8T@(q$!u7&nAi8tvSH0)TDehQSjp;!E#o~D9BwHK`f8|kArL|Z zbsmJ%PFdQcMk_^V@mixu&73D+dW(&hU&K{wmy!pgF(cIfxNsf?PrUOTS3mO&TRv!T z(b*?O7Zd?>f+pydZaQM|iIvS$C36Z-!@h|Q`wxE4Hor63WAC_ARwBer zA_BQ2&wII;TXog~5p%>Kh(vE2smR2_b2JM6w)#Xa9a_Tv?>d+%=G_z|p@kr2$vo%! zJ>;!v!jT5rZeZ;xEF1ygqgQW5Bvv#ls${Ae2O5E=u0Nfpj#6Jn548EA8Tqde$dk=9 z&#g^!z&wjtcQ>cz zsHAfU(N^W+b9;cUUDdh*RKv>v#Bl8p4j&{0O;E#y{~V1jXg1I}8hC5-ji`Z$^3f-s zVhK{U_+ho^b2G!-O5dBuIW?~|(3oy;-I1uzM0+RAAA5dGcp*UGx}bPk7rk>&xDC^ULqKCIkv`sTThSNOts+S5aZxbN|kM z@xP+%vEHUs#1MsVCfZ2iP?Pt)s0B`$X%P8!yW+-lgD0MUg^mRBTnHhM=YbI7FAveG jc?d`ds4Bl7|LgH1g*2IpT~rmg00000NkvXXu0mjfeG%)^ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Blank_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Blank_16x16.png deleted file mode 100644 index 15a293cda9d5aeba5a220a08387229795f6d7183..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 677 zcmV;W0$TlvP)WFU8GbZ8()Nlj2>E@cM*00Id~L_t(I%cYY$YgADb zg}-~}Dj5t6iC_{#AfSylA%cyCjfFozi>XrB*x4!O7ieXpqLqqR3Th$#0ErL;C52B^g)tXYRDZ4!< zCV~i}sQ++314&XCs=mH7p8!mpp13i!O4OXBo8%kcPigEs6tNA zXtrqY{U+@=&9>5PIql3a1vN*_G3THdBGOiOFvsVmivJ5D=6hZBv>m*j2H$K1fBfRD z1H=HCIPQ73AP&IX(-i-9K^f)tp@ z&W;s{BPd@ST1aNP+j~HgiNB)!gs3?Tl7OnLaf{X*l6iwafFlX*L={ z5IMAiz61M(IY~Z}I#_^f=Sl=|YCA$4CxoB_0_!{K{R0IY!-;bC*ootaxBzjK-~Xjx z`Nt{?i(gSSg5>f$(3AUw-)SpLpTw4UUXIRpOA&wAOrL00000 LNkvXXu0mjfMhqK% diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Blank_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Blank_32x32.png deleted file mode 100644 index a876cb9cfa6920abd6254014fcf46e91b56df23d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1253 zcmVWFU8GbZ8()Nlj2>E@cM*00c=%L_t(o!|j$&h*nh? z#((F|KR+4}9a3W!ffzJ_)Iyw1pi2o{q`NY5(W2-Nv?Mck3N+dYxoDva zrBy8qoz!SdoNUxaOlSI>@0)M#`#vqsx!=9_oB75~)W!psd+xdSp7WgNdEe(f@TmRI zEfk%1KfR!$zq}%rI?!x6&6a4kMYH8BEyHrIe`Vp>Zzco4V0CckvpbQ%3|zt-+=L0t z6)zLHfeTj5F^})uAouj23HSJo6vwLV^!Jy${cIH-f)ILlDG;E5(sz;wT>|4c2&qDA z{BzxwtvRX$q$*ONXR$Q7>Pv-H;;s*&Cc(uE)BjlvtOBro(@oxbW#4Kt6zLYAuCBsK zeHSj0<|?06#(_Dwt2_4L$Dc5}t^`#j6m^xykr03oVpt?#10gVw#UH%5yu8cHId0sz zj+s9s28x|~isBevge>sW^#@#=Z!{QLiOEM^6F7n(l?*l;H z-Iq+D63p_7I50UD&E(?!+Wo-f7+2<6{Cd01%^ea+N(T)%9-VDI|Ct@;v{@V8XK921|$9D1h?#-OK+T_Yyi;NJ1 z&>XjZ3=q03c;UV-R%2f@CVFo06SeY~47-!L+-ByEoJBI2(pbGT%8lSCe3|Weg2uv}G|1 z`T=mN6)Z-sQt)^I#>GO@cvL6Fo^C`7=j|>#{DnZA@{QZ@f+YZ)KZVL&%JbR}$x4CdPTzvtkCj(SkYjQGq zsQJ8CfUYIM%R4vn;^Y`}^PS`c>!hK3%z$d@c@0#+suFn#?ABi$j=%jB$JcPyYd700 zE*X+AbKJC!1k?jis_s~&y}EEhmx;v(#{IurT|h-GFgdP((#a|}N9##o)x}d4^U6+p zk6K=>fED&kW#+i6TUpJ#c0?Oo%ZO@$=Vc*r?^)E9K!zTGs()K4Xy%4{KM7FjhLwyc ze4tk6Q*2mOqS_gtQdPYI&>Zyx;0`}u`7OFt%GW#vjVW4abh7xam@ry&oVa}FxXO84 zam-x(W8lpXrYb)Rx0th1T+G~45XR?XJoaO)pcqR5i^_g+#(2~owQBnZ@V}4a-65lg P00000NkvXXu0mjfBmYdi diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Console_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Console_16x16.png deleted file mode 100644 index 331aa5082d654978b223a13a8ed81f740f65476f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 918 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 r03B&m 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 JPDHLkV1hgIi@X2; diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Library_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Library_16x16.png deleted file mode 100644 index b1afe3dbb2f141b8444fe37a005b796c1af30562..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 822 zcmV-61Ihe}P)WFU8GbZ8()Nlj2>E@cM*00NpxL_t(I%e9fsZxnSH z$3HtWyKQ%uhSr);U|pf45)XQ5#b8YIfE5e}a<7;{Rw!PKey`84f~21U*G8P;gxl&qX7rr`-7=^ zg!hIQ!-?QrF--6u_SjIWaQ@Y&nYeJ17n)Vxe{-5{;u)!w7%zvkJBs&yC@>U&ASz)} zLIenmG&jy3pW@vw@AJjE!<_i|9y5~_UOX_yYYoG>M*>a9PJaK>pWIuz#v7;KX65%! zvG6!^uQWM#%rQUH#DE9woOZWh;rVf#%kbg}zWcU+`SrO|FKw;<#XAcXy0$4L z=o+6bUu3nl%>2O`V4Rts+jUQU#tmvWMEl2zgeZ21Rb1 zo*n0{nLTWEJ%tmzDp4FemX=#2Nlfd`8r}6R;%B;awmS?GM;!Oq-1=vDpBJ1cUX*0F zk9r~MbTTTH0ckp*EZdZWjI8Km)g8ieU_W2`@%raiZvCLDh$yOxnxZPy>-ArvEXzmZ zc$_TlbAQwG_iB&9h@-o{%f?E6`zRZ*4U*Bh;7!$=-uK)l507*qoM6N<$f>N|= A>Hq)$ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Library_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Library_32x32.png deleted file mode 100644 index 7ba4f2ddf9ae15b16030a63abad86a061c0b53e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1735 zcmV;&1~~bNP)WFU8GbZ8()Nlj2>E@cM*00t{bL_t(o!|j({Y#dh= z$A7b4*K0eWsS`qpB`AqoVoM=agW@0+3OrdzeIR*4EhP6(o=pIfS!0&W)sKTm{|Z3v#*~2PE%wsD z0Q0bPotfb!UjWHG7-nR%>6gon+_G;h1(KnvyJnlE#;tKHkHzbkhpg@#aLpl~PPwp{aotHABo$HJlSf-vU65_C?gE_xUD|-u^ea|M7FQH0Nl_d9*Zp zJoK}R^gMi;_ChZ4yiNwyL^csYMV1F(skfHpaP7IOKfoh>w=y&vacHE(JKCB!G*V({ zHsX=KTQdiwPIog8QNuY!bQu7ad0%4!tAVL95roS2-qlG_8J=snZtq=9?2Pu-94p(J zXlu#Ql&c0PI8}663Cyyf(>ey~e`ZD$E8U%~+|$`g|KVxQj0f}|p5~s;Rsc>G%UqZW zxi}qic{XDGx&kX(bBP2_vlv)X2dbN9+FLy<$y{}fsIg;f2Z#5L^R4HL0POkPdcO10 z7|)NC8tmTNwSs-$+(@bH<3v$e4uDq6Y<UpgUy% zz<&Bc03Q1JMSgPPADkHv$ax;3dgCmx;AX!5@E&GLK2Pl#;?TYy@!kIKF<-8b({Wz> z@lMR(vG4bj3j;!%q}i^qV`~RMcCC&l_D}G{{s~T;TL7TDvlSIdJTrF#?oyLR)1oe$8lb|sJQ`8FLLxA58R zyLjNEYYAg*0Py9#;|&sA4}|8tmv+iJ00;K_wrVKP z`x)>f)_&{*`13xuec0!vBaadOKEl7_4g9}sU}7dpiwtyi7M4ix?7$SC`PC?U|1?A2 z=2fT)YIOiajJCFR-nq7oLg5Mkciw$RYDE}(V;^UL+cv*H4OHRu#RC*e5Jz!RCF@eR zUIKt;2BzzhEQx^z2Ex#BYIun9LWQxh2}G3FUmYYU2L$DSxyd=!d_oz1eULElsRRKt zvs2`IQUIEiSV@EPMiSh&>1ICJyPDCfAtH*3)c{l~jt_0S3xNFxMsV)$Z2QPYFb5Jd zK2m1bDI2$TqX=d(=ZnWFmL?Dv*G@hPW784O?Yy1mZct&*k5wp@1t*HtOArKcwn)^7 zV*wX{#h8QuxY!|9L2x(?v-NT08j4iOcbvN5Qbr7`JK9;A#v+;>(J}@SV~U6p#WCi} zm_{HK0HP=+QXjDxv8V<(c9<$=URv{O9kbR6({7rb4FpxIXTTv&se}#@BZ^{(BhUz{ z3`CCD$~cWtt1%$XA=&1O&j585RO_MO%_b4GpCyvlFn8Y-fe0orIkSpC%tfr(<{{RM(*n`8c8aA5RFz-6@FJ>76VtS1R*zqn=BH*& zuG(d2Ov8c0FH;F3Cazv1j)W5@ji4M8lq;0xedKn>)X9(_C{qc1g6ocaPh#YczuxWr zTmOo@rxO6q30)gLP8=&iM7uwzvW6n|FCe~R8N1vJE*(Z;9 zZ~IiN3TMw2nV+9zY-|wcgoDRAn4a<|j!yBn3+L$j;=7qWR$yk@XJT}cOXvU0YXhe} d{y*O4_$OTf2<<8km;(R+002ovPDHLkV1f|ZAaMWy diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Service_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Service_16x16.png deleted file mode 100644 index 115b354a27784ae3a186d30e2e7b05363c2c80d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 864 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 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Test_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Test_16x16.png deleted file mode 100644 index 1c8ac28987b197b9d8b99b0e4afbc283ccd07652..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 885 zcmV-*1B(2KP)WFU8GbZ8()Nlj2>E@cM*00P-bL_t(I%Y~9(Xq9ys z$3O4;{?6KQXPY{MRBUOPBdD!EE-cUusdkklT?n=UC5Ub+C?oJ<7fBi2Sg0341^vf_ zMDV7dqB0=~t)}U5Hm7YhJ?}YZXXl*v_xI`Icu_(2y?Jh)KYYK>CjxkG&&dtOn4wxz zm`OdqmpqrNf)^o*A|fD)fWK7{=*YKyr2w=xL+kFpXH08w9-J493m7Y8RxnP`R2RO^9qJuuf0tP^|yFM{`i2!sFv#4#kQ9R;u~U*x6H zey$~LTa%f+y4ZWRKeLY*KuE6oYF#om(8xS*eLc$yA5G!B(D~GHa!EwF=BUhDW@f7x zm!Kx5<~E<7ni-x=Gcs*)uI1C&I!~@&%EG6A>og<{a?Ek?%p=^oav7uRdU*DO3%tL56%V{w4SwUMQ6v+IW2MC}SFg7_0~HgZyDKoZO;F#W4|1wHeVau_0HI<|JVB$VrrV#?9|{-00000 LNkvXXu0mjfBL|Pz diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Test_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Test_32x32.png deleted file mode 100644 index da289cba4d10d21eca9c80324a7824398ffeac5c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1848 zcmV-82gmq{P)WFU8GbZ8()Nlj2>E@cM*00x{%L_t(o!_Aj}j1^ZE z$3OFSfn8kM0)YbC(n7Z?RRkik{4f?xFqqgsWJ7AB*qV|Uv>jP%L275+oj8*TiAX3cHh1qGxwb1A9LTl_gJt}je3*G%-p&6 zp6@x|^K0OLJOVRIUcR-xHF+sUMlOVGUdiT-Y{AIpm0S^u&i*69&;GVKsJ(P@=B$~R zfe5G>qM%}kfvClo7*0S9B2h%+Zz|x_?-N5cUSk%|RgT^JP6Ch`W)c8{Ah=XZ0|P9; z{5mruh<5<-JQ!vqvwr6lN9u}S%mYbKRooL{{&1@n6>#bLD?=DYLF=*O|1}>N24MQw z^W3*$>2PCMY;FV0^Xhp*4aEBa20;o;jmQ~J%YGmVs)kxT_uyk&Ir~p3sAR%oUQNM> zfz+e|j&=_5_PYf})TU5{x{)bPb?52skEpM!NrbD$ph{|Xv* zqoyXHdGnimdHZQb)&|tnz{n8+tDfoLwjZ8g^r%!KTrJjI%uqF)6GYzwK-uiorY}7M zJhF5WN75lLAI~tRzJ`~NXE>4$d1UFN7_`P`lr3Q>AR?&9l>wO7){+=5zpDpU2$f~c zvx(YsW1+LA@HIdQrh z6~n0_exW#x-&J|-^<%8PcRA{e8IASa-dNA(y%)G=@kBQ7y}<2_^#C009I8@kUQ+|z z7eo37dyUtF9M2ukQ~|i7sexS&e3*fpc*RNpoKy%G%#^?!W&#>{;W2<9pT#+s_(HA_)3Ez^ zh8Nni+|ks)3~vDd`}te|R{f%bpB?VwRCk^LaH6P`0E8|Pej&Fc`RG(}BE#tT{HK-H zlV=cB4j((g{VQ8&nKzCX+OxFG8&{?Ek6-#50EbU!0hrNPPutr$L@O*1MP*Zmk>i$| zCRTZ)CQhjFv&7n~8hZ{LA)OWO`s4)eUObUvRGlHexwE^9f`Pm+vNjb*K?y)H5^s8; zl8!j}1gK9!qF%5WYS7hFf5JpN*pZW}EOq*OcjDlak@-FxM<{fq(>g98@$NEZH zc0x>DY=O}EIJZQYY56YR8eN%AwzWOPS7(1aj%~#!87@n~j#n;JNJ})N;C0obL^JcJ-}1dzl1xrn^8k=MYg;%v-<-NCX-ZM$VfwVBxyA2y^|od@nBF%jkx4 z%)PUXwTsr1w;btwnlK1iFl!;(cHhsM&un2r-BdDJAw8J$l@Cvkq84DjvvQ(XnF0X~ zF;9W`_G$0drZ|UdylMTOukiKxYsl#k>0%%0Vjq3QUIrx14Kt_kqg|_ceEA}bMEDre}0;o zb3RHsOfwK=IQ9A|K6Jwj&Ryv87OU(5DypgmWq_hs0>CLIMWTVf6GbsHQTXh4JK`wF z^&j-J6DT)lAPN#; zs3KBO3WI~lpkN&VTUT%Y_kYbcJ^j47$We3=Vd#jWh%k(ZqKGNikELn)ICdP|gqsqf z?cgSdSUYT6^AnmsvLLu>;XzOh;9nVsP8_fe&#Xg2K_caeweL@O2|(E~uHrh_w%-=4 moMQ*u_S^f}U%LJ;#y3|mOSYI0000 - - - - - - Silverlight Application - SilverlightApplication - - - Software Development - Common Language Runtime - Visual Basic - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Windows Forms Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Windows Forms Application.uexml deleted file mode 100644 index 07c3ee3c..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Windows Forms Application.uexml +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - Windows Forms Application - WindowsFormsApplication - - - Software Development - Common Language Runtime - Visual Basic - - - - - - - - - - - - - - - - /// The main entry point for the application. - /// - [STAThread] - static void Main() - { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new $(Project.MainFormName)()); - } - } -} -]]> - - - - - - - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Text = "$(Project.MainFormName)"; - } - - #endregion - } -} - -]]> - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/MSOfficeAddin_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/MSOfficeAddin_16x16.png deleted file mode 100644 index 6a073cf9bff901a78bbe3f7f2d4a334fa08eb5d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 855 zcmV-d1E~CoP)WFU8GbZ8()Nlj2>E@cM*00O&7L_t(I%Z-v-NK*kE z#=mnmH|I7q^FoRnX#&oSn1NLj-0_{NBDlAHRq1{{cZXVVL`&tW@1@Q)~2peZ||B z(pI%bw>?J&19bL{*W4(`E72Pl(g2`$790mK907LhDOM+kz;14W=k#KYO@Q=P zEu1b2K8pHNqIJ{Z85o-#HB6gO|FMYx0Lst6OL17ys-tdf(&wW=Q-1hp2DH@%k|01L04a|LF&7HGc?-Rx zS}bn_Fu!2Z|5sv1pO)Jf9sws!BDOIfbGfe(8zF@tDi(&ZVMq_iArXaPaLS1ou^+sD zJ}|w2)D&5J$>SI1Rhy&zxM1si=y)42)D9{+6_SBQm=9frh_OI7>qlf*po0ju0n<<$ zWSP+qXzPSh5cr8H%XLVI7H&hFK)|7Z4WGGR<}f1Y66M)fz*zc4+QDupU)jr~k@0se zj$9&?%0N_P{7uVT!nX-yU+^gdfO~TtAtE`-o>VL2#CEyJ-pMU`R9yFSh1{002ovPDHLkV1f?YZgBtr diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/MSOfficeAddin_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/MSOfficeAddin_32x32.png deleted file mode 100644 index 2a08b16c34429491fa2f4ee3b91b4597ef524be9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1812 zcmV+v2kZEWP)WX03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00wwTL_t(o!>yKUY*c9( z$A9nX%ycMI+Op-=7HAh*3RDCFB1?8*yI@GbB};-qclV2lF@7+{HQ5hpG)AKvFRNcn zTus)vyXwNmXcxK2RbVYF2+3MufkJ6ZDGZ&R>GaIZnK|cq-`5Y*Lb-*O`cF>g!#_Fa z_gv>u)>_6RFYnWFsn?$G?8Wy38tZFV-ZD>Bl$VXkzgKF!0H;3cw2q@_X_~9Ra_Cf5Q(%qk+<9sJi&Ym@9f5IhLxuj{{kelP( zUHduwK|2-YQC@uExiS0q$y)nZ&!5^(*q6TXWBa)N$TRK?jHoZ3z-aT>{lZj6uX=j7E$>izz~CGYn_Q7kpm(^;^99wJ+Kch)0&-Qun|EKW+i74cZvA zXoBJB12F`F#urTx2)+n@pz#C2&E|Q2;|9L{+VAd+;iFb(V$i)m>fwmBu^4R;qtV)8 zv_`ZYRSt94?~v;i%cJEEK*z-%>o|(-o1ebDI`3zQlmqzxqjlq;xoLY#f)m#q2jTS!pM zLZCGw7Lic^4_lpk4j;j2L+#AgV!Cy)+4OK@Dc|Gr$DIr`e~am}8xgJ1+7MW{adtn? zbhqJp0lr_HltAkuh|z3bzxocq!&c{azWyZz@W);4Rz{jl+hP{PP*TX_W&&o^FJ#*E z8N+EVMjD&j2v;J6LQw{@c@ic@YH*NT){@OyB9U7DdicEEvaVSf1^({%SI85ktLmyab8;`ATRER4OP5m`F5%66*YFEIN~uQ!EMHW|n>!ECvS2=1o8kF4RJa}$ zB_aAw?jlk%my8M#i$;kwEn()I8fIOGZ_4{AEdiQ_C9Ayu^{Tm{YC?a6Q5OOTdtJko& zWg#bjdw}`tH&Hh&#;McCd1`qxEejer*uI~rmtxzqwba$ss&OBsqvfW%Z1$5=hzOu? z@R9H;YHH__zVSEQpn=#Eb#(V1Cl+p@eoiCjuI?k57(%qAX2zoNpJby|&JoI|T5#Jz zXF+bV<7h8yo>@;_#Xb)IIYafTO(dN?T-<+#?OVT0JlIVL6NnA+7grz$jU9>l~`HzdsC~bzW{LI%75)& z+P_E7Iq&gLGJwF#p#zOE`tCE!?XXkT2|oP$PdRg8H|GX_#@jo7wQa z1b#k4NGX)M`!xmM;-u0f5-CbDS$dO$B(lQgo(>zGRLc2lALBTaur@P6054C83S+!J zf_xgsQGjA7)lJ!8FNMJ1i^j`o%4=NOKKuzr!dSw1UV(xiObj5KPBLpsIg9)^NFLp3 zjjF_PCJ~90;boExB|TPDe~J%I?Irn18fyw@14b*1h3%WZIWFU8GbZ8()Nlj2>E@cM*00JCIL_t(I%e9kBNK|1I z$N%?wo3UWBEQJzA(z0+Ot`#E@kf#qb9KuSmDT!Od&BMF<4YLh@VYvAFd0UZFeRBEaFOnbB5 z6YY1y(bwm>kZ@f<2nk*&Bo0OboE(tl0>T5WWO;ZkmCl&MZ)Qdw_YY(2-Frpvya2`p zI0-N=z!-GP zUy?569OWk;#6Bh9-&)bwcJ^9xiK2iJK{^t_*0rG>_5RROK8()cbEoOh6 zpcpOJk2aZx86s1L^iWkO@nH@Nv-V{;PU&C$$AMG(ueSCC-NTmx?r*JJ3>R`R9?5m8 e8cP4!*M0{xwjRmTSDW$x0000WFU8GbZ8()Nlj2>E@cM*00dx3L_t(o!|hgGh*V`5 ze$H{nRheBa33J_a^JgtxB8>FH#BwWw!e}M%x4SO7sGz8e@;bcevWN;of+D<&1uJEh z%%3n7bVXPV?A$^Um--f8RSF@L#XM%>3xpZOT<#GwoQv?*t1qKtd0S9(2-D%~S3h*yzN$gZ zpsHXts0vsW!Wx4VO~5H!?uoq(ayhK6%kFn?|th^Rs>k-Z8COSRuITVjPI zmM{szFvPt3nlbm@CNNh4s9K%4IFz$=b?!ZI5GslV_iu>hmN;zHLse6GQxI_$(g1$+ z>rPB>%9QubOg9r-THl6LD{!aP`Tpx$0|5A{`>1gmHnCWRbfBig6VDUBDS01E1J<^# zE)P3#{xr-Cq7?w)0$*n5p6VGoE9Mz4;dVOoeK3tK7*%$c3NxT9-Bu%m0k9alAT>UR<%t|XmO3wV6; zDfzA_gN4CN5HAolY+&mMX^zVe4!9)Qw z1Pvh~@4)Qg#lu9g>&G{sUa|WuOvNS!uxdpszSy%L9m|(OM3eKMgi>Qa8>eSL%m^|8 zo?fvoSf*m0uR~}B{;W>i$4nz?mj)zC&;K_lDRR4Y8ZnbsyCR_XHV;~}UcJLH|xH2$i z?+|eW?<0(yk@{~$cdNo51$@8vAWY(YVQN^prnL;9@6ZTL;(LIK!C3!Z1#Yg+cb>3i zYv#tR$>GxB0*-ukGMLhxu%1#U$d|5zD1w&=63NsrrS+6AdK4YOvj=emE@l2%0Lq5J m9~@K^rU8O!g8%DZSAPLP!<`!5QjJgm0000 - - - - - - Empty Project - Empty - - - Software Development - Pascal - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Class Library.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Class Library.uexml deleted file mode 100644 index bf9e190c..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Class Library.uexml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Class Library - ClassLibrary - - - Software Development - Pascal - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Console Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Console Application.uexml deleted file mode 100644 index a27ead22..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Console Application.uexml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Console Application - ConsoleApplication - - - Software Development - Pascal - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/GUI Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/GUI Application.uexml deleted file mode 100644 index 48285141..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/GUI Application.uexml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - GUI Application - GuiApplication - - - Software Development - Pascal - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Application_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Application_16x16.png deleted file mode 100644 index 9bdcbfdd5f59e63e94b1507b8fe35a6f200220c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2082 zcmV+-2;KLIP)GbH{@d>#M*03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00)LiL_t(o!|j)Ca8%V9 z$A5SCZo-CygoQv7KuCBI1d9n+3>FY7irCVb)>5W|)v0uU3~#N0fEEnVpfv#jLo`}60ZD7X=ni1|q#-PrH=~_)?D>o0?FJ$Jll*|vkDzbb$X)u+Al^MRxRia)pGt^Is({Bwe# z5RPqO1_L}j_d667_xHF5$8peKB?4N~DmT1DVr1yS@DdN4JYCJ6cdO_d$zyogAeKBk zp4_mBt)VH_MpaFe-3LA-nX;Ha@7vh6#?j900f*Os&Z=$VtneHC|7Ic_A^8`}8giyL`t*8Og#O&{9Y+L$D5zy?q#udM*=q}#UL z#YtOn^!O>3%>N;q{;`jg&SKn{Qa?%v7>2=HJGL@$@(lX)E$mEi0Z64ZJKsJ=U2Qcx zH^1bj;-n451qVCb_kfTF0AMS>K6a&-qZx+5bvOo2WZCtx{fk^KNIk~;jjzf>! zBA%W*gLQx2OHMe?1?QEAri|n7ZzlNp$~XG1S~-11?{Ju3Z`eyoaUnNi zZ8WyDQ&sf|ue`8?9sm9d^-Zm8ShJj#<|Y>WXgbl07iny6r?I)6SfYcvrUVnlkLJCP zK0obhKy@0At7+Vp4xnAtP(Jo9nquv4mJI}`tGz}|)e&l{j!<#`cZu{HL~BbEi9|F1 z-1-{ddtwCv)8u^hQ3{Jo$;&HX@X#>>%tsf@G?m9QD3Ugm4lKBBQd+m=J^J)B{mUaO zJItw%Iw{<|VFjVAo_;@(Xrrk$MMG^h+y3w?CQNyZ%IQxsu%v|Q>hS!4$_RTGIx>qV zL}f#5lOooVBG#gawJ2^hwUA#}<}dy90TY@)eMQCQgTAv38mI9InY?$!Ga9YcaSB-&Fr+QAH(2r%ltAJ9;HmPE@9DyIIJ zz60;!;d$fGj>ge8@zw-&m#X|Nqi0XkZ{Xd4kz-<~`BkX2@PLYEqbL-bR$5b)~!{H{H!?r z29^-cFJi>RM|=Ru)<)j`(?aIH^dFAxe1mf*cKhC5J$IY~TNm@KMXwVIg|Sq-|8B_+ z+1@dgXk1SkAzzlgWprm7}OyidFjwDQ697U{|TrZF5LgZa!wDFDcvL?4jMvDDU~Y=^Kw<2h}OW zY0J8w0_->d!}`RzakZ5EvH||}X@o-L6c47Q?ov0y*}WnZj=Yy?&uzjMgUkEhsZx4%D?-UPW>Qo!h3rUwvUBrkPo}tf-~%Gpk5V)|e@M62{iYp9J_z>; zc8x2aDz|)m=2O;h*+%f*nMCdxjgcEh0s*peaxg-G23y(Q4-*Tku8A9m4>O?QD3i+z z7cX1>!f(4jNIagS*OlK-rv1)1Apnv7W%Q4PFsrxgnvXvWGa&gPxCa0L03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00)LiL_t(o!|j)Ca8%V9 z$A5SCZo-CygoQv7KuCBI1d9n+3>FY7irCVb)>5W|)v0uU3~#N0fEEnVpfv#jLo`}60ZD7X=ni1|q#-PrH=~_)?D>o0?FJ$Jll*|vkDzbb$X)u+Al^MRxRia)pGt^Is({Bwe# z5RPqO1_L}j_d667_xHF5$8peKB?4N~DmT1DVr1yS@DdN4JYCJ6cdO_d$zyogAeKBk zp4_mBt)VH_MpaFe-3LA-nX;Ha@7vh6#?j900f*Os&Z=$VtneHC|7Ic_A^8`}8giyL`t*8Og#O&{9Y+L$D5zy?q#udM*=q}#UL z#YtOn^!O>3%>N;q{;`jg&SKn{Qa?%v7>2=HJGL@$@(lX)E$mEi0Z64ZJKsJ=U2Qcx zH^1bj;-n451qVCb_kfTF0AMS>K6a&-qZx+5bvOo2WZCtx{fk^KNIk~;jjzf>! zBA%W*gLQx2OHMe?1?QEAri|n7ZzlNp$~XG1S~-11?{Ju3Z`eyoaUnNi zZ8WyDQ&sf|ue`8?9sm9d^-Zm8ShJj#<|Y>WXgbl07iny6r?I)6SfYcvrUVnlkLJCP zK0obhKy@0At7+Vp4xnAtP(Jo9nquv4mJI}`tGz}|)e&l{j!<#`cZu{HL~BbEi9|F1 z-1-{ddtwCv)8u^hQ3{Jo$;&HX@X#>>%tsf@G?m9QD3Ugm4lKBBQd+m=J^J)B{mUaO zJItw%Iw{<|VFjVAo_;@(Xrrk$MMG^h+y3w?CQNyZ%IQxsu%v|Q>hS!4$_RTGIx>qV zL}f#5lOooVBG#gawJ2^hwUA#}<}dy90TY@)eMQCQgTAv38mI9InY?$!Ga9YcaSB-&Fr+QAH(2r%ltAJ9;HmPE@9DyIIJ zz60;!;d$fGj>ge8@zw-&m#X|Nqi0XkZ{Xd4kz-<~`BkX2@PLYEqbL-bR$5b)~!{H{H!?r z29^-cFJi>RM|=Ru)<)j`(?aIH^dFAxe1mf*cKhC5J$IY~TNm@KMXwVIg|Sq-|8B_+ z+1@dgXk1SkAzzlgWprm7}OyidFjwDQ697U{|TrZF5LgZa!wDFDcvL?4jMvDDU~Y=^Kw<2h}OW zY0J8w0_->d!}`RzakZ5EvH||}X@o-L6c47Q?ov0y*}WnZj=Yy?&uzjMgUkEhsZx4%D?-UPW>Qo!h3rUwvUBrkPo}tf-~%Gpk5V)|e@M62{iYp9J_z>; zc8x2aDz|)m=2O;h*+%f*nMCdxjgcEh0s*peaxg-G23y(Q4-*Tku8A9m4>O?QD3i+z z7cX1>!f(4jNIagS*OlK-rv1)1Apnv7W%Q4PFsrxgnvXvWFdJhB0^k4u03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00PBHL_t(I%cYY`Xk2v^ z#(#I_wv$PdsckTlmPyiXRN6}Fvk*cb(yY{i(1oFhMyS|UgBwXVDuqySV?qqnE(EL6 zfVil%4Hlyk+DM}9K%P=!9r7>_(Sxp(fJ`#;CUO>7rt!!{L0Kb3P9IPgnpi zzS@4)I8H%S2}Dp8LPPZ8uDEXT#<9dKPV z@1Tx@=3Ufvk-URA4nf{U@67{*0`5c_Ka)dz599k7&kv*TBWrol$9Nv%7coVjsOR3_ z zc#ObUEG{nbufQ5aK^4S=LWP3QwZ0L`N@MJKycXXN7#JMpZnl7^01#PgR#ikmLh3DAF&1HP=r10rEOKXTgzWO)4E*vV zR@5dvo8yPh_o>_W63Oa4O_BTKhYXC68k)ePN}|k7rWm-|&Vi;gjQ{p6qu0Bs-F=W3-u{d&5AWpO z{A74U(eR#11jVAJdOLQh#euil*xh)Hn)*YGUhf7VJ@ONmJKtne?KU>Vqcb+Z#Gh02 z52gqLp%?@hBbb?KtfybsXHK*+di4wILA#UBHEPz5S>ElwFYV3?Jsf|f(fY4X+bANi_`J|(Z=Z~D|l3fkQyv-E} rONH3nRJLO7*RQ_mK7aD#k3QfZA=9hv3A-rk00000NkvXXu0mjf@N9-k diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Blank_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Blank_32x32.png deleted file mode 100644 index 507c7f9385fa71d8a4f6ce4d61ac11832d067423..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1968 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 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Library_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Library_16x16.png deleted file mode 100644 index a3bef0a2e7fc4c973a40eec863f432dea2201cf8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 903 zcmV;219<$2P)GBad^$d~{C03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00QetL_t(I%cYZFXq9ys z$3JK1-8{#bFxfoXntHYr|CCE~2g#&BZ^9(1T?j>Y*-aF5Aw@T07lKzBLP$iQ&Tb^K z<*H?6mJ#Aowpq63bfu?rwsSoH-v96Wd!8;%7G8AK7akrS9=;#=^69aZ%Sr z9S`+9#BmYVC3ZaYP7$C9@TPAP)@&pUFky%Z!e$Rc@vH2or@Q1MlA)W0TkQ zzZ8qAAE`QlYRy$GHB^gL)g#BwD1Zgv2N9|OiV>P+gxG*464V~0#3n(h zRN)`MU5SD!h-rd+KV%Dn(pMFd2YSQI0|yC=RTy})AU zjvRp>Fgtsl+@^K3wOXA1;ztJe9PG22W{6GGDAK&{(Uafe28MO3dpY&-2;Dt>eE-d7 zbS}xTaq|=OX0rsQbvp6EiK+gYKY3+U*9vA!<21KnxL6IB+jT*T6>lFH;bJG7VMZ*S-M{Udz1 z|7j$S=*VPw>79#&P6I1{yTtFe%FGoi%-^n4x|774xk2RCX}kX^UN~|duR2dlM>`Tn z091-Mc<z@cRoAF_EXoWPF*D3*~7xja^}Z= dCUxof=wHn|;W7|;id+By002ovPDHLkV1ljeolpP( diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Library_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Library_32x32.png deleted file mode 100644 index 9fffa7a230f2464b494e2042c7748d32a1a54837..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2315 zcmV+m3H0`fP)GAaP?U|0YE03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00?hML_t(o!|j)8a2&-I z$A7bjRx7V1S(ZSO4;jlg1}pJ_iE+RX6Rt8~QdFQwVn|G&5(mdcfDl5exQdFYa1{g) zgb)nma4N(Qz(9Ne1`Bh@=LT$yZOPUxt#-B2?##|iPrrQFLlOdtZ~2n0+U@T5y8He6 zy??*%f&Z8PaWV3Z<<~Zfh#;cTT7!Tm8qrx-@N^PBUV@mh8M- z9o_tZ0T398Cb(u5TDgd$(5{Q&Dnz-6;VldDB3wBsTw zJ62qUc5?F_7hj^iVAEG z#xM>M0|AWed<-PFmN6Rdh_z(oLc-|Z2r!5-3j3%KxDPd=$;Wj#ep<-Na$L}&K?KPv zKm;Q<)<8fDhG@_lpMW76EgGNXIbe(haPE?6tiJMsF)S4!ODwXsbgr+-wY8uHv<966 zr6t?ex$&L`t)(El{hs@YZuuM!d{L1?_yrLoYkY*^yiv(+egvRlz2uzL*4B#W>CX?r z=NZ;ABAhvHWW8<_7S4Jj*Vdl}k=?nM^OjN`p8l!;MzB7=yFxyYJU}VvHoUZ%rVkI| z4+im+OTh2rniZE&U2}Xc_TYIQ`m1aALo8c5kHlbx{-j0!fJHo+VcpYz;Nan71z9X%5)2xwT6q~w&ByQ?{x1NKk9Usk zg=AB3eHO@;cXl#m>U8QR9Zzq6n!VBg(B9Eae9)#Zo~Afb%{417pslly{(%g!gh^k& z$zUqOd1sx1KQx73-tlDR7yzDt=Lw!CC{N?*e4S^t(B9d@b1&|uwx)`{M4J9VlW24w zYwx^~4gYwC-uMuY-hT^&$vCTjcrGnRkJ6ts=}(#@QVu=w6pI$lVcQ1>_lyCMy}?F= zA%DJ+e8S_Ab(>f?zkztdB%aKW7f}K5UHqlfk|YvCo> zO5@npRR60R(=xuKoa(ZZd0|5*%a?3J9Fs|r1TE2Re6a0hs+KmOv51)_9sO1Kd_FAO z!Se*$QB15kkyyva2*RTCS5tGssmz#n0h4E*juszg#-e#sW5Fxs)w2nPCt{|O!GPA9 zl9C9;#U+G79RSQbV^;QJ)rz(cUtvE`H+L4F9z8@+Q4oB7nqPky41++hm_^I3=i5KH zH+z0^7gZn_A{fk`q|O6xk2-7Y39t!Z)ZYvJ>t2v?A^@a-J2NbJwna& z1uVJz4(2ZX5d%Gkn7ec(!N_o%e5M&#gp6VR$a>`u&lM8y~$6|F{srvIxP_2)LFPurez98gew+^Ke`janp!)z_S5x92Zwi zJnb@JLK3g22m(GDmak;?xmTb)m(cifVzE|+`rE(ocI|12VjGHZq?A}o7a^VK@L8sZ zr!<+2!qeb53e*s&pMmCCARqa^sSA2t$y4S0o!)j{_eY&DVtbdH;$v&@m`#aX=0^Jk^?3(-=np;6Wg-z zEEA5rL0|m|lue&hxWSBIkdm4@278W;F&rwbplbH1oPFCLQDV@x`Axnt1M9x~9{6p* zG+h=fIEA4hhoSUA9CsgQ%(p>%Xcv0o~O7?ti}K`o@-Cb%h%!D<2|^;}3&q!jh&`rwB7N lFmp=j`nC7myXv$2_%D7#o`?*eBh~-_002ovPDHLkV1h;uVE+IB diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/ActiveX Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/ActiveX Application.uexml deleted file mode 100644 index de9ef1ce..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/ActiveX Application.uexml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - ActiveX Application - ActiveXApplication - - - Software Development - Visual Basic 6.0 - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Blank Project.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Blank Project.uexml deleted file mode 100644 index 4bf8c9b9..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Blank Project.uexml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Empty Project - Empty - - - Software Development - Visual Basic 6.0 - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Class Library.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Class Library.uexml deleted file mode 100644 index 4d351266..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Class Library.uexml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Class Library - ClassLibrary - - - Software Development - Visual Basic 6.0 - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Control Library.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Control Library.uexml deleted file mode 100644 index 51e27494..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Control Library.uexml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Control Library - ControlLibrary - - - Software Development - Visual Basic 6.0 - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ActiveXApplication_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ActiveXApplication_16x16.png deleted file mode 100644 index 264ec15d254050469e43cd2409f4c5ae199a9a38..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 625 zcmV-%0*?KOP)WFU8GbZ8()Nlj2>E@cM*00GrWL_t(I%f*vVXcJKo zhrew$n>3ezBE2eJ1TD3fLN{n)3le*f;-QALng~MLlZa6Nq?m|MTXK+GMKK`NgRP2+ z1zAE|5Ts(DT2fL$50Ms{fO@f7%#N32Nu*%Vg9ASphIzmF<~<(#V<-SP9Db_R0MHIx z_#2l5sgy81Z8141=(+&oK+mn(XCHZ74mw=*&_I4FC@#)MQ#2Ko+5s}Kokh>h<* zWYZGq?LF{E19hvS+ob`pw6p?n9&oozU|E(;5|1MyTWfh4IX8Y)>ICyXpFf$;zb1a^ zBIQbjbUIC;5N7t_XwxJS!8A>r>QADvp)LUGH$6OjDtGVxtUNaiIT4A-%}ho`UqB7?p#82hZ9Zw*pGtIUJ5G4jetwsq4C;px|zIlgpZ@PG@a2Jes?~%-tuA zKuPuY!yb=^tnq>!+qV%KI@W~$_~{HV2Yj<@Z6_nAUxh}FcLsw&#q0HQd18XqPaiOh zd1A4c-MG5Gj!Sa^T9efLn+18lQdEk?0{%n&(%rRJ*|}>sef>eY_wS>$wnq8OSBZu~ z3-8`80?{7(3p6J6=hS`vq-9m@y){k4G_y(IO08!K*r??>{(JlaW7Fjvzs|oL00000 LNkvXXu0mjfW^M-w diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ActiveXApplication_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ActiveXApplication_32x32.png deleted file mode 100644 index 3b7d4f65c52ea90a09d46a0d7dd9d4c0d5377486..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 521 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 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ControlLibrary_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ControlLibrary_32x32.png deleted file mode 100644 index 6d431fb8513aa9bd629fff63872b654d87fd1bf8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 460 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_d#0*}aI z1_o|n5N2eUHAey{$X?><>&kwYi%C#Ri1{~T3{XfmGbEzKIX^cyHLnE7WngeFN=+mEY-dS^E)t`+M$%vEj@Sc8nXg z_w6l>IdczzzlR$y$>FVdQ&MBb@0KW{dKL7v# diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Library_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Library_16x16.png deleted file mode 100644 index 417f054f4afc181918daa9358be90941f4b90a6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmV+}0@3}6P)WFU8GbZ8()Nlj2>E@cM*00ELoL_t(I%e9d^NP+@gFjI?+0a88dM~Cq z6+}5@Xb3q(kJHrqK^7gj!{yxX-U|o#qZ9xj%N<6gQuNqt87{51#CmXWenR5x$6H*k zz8z9SS=P|&6$xM`r8m~rEOfh7)K^;=2!J|WK7R~*Je`oF;>pEDk>N1tcGnQV;FFh% zBmg5rLnfcoS;paED*;TVv_Y0Tq)@1YvaBH~QWW#3PzV*@G0NA?%}rXnP8VTMZ><0v zqPtrGzn_7YmXBa|Hek0GLU?aDouxFHj&OXOi>|IX_VyYPjo!YQ$;`^c#P}x1rhNO) zAI!|oqpGU9-0ql0@Tdv*cS*z&3y8&HP>V0HO09;)Xy%M#C1f_#*FD4Q8@pwO1|t*K zNuEX`pH|{J$x40AgMVxH5U(%)8U}#X_3iRs!vKVwoLu$~*bu*pe;HLU80PexBV;zz weTY<8T3(T&mlxLWvMwmfPj72&9>ss?5sj7lyAT$=PXGV_07*qoM6N<$f_paVKmY&$ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Library_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Library_32x32.png deleted file mode 100644 index 56ef8c6c81cd78bd4e9e7d6ea37208312616b60d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 455 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_d#0*}aI z1_o|n5N2eUHAey{$X?><>&kwYi%C#JO`vjmHc&`5GbEzKIX^cyHLnE7WngeFN=+TBl(n(Ov0SN3b)>vO8~ z_r2p!tCUYh7SE`>WLWa#{Dh?w`nfb5|1EC_dJ@Q}dXk;VYjQbDj^jJl99KV~*^_pw to!DwH{m%Z5S?}kE&bz&D@4xEak-ak_W1p|?|_NSl0fM#+Y086}}79`Na@d2kB( zDeZ9KRczedp%Qa6Pf3N1Z>OoJi;0DW=Y;0w=1UJAJ+Obl&hp*lN$C5pufE>h_r73W z@x9M;`DIGh+s-=Y-+3pZHgAs9b6NER>(li^{GTmjd-ME_Ms0cV?@ZS7U;ka?W4!fg z?ya1bX~M5g-U-Pyb9&vSHJNjfM$ei?$rD>OZ%$Yr=A6J7IGcB}sCozYhl5N>UvttA zyDwFma@xo{t}&->VL`-+lqU*u(=)beH5jqyH_Whp@s&le@OaWBIUcTMH?B>niPM-m z&H9GaB1Zl`)_;o2Y!xL^u4Ku+UO6S6z3rGC1M6(RDc84uOZqjD`r{v#*EDl@@N5t1ymdC^=>D{?zfGHC jHooVG_^p5KOyWBG-y3_c29(Cl1%WFU8GbZ8()Nlj2>E@cM*00DDJL_t(o!_Ai6je{@{ zglDWYlB%GT>j3gZ$}pW=S91@<1dRW%LAsSJMQG#sSnn)`B;37*aZ>0x02tgHuM6MZ|Y}g9nD!{cAUifD$i8VQ?AQ^5#l7fWo3N@WC zm}<;eJfd&K@7|rYfVChgUvzQDS2&cD3KOx$Zq0qaf?Qn*6WokE0Bs>+bD{>qL^n%7 zq=wa5h^Py8&A5M - - - - - - Standard Application - StandardApplication - - - Software Development - Visual Basic 6.0 - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/ProjectTypes/32x32/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/ProjectTypes/32x32/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.png deleted file mode 100644 index 7730ebe613ad19cd90aef53cf6cdeb48f846032b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 533 zcmV+w0_y#VP)WFU8GbZ8()Nlj2>E@cM*00DVPL_t(o!|j*9Yr;Sj z$G;v1rC}c~iR0kDo1&1zzTbHgPAyDYz;@rvUh|YzANa<7vbS(z|0l~2tltMw` zQ0SmIYo`-`BqcQmLb>mfNAi;Q;rrg@65z-R@O;>5?rOD~+n#dA<8gp1fTAcX7LzE! za<=pYL3kA>QG$Fu2hFHLZC9Wf)%A52Z=PGXV3XXB^7S0jg%s@J6qC^e;aC{`*1)l7 z`{s$S0|1aNq_Fr}pxf->{nv8N$56vu!mD5l5t#K zUm%f;dwLH9{Q`tSA=GL$P)hN3Z#w2|&X=mH&O_)&vMfW_b(p5P9!S=nY&QGry?X$+ z+8wu{{1|=0czFc?JhmSkbGWX8LnHtMfB+Bx0zd%l?S^i<*1vUt+ke4d#XiZ7?tst_ XL%@9RAp#+R00000NkvXXu0mjfx+mSo diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Class Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Class Library.png deleted file mode 100644 index 0425ce8be11cc59b2b21daeaa767c558aef8aecd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 459 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP~D-$E9wN701Z=jHDW=KSdbAE1aYF-JD%fR4Vl$uzQ znxasiS(2gP?&%wlqL<3fz`&^Q>Eak-ae8a8b=F}A5gEzQOS+d*E?GKx1Vtpoa4hH3WPLYu?O&Ld14kqO9%hCgqVCiG7c*zxduMLnqa_j}Z7^xkI!OkL z=TULe7mnVT`JnH<@@XT}-5<_HP4Hczz2gJJ^VtOt7iw@Z1UPz5YA9Z}ep_yIQcqy) z)sS#g-9xNTEB#iNx&TpWsBm)6l6Msr7e5vR&B;ovvJLJ3{^e)K+q&kB#s}Z!e$Vc` vwg1C}qp!Hcl{uWWPER_uX^8>{=l@>)nIRD+&iT2ysd*(pE(3#eQEFmI zYKlU6W=V#EyQgnJie4%^P<*DRi(`nz>8q0s`3@Nfu&8&KKM{T??AI;*z_w7Zj%kZS zvFS=r*{tWH*W1o*N^xLPRt&rK$!+^;>k}ahR|WGW@FlGMn-SqM<%&9=3-wf7^- zu{MFEq{Ffq9vmlcRWtiB&0RA$YF1>uy?$kV+5zJ%8TaSR91NFCM0w49o4AyNn84VSp-HK8Q=e-PFm_xRE@myrM z7A3ZMDaR+fB`+;I6%KxnW1OU-cz>$QE8E!nOa(FXHM*Fx-~OL}(poWFU8GbZ8()Nlj2>E@cM*00H|+L_t(I%cYYsXj4%X zhQFJHEN^*T5)}f;QZ0l`rM@Y(uL&5a1a(LWDp<(W+SM)zrEZ0GYEW@&OK994JfSv; z5vSNO*df!)nk;RHcLzIM2gxI^nj-kah5!Edo}YW}IY-RTKVTf$Y*uA5i=QIM_erVE>RrJVBwb41i@>)M_;Gku8Y%m0I+Qvq?F3oo>dp;m+IpDQW@K`N=oVNM{E7ny2nk^RHkVvDWwYV zp9qb}!w-wTgC|cP|8e)n{ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Application.png deleted file mode 100644 index 7b0a5d7d7a8a53243e95ac5b78654024df200e6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 324 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP~D-(kyi_0D^CZLdPW=KSdbAE1aYF-JD%fR4Vl$uzQ znxasiS(2gP?&%wlqL<1J6kp-#;uvCa`tAfnz9t6&*ZBs|Hx)!nePub#yMjaApe0Fq z{X(-XY*~+ex83K8(Dvn7;JD?Zy8X-JxMz|YXH-qphL&|rPG^{i#G`4dz)UFR}yxTQazC*X>u(nE^}r=I3sHSF-& zxqX#(k72FDDx*)I-=$iFN-}t@{1^24Ms)Vx;=BvjqSlwb`PrH$xZLCD5hsq>AkTQZ L`njxgN@xNAUCDNh diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Browser Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Browser Application.png deleted file mode 100644 index 87d89208bb95823a0d1fb8d4d8aaab9424904b2e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 625 zcmV-%0*?KOP)WFU8GbZ8()Nlj2>E@cM*00GrWL_t(I%cYaOPupM^ z#D7ksEMC&dQzV>$E>XtdETOWKEtSWhz*3|vCCvz`lvouVP>|@9uz2Gm!rd%oDRw$^ zA$as35Gs|$6Ce~1WpF2~M1`W3n_iusyZ0XHIbnJEHM6KxDp9$tk&ueRUJH-nZiSL)`s* z7=}@TXX4o_Bz@mUQ51^BBATW>ICy(|%klAm^|$L-Uo0%^1VvHseV^pn*_d{_O?R|| zhKAZJ&56G?zq9Z4c(>Z*;>QJ+brK(xi3`cAkv8@AbI6{27ZyQN(c^A^ER+ z&z>?sVsmqgrqX&+xTSqSmSr?ei+d24DVxnkySrUPQGC?ku{!?-`tRXtlh{#;00000 LNkvXXu0mjf0MZas diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Custom Control Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Custom Control Library.png deleted file mode 100644 index cc901051c27f73397c03d90e00ee031242f04b13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP~D-$D|)bsV_SwJD#%#er@=ltB<)VvZPmw~~#C^fMp zHASI3vm`^o-P1Q9MK6^dD1OD$#WBR<^wvom`I-y_+Uhq5pI^dLmKr#pA#J)}i({Bm zOf9de&^4*Y9ugllca^W5ta2dG2WXHphStVid&62HqR(P|f;cV%pcE{@q7h8xMo9=e7b}H0< zpchm0KFI60Sc`y#UC|MngTJ1X%e?!oo)z-oL9^+0)~t}pYo8f43oxx-`v0%}0+%v@ z&n!F7tl>|d$G~9m{P1amo}Qpn8Ea22o??_JA^FES|M~GuyTW=KSdbAE1aYF-JD%fR4Vl$uzQ znxasiS(2gP?&%wlqL<3fz`&^G>Eak-aeC?`!@On#k+%8(H9m)H&lv8l>RQ>H?ss6? zO7GC)-bWtjXat3bEz;WA!iId%RaOR5|YUt9FB8}AI+I8(9~n7-0__0N~!blC003B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00Cu5L_t(I%cYXPO9F8i z#y_4d4Q++4-I}*J6e5>U5DgBNih+7t-c zBwAqJHOTn`?~3$YzAx|deIK6pd0(5NoaoFDwoa#`SF6>jnk7l<6Zrl9sR&e6MPSC5 zGZNQ|>tBtvm)bZ%I(?4aE+7a)QJSXF>uIJ0yTP3yfhdZ6d^O3IGnDJ4!6&aMlk^_5 zIKPChn=eZM*o%dT7h*^b34n*gV&7$lM7$8A`T1@+iU4r`c1Oe=CEyB0yJ6;E=v~^caV}5 zj4@5O;PY((;PI^Kkw^$pTpob+`YX9yo=WA(W<~G=2L6Rd@QRvh00000NkvXXu0mjf DGd9tr diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Site.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Site.png deleted file mode 100644 index f29e94ebb428fb6035f9e23c172e749893b7625e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 744 zcmVP)WFU8GbZ8()Nlj2>E@cM*00K-&L_t(I%cYY)NE>k! z$3GWshTd|8LY4}-3}!G|y2M+m^}K8eSqc{%V|7U@R0nl1h+3in>(WeaDnZ*0J;+io z?QAj>D`s$zbI>7+|H>V-Df~Jm7{o&97alym@V@VTAMZ(ngU`5$SS%(CW0=0azBc~g z;DB=Z3$|@bH+iWk5C{ZBHamywx>%OQ-rioDfTn3AlSyP*W?^BGdc7{S1OkD8C=}kY zzP?VmT;^{`CXbacePzyKi4 z`wU|k%d*-!SE^N_(f-!h(P%%FYW3D6hB1ufd7g;J;{d2Z6P*;d|+iB}V?T-SA>>$>nfPx$yxv|0F9lu9K! z5{bmT>$;qto?@CQ78e$AJ&(!PQ>4?Qm}ZKhAsr-%<=hHL61CbPnx>&B3ewWj8xe~c z$g)f*6l$ppA!z*i4ZzO(9U?tF+?QphrX~T%<#O0|8Q<~oF}=OLd~kLc-%bNCzMUrj zb(wqqPCU=0TB&eYtF?-oCvDrdBsq>F_AkD%QqJA-IBm?*dFE$rZSBre?zq1GF+ckJ z1?NA{k${isPkcYy=kcQ_JbgGwKA)%2XrO5tnM{UoIL!3)O#3s1LLrgQuOQ3vog2UF ao&Nyi5*S(Xx-v2V00006LYY*dI{LtLZV@}$v+W32WX0|q(YIQv_WHDfz@jh+uk((opGgnsSPvAZGU^X~`)^gS;M9Gz&1TEp>jg!)*EE zop&39x)eABoEQ=$jy*5jTizG2-i&>2!^+H}iIZ&3GhT?QFAX?(;Csy_XRk>)j2m=T tm-hG_kZyYZJwADTuwMMN`}UU~R51y0`D|WXw$~cuT~Aj(mvv4FO#n#3gFK$#RWUFe%2mzno1a|- Oa-yfJpUXO@geCx(AXQ`l diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Service.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Service.png deleted file mode 100644 index e8af919baf29ead06705c759f3c538734fed0b2b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 269 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP~D-$ED4ztBZ1E7#>W=KSdbAE1aYF-JD%fR4Vl$uzQ znxasiS(2gP?&%wlqL<1J6fg92aSX9Iotz-?sX;LI!R_t&|2>TuX0t8VEOW`cH@&!{ zv9+$r*A z$~s!2U}sZ?et-WFU8GbZ8()Nlj2>E@cM*00R90lFWacoG2LWcwlDKshl1F~c)LZwiGw}Pi4L<2!3(6OcE8Zu?+A5ikK z>3^`vcy=$Dj^DG_#AA}I7s@m1gIR|45@|29Hub*IHXF_WLc&-Vv`Fm@L23SlpQ0pKhBJb2iW zg3QB7>~A08#k=Ro6|=|{vw<#(r(m`?8&EQv%}I%2J^D}0^#DHIA&JOzrUASor0kW&5a!yTYfsX$hekd-7LDUc-TehCbNz63na zgXej7P9V`MV2m+XmL=r84I*bwKLt9AbIxH|78qmqV?lW2x~>ZncWyzrxT>mRYEeqN zR0>bMkqL0lK?o7WeUwTiL4q*`+qSW{w-+Efk_D|6U-37is2_69K`902d~ErUIp+t1 zircmwuz(N((=-G57==XSUQjBPgblrxUP>t}%ewV+l?frMy+&f&HZ)BW!Q9x`h10p;<1WR45Z<(I@Tc|fR8R?DP$xVHhw?b2J6~&FI_r zFXCO(G}LM}XqpB>2+HL$3WdVJY>d1aMcs_X9YSewaVhq_z%SMr!rQ_>6AndSobU-G vQmK@9iNg8$?-kDZ!GASYr>7qrj!NV&Tj8T>c0VbZ00000NkvXXu0mjfCC`y0 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Console Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Console Application.png deleted file mode 100644 index 5dfe72bed877a5a3e0eae47b640e01401df6ed1d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 667 zcmV;M0%ZM(P)WFU8GbZ8()Nlj2>E@cM*00I9=L_t(o!|j*PYtvvD z$3HEey5SCy9lB;9nEt?xQ3lgwy$*KsGKU_dmOwCG$8&e^5r(l3O($@?VFC(rwRU*15#3i z9}o*`^UTUKv}!iZMw7A0F%CD5dM4dk*#^L}EPsXoU{;=?{k2WCZ1QQR&f&(9C)vfb zqZ>}6QmG7-*f0$0^*R72-@em1>3I4tmS5e?dLY7n&VmWyX5Vu6tH8AZ(&;n+t(wjF zn)G*zcqDzLaHv%hZ+7XV;d6uV#THmPt+ zV6Xa-zz8640N?%#{#DMFEbt19^c$WDqMJ8VXutpf002ovPDHLkV1ldq BDpmjh diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Empty Project.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Empty Project.png deleted file mode 100644 index b7297967fdc90ac7b9505b231e7b015f123abdde..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 732 zcmV<20wev2P)WFU8GbZ8()Nlj2>E@cM*00KZsL_t(o!|j((YZE~j z#-E)=3n_LFo2DcU!OKd7?jZ>j3i~nYQ9_)L&_k|zT(D%-kJBE8DPOC#JO0hRI*2-(M)sm`3)Q# zycI}X;<7Be;zYc9*?#|QJU1?JA`)!vRzX`e)Y*N|R?QuE>fSzg3uIZg-?_R$5m5vPtgGVmFa5#(vk;~=K>2z?U ze?a!m8aD3cQ79F#x^`DJsf~i z3dUGu2+ld$?Y4U$0iawiqf)6LlgUg4aHBv~)$t)=44iXlnucFLMi7MP+4|GT7qniy z0suT^PeSLUyp15lc*62r5LekmB2rZqlv20-+x`jLw*NhVHxDEULA)7l5fH?CiWdPv zf}xZ&gbUz^Bn?5rM3RIc!4MRL8;L?pCZhsU>b8|-k O0000WFU8GbZ8()Nlj2>E@cM*00eePL_t(o!@XDEOCwhl z{$}Dh@us?QNBdwBpK79u7B@;E64-(?^bgpVylfLw3dN_Q)Q3`8TDFwxQn1ja3uD}c zZC?7)-EJuedpYBZkQW4 z-bOpnG!3Ov39nwMjH;?e?KsP_;5ZJ)$H&lhy{$EehFnb7S(8eo5)Kabqnf6zx0+`d z22@o&b?6EUx&Q%lz%gf6s92YSC z{&h?Q#_5=N^8o-L_QQJ+Z$6+`6J5<%7mJ0mVHhBUARG=O7z{RLvbD7ZS(fqE!W1R~ z56G(`f*}L|`0;e;p#Zx@nQW znt4kFOy&R(4u=s6g)D}4q#bNa5@u!s$mjA{{pxD~0B=8C=B2z}7yDKUur)DnXk3+wYbwsF!u@KHr0DYzXgu{tl$P1drE)Uq1b{sd4Ins;W>`)gXi*7K>So zfBVgM^qDw%;P$wY$z-e)85GQA-|C8zV-UN^gfYDAel^}x3`aBMn*=; zm3Rmk92{&Y-_p_&I*D{TjkUEk@I22_2U>w+?Erwqk3WLf=fwxH4;#+AFW$4%hiVKA zUd0z*-l4^AetzD%4b3E}Ml>3&G#Xt406hBs5eOmlnYD3kvwrdSKbCMctc2Cf?u++M z8xy0SWdHWbwmaGX;4U4GGuv@1WjcYb+88!MGi5pf7XK3l2CrH=ZrdSfg+^+4ecm%w z%H?vEF3R(4*F_Co2H9*D0MOmdmoKG2b#C~^-oV1*0v6524=8XKXgx`6^+%?`LKL zbw_+r6p>1$sByd9-n6h$#*uQPsW1!~#mayewPS-RECYUgzJm#byB zoM+oPkX!^D$IbQj_Qe~qK36+F4|twuySw?a-EIfRwRcwd4WFU8GbZ8()Nlj2>E@cM*00JIKL_t(o!|j$mXcJ)= z$A1??#J9z!L^~vqS+O0GLbY&kSqj};TpUU`4g{Ahot-*`w1Yzsgd>QP5O9@-ZkY-l zB}YLJN^TG&*AHGIn#4gaUed&Tz3P%@x#QmFdH=tA?zxx0W*8Y%g_M%Z%ZpB{)fy{5 z9#0TbCGL3*Jg?Cek0c@^Yh1Uk2B6t&BBktvmO^aou49$6?7V!6RnB&E{QKZD0L?Hm zxNg0p0%T)%owdzX>NS_M(=!%U7C1gQxh4u=KY0V7?h^p4ZLV_l<%+}oBR;-$I6gS( z5$nGKgo7KDN~NiU^Z7iE;{b5}^@8?!yJx+>{Z={qcRB#D6uUjN-Ge%y1R#}40Z^~G zEUqlFy|=}KoqKHWZ4HG`3ZUycu~>}5{Uho%m&E-zj~+kdZt~8kb3hBL01!fu%jL-D z^L%(w8JH8CFVi#!58*74OeQH53REf;9LGUQi4cNRDn&Y-9$GgL;FHvIKGj9Cod?Ur_rVehIWB>pF07*qoM6N<$g4Q7+p#T5? diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Browser Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Browser Application.png deleted file mode 100644 index 4ed8dd8bd52093cb70d223b6fd6c3d00f3abfafd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1415 zcmV;21$g?2P)WFU8GbZ8()Nlj2>E@cM*00iqvL_t(o!^M|hNLyzZ z#(yW~c;a!osI?dV>D89RVxguoPy!a#${1UBQ-$1g+Kj;{6h_M&D|Ka~W30-cgN+SR zZEpk}wduwf>AWl3l|}|#s~fv8>c!U6q*Xt2JSN%2c8)no{L@;x2f{fg-+SKYeV_09 z-tRq9N5^4y0>dy!rBbY|>7%-?cjb>e91dhzW_^8~bUM8wpLKQhIJYwrLa?&3{J=1b zs;%rYnGCwF^Eg;sT-ZE-bUIBknXs}|Rh2*>fY0Z{>-D0lsx8R={(chc30mK3;Xqrn zH5NX86@bvUZxTL!)w-G}8bB(QBAHBNGnovksuBza2?PS0W^()XZ8S~er89>((ALbt z-9_TFamx3WTjcpyGYDrf$&<-M7QpZK6AFcF*%m`A76afwTQkdlEfXD>AoDO|Q(;F6 zn3)3vgF!kwJ8eYs@pYTJV8Y?_6;i_|yO@yf?XiO( z)$%eL8XK6Np0=kbl_0TBbYOzcvoBNMR7ZVN-A?L&TjhaTVnlWNoN24jk*vB1W;8KUDvw|!$9);53#iLDBIcDNiY~> zx6m{V?Y>s$MC%c>f&t|9(*L;@S7!#pCtxcIcg=j=u?iWvdUl*i&20C!byg+mzT<3dgtDibiuFqU9skym%RM+*c z)2C0<($exwWRJyST)uo6MN!5arKL(Yz~toQGn@B&_wE5uTB>wAT`m_(OOJ@fVhACu zH840Z$jse8Y%jj{#;Y7V_IlAVZ_^8$IeUhiH^1Zi$PY!wayuvhm&=7ymSq%0852Tu zojP@D%gD#auQNV=ed8#V6eLO7@|;l1%joItv5^ZQkYza`%ksaAP?DrSpG3;_tWGwY z1z_L4MgZb-3pSgclP9dwEQDZWWCVcn^5?1noXKS3NGg@;1FT*k91dH@XFhs+du?{> zSsf<|9*>9l_`G$3s^w+$oIJt7g9kS{qi`4@1d5`JnN#f$LfkURx9WWJ5eNjVKuXI> zP*s&*e*VRp^Yb5`vyn$45vHc5a5x;e-BsPTj>sf8n}zLQ+L!^G&-INB^j|nfLt}%@ zJ`#y=WFU8GbZ8()Nlj2>E@cM*00KryL_t(o!|hkUYui8= zeRo#s_5w|cO9z{HbZtncKp-GUp>gRS&^-u2Ab2VX)l@umGEOIB3I$;@dC4D8P~RK@0EDF3?#g@4*ff3t1X$Z##r2PCXon{-FHBD` z`FO{3wIQTk-;1A@p5Q_9yGf+#0RULaJr0%Ie+?{wzrJork`!z{N?}+A#seLNN*=F2 zR53aoVWqT!FYkMy!9zXZuCI;H>ZkCuNd^SJp&g#!)xk>?DtQzt`CHY><(`tnCOmle z*7M)AOte}pCu2Vr=tCzFTghxTn|v3Po|mTPn$0F^wHg4RTrT5ma0W^#tQl5I)r5>O zXRIg+XlCK2JcQg2fkdb0za|jqftikvfhfDL2f|*t{xys-D2jq&v3Pd{ zCX@5+BrSNO(ZFyxyqf}($@wH^DUg<%gR+gRKu|`r;8)Du zh{QG_W30+K??sW`4R^UX=TqA^%64`>&D=ZTKH+>FFE2m&3ZNR71Y@lF_uj<#16$Sj U%}htLU;qFB07*qoM6N<$f}oQ*i2wiq diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF User Control Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF User Control Library.png deleted file mode 100644 index 41d3b2438a67c1108ac51bf845d0dbf6593b9464..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 918 zcmV;H18Mw;P)WFU8GbZ8()Nlj2>E@cM*00R0+L_t(o!_8K~OWRNw z|0S!fea%`~P-caq?6NUEv}|rdp?IixTMu5xDB0PYgWhB-~qExcM|lO0^THYVw7>oz|KFMRL4{C@BEzVFM&<#G$?#V9pUuN!uwQSb0a zB2k3H!=Ushn#~KQZzYpcT!fE_EB%K*>;O~du|bx;5H z_BK>i^_-I=3E6DcbFNq{_7{X+MMsjPp1=cZO}~||okYLj%>95L39t8mMqp6jo0kPA zCr6JdHFmm1ZF||3WjXNwz^s59oUJ{-EW4FTWiSQW!JWufRn@l+6pO`WFU8GbZ8()Nlj2>E@cM*00j0)L_t(o!^M|fXq#me z$A52+YwI?lX^X6jOXm zh8WOJ4$#`#N^`UEf=-2|m<)wzY;0g+e1fizJ_f*MUvV=Z{@Vb)9s?$0&hvwZ!(qC+ zy7}P!vrLDk02mw`)b-KDmCLu)^>_|L8rbR;z`S$kZUE-y?q*V{B(=4*w6(SA2BV{+ z^nCIef6m+m;N@4^u&5UL0^jO3iUMiUY_Hx%$xavBtG8h*w^H{~4Yz)|vz(^yel@Iy z6iB&1JRU^|f#2^pfPen!m-=^6I))+yTJkWGKg3eO)~_e!Iby_kPX`*4x{wznDNEfX(Juz5~f* zf@CtGzjICcdi#)z#=`Qn+YP|)6B9WA(P)%&=gv`ITaP(o)<3GEvUl%FUGVvQ2qB2a zqa>3FEU}o}r75zdrKN?I79)tO#09{SBS(-@8gxPkgb*BUJ4#b?Q$gx|J|DqgkXTIa zvLq6*+W=m#*I?xKxYu-0UQxcL&gF99a=8iy;PrY527@FLvD+4{)OtJ~-QbWo}M0T zHiu%eTJ5_5hK7b7S>DIS#sIKd?O5z~ap(U1Ienobl#-5)j)IX73|wGf;KFhnRct7VvTmOc zMGo3K+6~}RN>tU_q^ed-k;v@zjgHaTlFG!%WHS2q%E}4=LX*=5yY}P9^wKP)q`$u( zfTE(UR{<wm9aI!KXg_|8{rmT?Oh$nK zQc7$#ha$vdD+9@T;M!)blWDeE5C`fGAcWxZrOSHG+dJ9~O(_@*GCVwt$z&RGI!jib zVP|J&rqIY;NVH&u5S%`JnyIO2Dk~~-x@9mJ)Tu8n-mci~qVWHMhn2?0hMdY72m}}& z9tObaEH!`wShA@tl!DdM^6Jx9R#xV))8F5Zl=5HNOY2vI>kO=w-}NqGHn^0M@$qrS z#>Vug24J%}6sNNUvpGN6%D#Oy*R_|hnWC!JrY&2ZxSH?O1_qqY(t2Q1g0R^fiq&ez gZWpMkbwhjp0dh_}Kb0$2GXMYp07*qoM6N<$f*GK=Q~&?~ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Application.png deleted file mode 100644 index d8271685549f05d3925cc330ff66fd06d689b348..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 562 zcmV-20?qx2P)WFU8GbZ8()Nlj2>E@cM*00EXsL_t(o!|j(lXu?nw zhW~_4Ds>2Th~Oqvs)&lVf~(-xrK?B?6uP)LcXA5qTquZ?PK7|%Vi4*oI2MDUP>^I0 zN`2v`b|?ux5^42R)_DxPJ%Xf|J|BND~K z;qYQG_%g0(H;wslzBNbF)Sp-q0MqFdw3|kv5Cbpfz*V#0#hme6KVQCQjKJ^rFGxTn z3NeI|L8u)Ky>1Uqj}xs*+q7u)>Hz?tC<;ZB@<1pV#H2q#z1+atql{Liy;5xbsLSv` ztybHqupkJKWf=f4{2Xn}e!cy?m|KCMNiHcjb8Ojes}Af95Q#(p0BT2r%i}_(n8sQ5 z6q#b$5`ri|DwP7mFsPRsP&*pD0TvgR=kNyDt$B)~P%9qTRSt&(`FtLNAmHUzGL2dG z7sqktCfr9ppAV%{36dlkhSbLsjYhZTZU9{KH^fZ&-u;01^b7#Fuilx)5M2ek$Of)&>O*nh!arGJtgyaTqr0d(|)a`MmQ?EnA(07*qoM6N<$g3!O` A9{>OV diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Control Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Control Library.png deleted file mode 100644 index f1fee1f2aeb3e88a39bd3cb63ceef33713f007b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 703 zcmV;w0zmzVP)03B&m zSad^gZEa<4bN~PV002XBWnpw>WFU8GbZ8()Nlj2>E@cM*00JXPL_t(o!|j*9YZGA@ z$3J&HDW=5?2Sri{IHV@n4oRV=5b0Fu=Hgny5fEImbjZ}jPG?da1tA1+Dg?SpL;rz7 zN68rwB_)Sgf~gHhK`(L8T$&$u*7$}X^t;@{d(Znm-}^q_d*3^0ZS5hVU|CJh&%d^9 z`^S~?1A#lpqKY>fr_UOVQ>VD>|MSwO`B4mkiwg_OYHrJZnU$?&QpF@%ev?!&>Ev|c z%VPjiJpO=s{c~Fck(I4wmR1+3l}%16C(O*vaI||oP!u5l`1LQP5QwGKMVeol9OMpp z_r~C8_qeB6{}n*#1mSR)OeQl@VO`fT3Jxl>1 z1ftO>0JXBo?A$CHJL}xr470Jb?n*)^fkYyKs;V614ylz*<|6^(kM1)c33$#^)!ULH zf`HHGBb`p8>pE|@OG9%Cg@O}nng+o1^i32|y$=S1WV2aHrIKUFPJ3dpnCrX&0+sg_ za?f7~Gv$ZMCyIOf0KCe-93;@$gsRmlx~^kc7A^a`lVD2{H)MrzLFpbOR#!Tyn=sX$ zVw_OCHX%*Zuq7Mp!HJ@j=~>}P>Zuc7?w2hMG7zPV=OcJ2BisXSF7;AI1Y{(0>efobNU+T!DqV3qu!o8#fF?$d>&7D)9T~QuWFU8GbZ8()Nlj2>E@cM*00Fm2L_t(o!|hhjOTu6n zem1-bc?dcvdNZ6UG6g~K7DazR*ANkc&IX>m)JfEH5Qszv2?kwb!+${V7!5}dN*#g@ z#@NB7cG{TEADewOte(sEetW<7efPZYo_)Yy2SqwyD8!71!w*Zok|a^Y3W&wnGewb$ znoWCXjQXRc`)E=HD2iO9Jv5T}1ae#k+1e3uTt@`5t_XSDyj@wjXyzVPSli zU5aNRolb-2dGM7c_D^@=W4!P&UTZ>RwSYwo06@3fMX6MRq9~U3XS3PKA)J>$b6kc% zAb@hY3_%beilV;GvMl29`1}^wrTaK{V$1)r^91hZR<|!}7qbhn`lh7eGXG3M6Sk4g zZz({MB+B@?6$*uwW?)s&a2O^X_~}`2o&i!iu>K4dq1Id?_a2ckxeC=Cc h`9$<H*BMznV3%WE^% z<7s2wyeDPj!Mxq>>+c`^_&Z|r$A|GAV$#NkE_W=F%w8LreKyb}`Hy)WmdKI;Vst02)86TmS$7 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Console Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Console Application.png deleted file mode 100644 index 8bbc1ea344fa92202dccb06a9d9447494e52e933..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP~D>H+M+MIJi=YT@8nIRD+&iT2ysd*(pE(3#eQEFmI zYKlU6W=V#EyQgnJie4%^P`t;}#WBRy{GIdaFbA|&IFn)@$kTpx3{7OrZLgFRjST-G@yGywoi#b)~e diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Silverlight Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Silverlight Library.png deleted file mode 100644 index 4c1bd97e9410d19d20da751ee01422fc13dd8310..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 670 zcmV;P0%84$P)WFU8GbZ8()Nlj2>E@cM*00II@L_t(I%Y~CcXwp#} z$3OpJ^cN9_m)JT?OzM;!wzfl~za8X1hXXe|?GU^C_eUavGC~MqL5E^7gE~|o9VVk- zYAAC94|WsR4z4az2!nF-^2cF+wUb>^(CPY~e($~S`@HXaKb{~-E_#(tZ?)(nk7ris zofGQydSA2G>+Kq+QmKA645yi6n{faZ{PP2$hW4P>+*=Rw8M^Kx2q=mIz=JyvIcqsX zCX*qT%P~kDKze(Nks%xV?+(bWJORLH7MYy8%C)=G15+6Qo;`g|_VpKjQb1NEtfRx6 zzjzLg8kTc9OGlis?@b;9UVqAi)iI4`D6jR-A<`gItj=p3(Tkz zk$WF#{QiS=#KMIM8;R8&8nq?><>C>Fq7Vv&x&TA%V*AZ!jAjwX_!vgB$j0MOG-^$J zL7B<9EBx3yK-YC*oAFL3x&Q#$;W4r*bx!pKWp1PDRCO7r(+R-(dX#81D)1lu1sht+MMsZI2mk;807*qoM6N<$ Eg5qQt1ONa4 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Tutorial.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Tutorial.png deleted file mode 100644 index 23841055e2d838d7af6785b996d8d6d9e1184c9a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 419 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP~D>H+sR!_425}=T5W=KSdbAE1aYF-JD%fR4Vl$uzQ znxasiS(2gP?&%wlqL<3fz`)4v>Eak-aXR_Wx3{4&#JRPfqeg ztG!FK*zras=8)Z~IS1EYnELSi{QWJwJ9c~%JA5!zT~ew{+^FDFfkDmxPt6MtZk^u< z1P9gcv#$4^At530z^oW3Hzj(TF-XmUBQs}6cJ?1DI$hS*cDI%1{{BA=-G)X6LgF0; zAO2j^Zku`2`{AGeJpVbR6Xa9*zPC-9DC6ZIXIa#;aP?~L<%~TW&TLtjuI{G8GG&MG zbcsWUlK#EFyZitD?fLf~RJ_0U_y1v_i17s}1_p;$sj=t2HNOLem8Ywp%Q~loCIE;k Bt9$?e diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Class Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Class Library.png deleted file mode 100644 index 8deda6508a822933969975fb0eedbbc75ca7b888..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 665 zcmV;K0%rY*P)WFU8GbZ8()Nlj2>E@cM*00I3;L_t(o!@XC{O5{Ko ztPCTreHxux2J$2U_v{;ZY#Ibl9>an#3WD^}lZ#7FU_pEXpCC^X(3?7^_OOR|*{{h@ z_oPjF=7XUpzg1mT{gdeU_$S8J>+4H3ymndO z0(WM>=I?{L53WocFQUOAtP>(-+P&MG{IEV(S8^vA*i=CXK3NJ*U@Hn#RfVdm zwobqr!pr3^NGSmTS(YJ5lF>o+R-i0PNGYMUhSnNVN|a@}I|~S02mv9))=6|MAn-Iz z%{ir%v4m6tFxZ+7f%W?1h)%S@>AzB{q0-oV7z@_xk0Y)1n+@DmA@ecm122lA(R;c# zR6cswf;3GxszUh~YR7~zHm4UAMbYRv=iDqDob$%@V549*JA4N)*IK{TrEbgavW77> zDvVPAn9UB~wbs4BHiDm@|8R4CYn}Og_7$BBFviSWU?ZcHG9gq-;oxA;sesQ^+#!%< z8LqBw@Hc<-+Nvp~uv{)NjrQ?p^?SSmNs?f-dT8u)sC5lh%0ZCD$hSg;FrtrB-|qq; zgx4t9+NLxFur&j5yoma4uCE)6vHAZwWK?|tT6`)M8u}A{00000NkvXXu0mjfcitbl diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Console Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Console Application.png deleted file mode 100644 index 1bd8c449a7de03e0b4342e219eefc97268fc0444..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 450 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_d#0*}aI z1_o|n5N2eUHAey{$X?><>&kwgm6<`0wXfx7I#5V9GbEzKIX^cyHLnE7WngeFN=+}9ba4!cIGmgyk#N9cCF819tNx$7sII#7M8Ss#dTz@a zKmFXC{#{Z62qIRbKKS$}S0ZVm@ZJYSAi~5bLD8JUvsA*U_YKD?cgH6#`W9|{tR+(O zI1&{N>i^Yj((&=}IU>#aW6`s3Z*On$Z)tIAXbls4RLo)|u_348_qSZPRc#Er-WM#@ zjF@#$k~Q<>%#cEXU6z}l`5j-ycbIX9$R#eG2q_5@z63>8y@`vLE3EHO)KQvp@YJbE zWqcmq=Z<&?8yGq(*S0-A-WT|WVbWrTXA0@*>20&Gzc<)Z`+M3xz6RIMo;5tpJ$p0*`uth#3N3@9i)UHx3vIVCg!0B`H7rT_o{ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Silverlight Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Silverlight Library.png deleted file mode 100644 index dc3823ad18787ab1d7e10a80c4cf9c92d4e495cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 900 zcmV-~1AF|5P)WFU8GbZ8()Nlj2>E@cM*00QVqL_t(o!_8McXxl&( z{_MD@8$UJQPZdN3BYrB`6&-NTYLP zyR9H-Iz%QVN#zj7N{3d5?b?ZB*=`?*` zbKm0tJS673&ws6H+e>^;+g{>hBqIT+)oNYym6esDfOU=$h>;n1qrV-v*J)uie~^K3 z`nS^+k9y`j z@@e05olH(82JVxw0I1b!{23;e#tz`0GZ05o4+U5p8Rnkh(GrjRs%KX0y`) zu)e`N#~nM5M`J0ACs=cBt~Ny;R`FvP`0qkMfGybr?=05CiI4D<7^63OIb aT8Cc`vuZ0*9$iZS0000WFU8GbZ8()Nlj2>E@cM*00M+bL_t(o!|j)`Yui8+ z#(yWtxKS4;!WkS0G($WF)HUEhGr4K1)nh0WI)suC;w^iYluU(!Na>=Ic2LujzaXTW z|AZC-@z9`bIb+OO9b5^!iA591b%#C>2dAg|K7IG;-IJ(PmPi}T=6QIR=Srm+G{zXs z<~c@|3wke)ug%r=tMR?sel;GWFw#hPTVnlVL}DacP}{G@SHB9sj{u@lS&9`nI5@Zy z;M&?+;ua)r&0jHLk^;sk0h35XG1kwpRGJaSDBpaTry|dcU4fwe6gtrp2?_xO`_ z-ng%?<&0f{{{;R$6G|x|R4AbkN&pb*A$q8T&__$)x#j-4FwHmf``~T0H{yCsh(H1J39nHkclU> zR!eRGIF1v)`CIoL@~Xww_6A$q8_25`hu%kmAiy+D9LMQB9jf#SwA<}H0Nb|X$(5(Q zLuI}^Kagx$7E!M2x+tO0(X;VD|GuxTJ^|q9=rdnF9S@M|&lO6L5*))Ti2jb1Qe0jJ-#VSngT(eLm-{|7WzA&)KF|;7x=yh;Jy$49ipZG#kUh0-zogFSu#3dO@pXh97cz)byz1kxS-t7zxYM1uO<~p-1NO~s8@T27T zR=u?wcd*R6wpC+3Qxwm2*^U#dxwn;^*}b0YiQm>Yvn-<5=^wM360xBs-S+|0zIYSn Ti#c!YL2mSP^>bP0l+XkKsfl0* diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/WPF Toolbox Control.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/WPF Toolbox Control.png deleted file mode 100644 index 494ac24ff7976de1ba901a4755f50e6322f45444..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 348 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP~D-)xfRO*)Z#y}z2%#er@=ltB<)VvZPmw~~#C^fMp zHASI3vm`^o-P1Q9MK6^dD1N}x#WBR<^w!{myoVKdYy{S)aqBznTlvZ7`U6ilhr~|3 z##y;Kr5$@Nhc9hAQo4H8w2Fdl?{kuSzUyYqetw(l;I4N$aqs=O-u$j>pBhv)!y`al zMv$rDH-vI><=EwVY%$!kiBe*={(dTWKg_N1P zqw~dDgBo4A&c67&=Y+#r_WtKNu{mos`5GRbVfow~>ZGJ3rn&A3hvg~(O`k7<>&kwgm5EVYQn#M<08mIaGbEzKIX^cyHLnE7WngeFN=+ADP2zR9adEHoj`h(^J^0vwVx5{B;;(pIN; pfOW}|C6etf90r$GmD{8^F)%bP)UbJOw(keX<({s7F6*2UngA58Xc_<>&kwgm5EVa_R(qYi$EdS%#er@=ltB<)VvZPmw~~#C^fMp zHASI3vm`^o-P1Q9MK6_|fq_xf)5S3);_%yWYrZB2fm(^xD>qzixipPCXHlz6O998Z z1BzxcF5Z5Lo{QFoT+Z6+Cd_Q?qo}fH+RVB4XK&9bv5-+b__wY)iDldE*el;_TkVtA zmacdml`{SL&J%fcvJ$HTZY?}nqQDhxFzsoWPe1c5$tcS&-}!Vn*O(YjUN!qz-NnYA zFC1np|7Ip*m2bCwVVL65Z`}gE{memIm6fKXcB**3k$ti2xaaE=XI8A@%DsJSih=KC zVdMFX3pBVG8otZz{`Kqf!)fpLzd0lGgXi5GVQZ`B_c~`-3N)GfDzDPI(bBT_d$az6 z%>0AvyM8Tr8<>&kwgm5EWFTTK3615ijdGbEzKIX^cyHLnE7WngeFN=+s{e@#<%$uRs1n)9c@+w%;fL``NGrH&t;ucLK6Uc CS#gp8 diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/UniversalEditor.Extensions.SoftwareDeveloper.csproj b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/UniversalEditor.Extensions.SoftwareDeveloper.csproj deleted file mode 100644 index fc42ec44..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/UniversalEditor.Extensions.SoftwareDeveloper.csproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - Debug - AnyCPU - {8A0618F6-4FE6-4BA2-81DE-87C222235FBE} - Library - Properties - UniversalEditor.Extensions.SoftwareDeveloper - UniversalEditor.Extensions.SoftwareDeveloper - v4.0 - 512 - - true - ..\..\..\..\MichaelBecker.snk - 4.0.2019.12 - - - true - full - false - ..\..\Output\Debug\Extensions - DEBUG;TRACE - prompt - 4 - false - - - pdbonly - true - ..\..\Output\Release\Extensions - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Extensions/UniversalEditor.Extensions.Sony/Templates/Project/SCE.PSM.BasicProject.uetx b/Extensions/UniversalEditor.Extensions.Sony/Templates/Project/SCE.PSM.BasicProject.uetx deleted file mode 100644 index d96c71b3287f4407712ce6fad34986755c2e309f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3686 zcmbVO2{_bi7auXqSSMR35?QlMLO0T7WH)0lC}f&6AN=+e3mT@F@U1&gcE}B!6TFL0>A?I;9~+1E}ju?2xR4fT|t3CV36?KRTK*@2tn7fuz|6Gr?;e$1coA5OQ0R=;`8YJB1)gXQ5gFrTN1ZlG>Hi&eX=t_6S zL^sytBhQf}blBK=*CxL>*BV)hu6CtShwh0U;jpN{k-3HRutnu@|CWUE*b5Ufv5gO^ z3AS)nK7!ZzA}kkP-=p(RP11eG5ZLg6(y_<27zwz){n;(l60Jp)A!kUU=a8n3A*{) zd%{nB6jkyOE|6-p@5~lUtX;UCpnfTF`_xuiH0F|gx*=5Q?pxDAgs(Rq(ecRt)2(?Y z*)VU*(M5cVC9fE+e4m8q3~62`Mi3FzPq}*gHN$#F!^tKqi#rorujm(FP>I0T_>)`P z3DqHTS=Salp2HK$du3=Y^uR|_LTPDUd8bk3-bCBWh59zSOUU1p z3G1w@>z`!YdZ1!zuF<`B)7qrZ@TW|_>bs5}gBSb5#%Fcb=T)Z3)5*e}rL~f+WP<== zCQfl@WCBeo+$xJc@#O=dj-Ez5P4e~sbk$j+At=Sr&TpEvmZ#&jd_hq}2r=CSb$xqu zc*)!MPQa8?W-`BOzlAT%W&WD-b zUczAZpOK4%-n)MTPi{dgRKJpza$l6{HeVvKI%o1m(8jLyx%dkb677fANXOr0Q6$BB zVb%@1aaj)q^pOFIOL8Y#hw7J~)NJ~zC`+a)WbC;WN;mARlU<-w3mn)Ibd<}LrHWktU@}iPui0)H_roR`+h7dED6w3FsI+L4R)(Jj-~^C zMsQ^Nh&SONG3dy*7G@EgjK@U%R6tkn4rdGV1JGoCg68PsPxd2f9rE=0-p#-}&Cqy2zh6jdlSgdMCn{AtR zYfRB3TEj}S)wZ2l_;hHvn725J>}Ri3dc5lJ@v4dA^+0z zc1O!Zk!I~qjh1$%Beu)|_DN($aAIn<=Np4lMQs2#Ra4aloJ&qtb|yYuzzI(%K;+@m z&xvMcyUJnH^Px^xTH2h14k}0=yq@BgbD28CD~mhJpVP~5r!(AF==nn0!;S(3KoYC; ztZ1uka{%~7U^Ow{=ZX(NcG>HPOz2^3gdfTy_W2ITHjhDTwxMrrNq)=KjO33M=DBK4 z(pC^_AC@B=xnvLE4)v<#pG z1OfK`L<->`fkOCBUl*Y72rO{_fj$xY00W4bk;v(j@eiqD@Y+l2e_h#>bWYhR{FD_# zPXk@hz&$^EMb<1MBrGC=$-Mn?NigXIp;iA&tjj?5wkZRtQ9Ge~T@&wPNPP>2X20#` zi%x8e7fMzOFHr70^ZH$ZZQYFJnp|_#>x7c94e|*`N!Q-LeUnH_SrVjo3yq&Xph;wG zRzVq9T~;#K(B+t!QMg&VYQ3I3l`FF7x$0%#@}aWVCbx5BZ}_UtF}2k%Agn!V?sy$E zeBx!BoE^-v>`x){2ON5b;Aw0Oe;J#OJBBP%&PoCHlD8^7$ zt1>{h3_qZKfr8Rfrp!l(EnOXq*&gZ)puw@Y3f6xL>U{F^$O9a#vwk=aH!Xf{c%3y7vK;j?} OIPf9>O?sRk{PZ88F - - - - Debug - AnyCPU - {D28CBD31-EE2D-47DE-9305-3FD5AFB43FB2} - Library - Properties - UniversalEditor.Extensions.Sony - UniversalEditor.Extensions.Sony - v4.0 - 512 - - true - ..\..\..\..\Production.snk - 4.0.2019.12 - - - true - full - false - ..\..\Output\Debug\Extensions - DEBUG;TRACE - prompt - 4 - false - - - pdbonly - true - ..\..\Output\Release\Extensions - TRACE - prompt - 4 - - - - - - - - - - - diff --git a/UniversalEditor.sln b/UniversalEditor.sln index fdbb3753..615efe89 100644 --- a/UniversalEditor.sln +++ b/UniversalEditor.sln @@ -181,22 +181,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Doc EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Setup.UserInterface", "Plugins.UserInterface\UniversalEditor.Plugins.Setup.UserInterface\UniversalEditor.Plugins.Setup.UserInterface.csproj", "{047F47EF-2A68-45A6-9F81-4EB499D9FB06}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Extensions", "Extensions", "{5E4765D1-3959-4433-8E9C-992E26D7BE62}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Extensions.SoftwareDeveloper", "Extensions\UniversalEditor.Extensions.SoftwareDeveloper\UniversalEditor.Extensions.SoftwareDeveloper.csproj", "{8A0618F6-4FE6-4BA2-81DE-87C222235FBE}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.MSBuild.Tasks", "Libraries\UniversalEditor.MSBuild.Tasks\UniversalEditor.MSBuild.Tasks.csproj", "{676D52A3-F285-4F58-B7A8-7BF415E3F733}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Compiler", "Applications\UniversalEditor.Compiler\UniversalEditor.Compiler.csproj", "{5E639F63-97B0-4B34-8928-29A5A3C661F4}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Scientific.UserInterface", "Plugins.UserInterface\UniversalEditor.Plugins.Scientific.UserInterface\UniversalEditor.Plugins.Scientific.UserInterface.csproj", "{5F7935DF-55DF-44AC-8B0F-A395658AD7E0}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Scientific", "Plugins\UniversalEditor.Plugins.Scientific\UniversalEditor.Plugins.Scientific.csproj", "{B9E4DD2F-A059-476F-823A-1AA8C1970663}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Extensions.Scientific", "Extensions\UniversalEditor.Extensions.Scientific\UniversalEditor.Extensions.Scientific.csproj", "{D46D9232-F585-4552-B3CA-6B0F284B746A}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Extensions.Abomination", "Extensions\UniversalEditor.Extensions.Abomination\UniversalEditor.Extensions.Abomination.csproj", "{D1FB19C4-025E-4D4A-8532-4196AFCC8813}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Content", "Content", "{63E2F10F-27A6-4BAA-BF4A-4422D0934E91}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MBS.Framework.UserInterface.Content.PlatformIndependent", "..\MBS.Framework.UserInterface\Content\MBS.Framework.UserInterface.Content.PlatformIndependent\MBS.Framework.UserInterface.Content.PlatformIndependent.csproj", "{FAE48F29-DB35-4CD6-8A55-6C1FDDFBE6AF}" @@ -561,18 +551,10 @@ Global {047F47EF-2A68-45A6-9F81-4EB499D9FB06}.Debug|Any CPU.Build.0 = Debug|Any CPU {047F47EF-2A68-45A6-9F81-4EB499D9FB06}.Release|Any CPU.ActiveCfg = Release|Any CPU {047F47EF-2A68-45A6-9F81-4EB499D9FB06}.Release|Any CPU.Build.0 = Release|Any CPU - {8A0618F6-4FE6-4BA2-81DE-87C222235FBE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8A0618F6-4FE6-4BA2-81DE-87C222235FBE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8A0618F6-4FE6-4BA2-81DE-87C222235FBE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8A0618F6-4FE6-4BA2-81DE-87C222235FBE}.Release|Any CPU.Build.0 = Release|Any CPU {676D52A3-F285-4F58-B7A8-7BF415E3F733}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {676D52A3-F285-4F58-B7A8-7BF415E3F733}.Debug|Any CPU.Build.0 = Debug|Any CPU {676D52A3-F285-4F58-B7A8-7BF415E3F733}.Release|Any CPU.ActiveCfg = Release|Any CPU {676D52A3-F285-4F58-B7A8-7BF415E3F733}.Release|Any CPU.Build.0 = Release|Any CPU - {5E639F63-97B0-4B34-8928-29A5A3C661F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5E639F63-97B0-4B34-8928-29A5A3C661F4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5E639F63-97B0-4B34-8928-29A5A3C661F4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5E639F63-97B0-4B34-8928-29A5A3C661F4}.Release|Any CPU.Build.0 = Release|Any CPU {5F7935DF-55DF-44AC-8B0F-A395658AD7E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {5F7935DF-55DF-44AC-8B0F-A395658AD7E0}.Debug|Any CPU.Build.0 = Debug|Any CPU {5F7935DF-55DF-44AC-8B0F-A395658AD7E0}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -581,14 +563,6 @@ Global {B9E4DD2F-A059-476F-823A-1AA8C1970663}.Debug|Any CPU.Build.0 = Debug|Any CPU {B9E4DD2F-A059-476F-823A-1AA8C1970663}.Release|Any CPU.ActiveCfg = Release|Any CPU {B9E4DD2F-A059-476F-823A-1AA8C1970663}.Release|Any CPU.Build.0 = Release|Any CPU - {D46D9232-F585-4552-B3CA-6B0F284B746A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D46D9232-F585-4552-B3CA-6B0F284B746A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D46D9232-F585-4552-B3CA-6B0F284B746A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D46D9232-F585-4552-B3CA-6B0F284B746A}.Release|Any CPU.Build.0 = Release|Any CPU - {D1FB19C4-025E-4D4A-8532-4196AFCC8813}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D1FB19C4-025E-4D4A-8532-4196AFCC8813}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D1FB19C4-025E-4D4A-8532-4196AFCC8813}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D1FB19C4-025E-4D4A-8532-4196AFCC8813}.Release|Any CPU.Build.0 = Release|Any CPU {FAE48F29-DB35-4CD6-8A55-6C1FDDFBE6AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FAE48F29-DB35-4CD6-8A55-6C1FDDFBE6AF}.Debug|Any CPU.Build.0 = Debug|Any CPU {FAE48F29-DB35-4CD6-8A55-6C1FDDFBE6AF}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -710,13 +684,9 @@ Global {317CDFBC-9B41-4157-B2C0-D37E2BCEB42B} = {7B535D74-5496-4802-B809-89ED88274A91} {2EAA8C7E-F8EE-4567-9B5D-481D6FB18268} = {7B535D74-5496-4802-B809-89ED88274A91} {047F47EF-2A68-45A6-9F81-4EB499D9FB06} = {7B535D74-5496-4802-B809-89ED88274A91} - {8A0618F6-4FE6-4BA2-81DE-87C222235FBE} = {5E4765D1-3959-4433-8E9C-992E26D7BE62} {676D52A3-F285-4F58-B7A8-7BF415E3F733} = {0399182F-AF56-4E86-B229-EAB38C2EE6AF} - {5E639F63-97B0-4B34-8928-29A5A3C661F4} = {05D15661-E684-4EC9-8FBD-C014BA433CC5} {5F7935DF-55DF-44AC-8B0F-A395658AD7E0} = {7B535D74-5496-4802-B809-89ED88274A91} {B9E4DD2F-A059-476F-823A-1AA8C1970663} = {2ED32D16-6C06-4450-909A-40D32DA67FB4} - {D46D9232-F585-4552-B3CA-6B0F284B746A} = {5E4765D1-3959-4433-8E9C-992E26D7BE62} - {D1FB19C4-025E-4D4A-8532-4196AFCC8813} = {5E4765D1-3959-4433-8E9C-992E26D7BE62} {63E2F10F-27A6-4BAA-BF4A-4422D0934E91} = {20F315E0-52AE-479F-AF43-3402482C1FC8} {FAE48F29-DB35-4CD6-8A55-6C1FDDFBE6AF} = {63E2F10F-27A6-4BAA-BF4A-4422D0934E91} {77C96685-268E-4CAD-867E-C19BBBEB1F3F} = {7B535D74-5496-4802-B809-89ED88274A91} From b808623ca942b80f5f9308c252813caae07b0d3a Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Fri, 14 May 2021 23:58:07 -0400 Subject: [PATCH 4/9] add back UE5 Compiler (create ZIP packages of Universal Editor content plugins), still WIP --- .../UniversalEditor.Compiler/Program.cs | 87 +++++++++++++++++++ .../Properties/AssemblyInfo.cs | 46 ++++++++++ .../UniversalEditor.Compiler.csproj | 47 ++++++++++ UniversalEditor.sln | 7 ++ 4 files changed, 187 insertions(+) create mode 100644 Applications/UniversalEditor.Compiler/Program.cs create mode 100644 Applications/UniversalEditor.Compiler/Properties/AssemblyInfo.cs create mode 100644 Applications/UniversalEditor.Compiler/UniversalEditor.Compiler.csproj diff --git a/Applications/UniversalEditor.Compiler/Program.cs b/Applications/UniversalEditor.Compiler/Program.cs new file mode 100644 index 00000000..f83a9d56 --- /dev/null +++ b/Applications/UniversalEditor.Compiler/Program.cs @@ -0,0 +1,87 @@ +// +// Program.cs - the main entry point for the Universal Editor Extension Compiler +// +// Author: +// Michael Becker +// +// Copyright (c) 2020 Mike Becker's Software +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +using System; +using System.Collections.Generic; +using UniversalEditor; +using UniversalEditor.Accessors; +using UniversalEditor.DataFormats.Package.OpenDocument; +using UniversalEditor.DataFormats.UEPackage; +using UniversalEditor.DataFormats.UEPackage.Binary; +using UniversalEditor.ObjectModels.Package; +using UniversalEditor.ObjectModels.UEPackage; + +namespace UniversalEditor.Compiler +{ + public class Program + { + public static void Main(string[] args) + { + Console.Error.WriteLine("uex started..."); + List listFileNames = new List(); + + string outputFileName = "output.uex"; + bool foundFileName = false; + for (int i = 0; i < args.Length; i++) + { + if (args[i].StartsWith("/") && !foundFileName) + { + if (args[i].StartsWith("/out:")) + { + outputFileName = args[i].Substring(5); + } + } + else + { + // is file name + foundFileName = true; + + listFileNames.Add(args[i]); + } + } + + PackageObjectModel ue = new PackageObjectModel(); + OpenDocumentDataFormat odf = new OpenDocumentDataFormat(); + + System.Text.StringBuilder sb = new System.Text.StringBuilder(); + int totalInstances = 0; + + string exefilename = System.Environment.GetCommandLineArgs()[0]; + string workingdir = System.IO.Path.GetDirectoryName(exefilename); + + for (int i = 0; i < listFileNames.Count; i++) + { + string relpath = listFileNames[i]; + if (relpath.StartsWith(workingdir)) + { + relpath = relpath.Substring(workingdir.Length); + } + relpath = "Content/" + relpath; + + byte[] filedata = System.IO.File.ReadAllBytes(listFileNames[i]); + ue.FileSystem.AddFile(relpath, filedata); + } + + FileAccessor faout = new FileAccessor(outputFileName, true, true); + Document.Save(ue, odf, faout); + Console.Error.WriteLine("uex written to {0}!", outputFileName); + } + } +} diff --git a/Applications/UniversalEditor.Compiler/Properties/AssemblyInfo.cs b/Applications/UniversalEditor.Compiler/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..81603d90 --- /dev/null +++ b/Applications/UniversalEditor.Compiler/Properties/AssemblyInfo.cs @@ -0,0 +1,46 @@ +// +// AssemblyInfo.cs +// +// Author: +// Michael Becker +// +// Copyright (c) 2020 Mike Becker's Software +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +using System.Reflection; +using System.Runtime.CompilerServices; + +// Information about this assembly is defined by the following attributes. +// Change them to the values specific to your project. + +[assembly: AssemblyTitle("Mocha.Compiler")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Mike Becker's Software")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("Mike Becker's Software")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". +// The form "{Major}.{Minor}.*" will automatically update the build and revision, +// and "{Major}.{Minor}.{Build}.*" will update just the revision. + +[assembly: AssemblyVersion("1.0.*")] + +// The following attributes are used to specify the signing key for the assembly, +// if desired. See the Mono documentation for more information about signing. + +//[assembly: AssemblyDelaySign(false)] +//[assembly: AssemblyKeyFile("")] diff --git a/Applications/UniversalEditor.Compiler/UniversalEditor.Compiler.csproj b/Applications/UniversalEditor.Compiler/UniversalEditor.Compiler.csproj new file mode 100644 index 00000000..ba1587ea --- /dev/null +++ b/Applications/UniversalEditor.Compiler/UniversalEditor.Compiler.csproj @@ -0,0 +1,47 @@ + + + + Debug + AnyCPU + {5E639F63-97B0-4B34-8928-29A5A3C661F4} + Exe + UniversalEditor.Compiler + uecc + 4.0.2019.12 + + + true + full + false + ..\..\Output\Debug + DEBUG; + prompt + 4 + false + + + true + ..\..\Output\Release + prompt + 4 + false + + + + + + + + + + + {2D4737E6-6D95-408A-90DB-8DFF38147E85} + UniversalEditor.Core + + + {30467E5C-05BC-4856-AADC-13906EF4CADD} + UniversalEditor.Essential + + + + diff --git a/UniversalEditor.sln b/UniversalEditor.sln index 615efe89..2b5e1af1 100644 --- a/UniversalEditor.sln +++ b/UniversalEditor.sln @@ -207,6 +207,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Blo EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.AutoSave", "Plugins\UniversalEditor.Plugins.AutoSave\UniversalEditor.Plugins.AutoSave.csproj", "{385AB5A6-3EB6-4DF6-A7BF-DF9FFE43F192}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Compiler", "Applications\UniversalEditor.Compiler\UniversalEditor.Compiler.csproj", "{5E639F63-97B0-4B34-8928-29A5A3C661F4}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -599,6 +601,10 @@ Global {385AB5A6-3EB6-4DF6-A7BF-DF9FFE43F192}.Debug|Any CPU.Build.0 = Debug|Any CPU {385AB5A6-3EB6-4DF6-A7BF-DF9FFE43F192}.Release|Any CPU.ActiveCfg = Release|Any CPU {385AB5A6-3EB6-4DF6-A7BF-DF9FFE43F192}.Release|Any CPU.Build.0 = Release|Any CPU + {5E639F63-97B0-4B34-8928-29A5A3C661F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5E639F63-97B0-4B34-8928-29A5A3C661F4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5E639F63-97B0-4B34-8928-29A5A3C661F4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5E639F63-97B0-4B34-8928-29A5A3C661F4}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(NestedProjects) = preSolution {6F0AB1AF-E1A1-4D19-B19C-05BBB15C94B2} = {05D15661-E684-4EC9-8FBD-C014BA433CC5} @@ -697,6 +703,7 @@ Global {C54F6BCD-60CD-4603-B0C9-CD0864455CB1} = {2ED32D16-6C06-4450-909A-40D32DA67FB4} {B6E600F5-E5BC-4DC2-8B41-7B11EB0A11B3} = {7B535D74-5496-4802-B809-89ED88274A91} {385AB5A6-3EB6-4DF6-A7BF-DF9FFE43F192} = {2ED32D16-6C06-4450-909A-40D32DA67FB4} + {5E639F63-97B0-4B34-8928-29A5A3C661F4} = {05D15661-E684-4EC9-8FBD-C014BA433CC5} EndGlobalSection GlobalSection(MonoDevelopProperties) = preSolution Policies = $0 From dd6120ec0a31bfb4e65f42f5d25d923b2ad80b0f Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sat, 15 May 2021 00:07:07 -0400 Subject: [PATCH 5/9] also rm after-targets (use 'fxtool install gtk|wf' now) and junk that should be done by scripts --- UniversalEditor.Compiler.targets | 66 ------------------------------- UniversalEditor.MSBuild.Tasks.dll | 1 - after.UniversalEditor.sln.targets | 15 ------- uecc.exe | 1 - 4 files changed, 83 deletions(-) delete mode 100644 UniversalEditor.Compiler.targets delete mode 120000 UniversalEditor.MSBuild.Tasks.dll delete mode 100644 after.UniversalEditor.sln.targets delete mode 120000 uecc.exe diff --git a/UniversalEditor.Compiler.targets b/UniversalEditor.Compiler.targets deleted file mode 100644 index 1c67c965..00000000 --- a/UniversalEditor.Compiler.targets +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/UniversalEditor.MSBuild.Tasks.dll b/UniversalEditor.MSBuild.Tasks.dll deleted file mode 120000 index 2274f1d0..00000000 --- a/UniversalEditor.MSBuild.Tasks.dll +++ /dev/null @@ -1 +0,0 @@ -Output/Debug/UniversalEditor.MSBuild.Tasks.dll \ No newline at end of file diff --git a/after.UniversalEditor.sln.targets b/after.UniversalEditor.sln.targets deleted file mode 100644 index 66fcecc9..00000000 --- a/after.UniversalEditor.sln.targets +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/uecc.exe b/uecc.exe deleted file mode 120000 index 95935a8a..00000000 --- a/uecc.exe +++ /dev/null @@ -1 +0,0 @@ -Output/Debug/uecc.exe \ No newline at end of file From 852d6c941b98b26f8593458071f5d00edd33d146 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sat, 15 May 2021 00:29:40 -0400 Subject: [PATCH 6/9] reference project SNK file instead of global SNK file (project SNK is a symbolic link to global SNK) --- .../UniversalEditor.Bootstrapper.csproj | 2 +- .../UniversalEditor.ConsoleApplication.csproj | 2 +- .../UniversalEditor.ConsoleBootstrapper.csproj | 2 +- .../UniversalEditor.TestProject.csproj | 2 +- .../UniversalEditor.Checksum/UniversalEditor.Checksum.csproj | 2 +- .../UniversalEditor.Compression.csproj | 2 +- Libraries/UniversalEditor.Core/UniversalEditor.Core.csproj | 2 +- .../UniversalEditor.Essential/UniversalEditor.Essential.csproj | 2 +- .../UniversalEditor.Printing/UniversalEditor.Printing.csproj | 2 +- .../UniversalEditor.UserInterface.csproj | 2 +- UniversalEditor.snk | 1 + 11 files changed, 11 insertions(+), 10 deletions(-) create mode 120000 UniversalEditor.snk diff --git a/Applications/UniversalEditor.Bootstrapper/UniversalEditor.Bootstrapper.csproj b/Applications/UniversalEditor.Bootstrapper/UniversalEditor.Bootstrapper.csproj index 15706b5f..f8f5d2c8 100644 --- a/Applications/UniversalEditor.Bootstrapper/UniversalEditor.Bootstrapper.csproj +++ b/Applications/UniversalEditor.Bootstrapper/UniversalEditor.Bootstrapper.csproj @@ -13,7 +13,7 @@ 512 true - ..\..\..\Production.snk + ..\..\UniversalEditor.snk 4.0.2019.12 diff --git a/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj b/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj index 94c3bb12..8ca493da 100644 --- a/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj +++ b/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj @@ -8,7 +8,7 @@ UniversalEditor.ConsoleApplication ue true - ..\..\..\Production.snk + ..\..\UniversalEditor.snk 4.0.2019.12 diff --git a/Applications/UniversalEditor.ConsoleBootstrapper/UniversalEditor.ConsoleBootstrapper.csproj b/Applications/UniversalEditor.ConsoleBootstrapper/UniversalEditor.ConsoleBootstrapper.csproj index d99c06f1..095e7d2a 100644 --- a/Applications/UniversalEditor.ConsoleBootstrapper/UniversalEditor.ConsoleBootstrapper.csproj +++ b/Applications/UniversalEditor.ConsoleBootstrapper/UniversalEditor.ConsoleBootstrapper.csproj @@ -13,7 +13,7 @@ 512 true - ..\..\..\Production.snk + ..\..\UniversalEditor.snk ..\..\Content\UniversalEditor.Content.PlatformIndependent\Branding\MainIcon.ico 4.0.2019.12 diff --git a/Applications/UniversalEditor.TestProject/UniversalEditor.TestProject.csproj b/Applications/UniversalEditor.TestProject/UniversalEditor.TestProject.csproj index c0c22671..d8a8b7a8 100644 --- a/Applications/UniversalEditor.TestProject/UniversalEditor.TestProject.csproj +++ b/Applications/UniversalEditor.TestProject/UniversalEditor.TestProject.csproj @@ -8,7 +8,7 @@ UniversalEditor.TestProject UniversalEditor.TestProject true - ..\..\..\Production.snk + ..\..\UniversalEditor.snk 4.0.2019.12 diff --git a/Libraries/UniversalEditor.Checksum/UniversalEditor.Checksum.csproj b/Libraries/UniversalEditor.Checksum/UniversalEditor.Checksum.csproj index 170c4a1c..a83cae0f 100644 --- a/Libraries/UniversalEditor.Checksum/UniversalEditor.Checksum.csproj +++ b/Libraries/UniversalEditor.Checksum/UniversalEditor.Checksum.csproj @@ -11,7 +11,7 @@ v4.0 512 - ..\..\..\Production.snk + ..\..\UniversalEditor.snk 4.0.2019.12 diff --git a/Libraries/UniversalEditor.Compression/UniversalEditor.Compression.csproj b/Libraries/UniversalEditor.Compression/UniversalEditor.Compression.csproj index 780cf5f7..fa329ea3 100644 --- a/Libraries/UniversalEditor.Compression/UniversalEditor.Compression.csproj +++ b/Libraries/UniversalEditor.Compression/UniversalEditor.Compression.csproj @@ -13,7 +13,7 @@ 512 true - ..\..\..\Production.snk + ..\..\UniversalEditor.snk 8.0.30703 2.0 4.0.2019.12 diff --git a/Libraries/UniversalEditor.Core/UniversalEditor.Core.csproj b/Libraries/UniversalEditor.Core/UniversalEditor.Core.csproj index c942f77c..a497e5eb 100644 --- a/Libraries/UniversalEditor.Core/UniversalEditor.Core.csproj +++ b/Libraries/UniversalEditor.Core/UniversalEditor.Core.csproj @@ -11,7 +11,7 @@ v4.0 512 - ..\..\..\Production.snk + ..\..\UniversalEditor.snk 8.0.30703 2.0 4.0.2020.01 diff --git a/Libraries/UniversalEditor.Essential/UniversalEditor.Essential.csproj b/Libraries/UniversalEditor.Essential/UniversalEditor.Essential.csproj index 5a274e19..e3c6895e 100644 --- a/Libraries/UniversalEditor.Essential/UniversalEditor.Essential.csproj +++ b/Libraries/UniversalEditor.Essential/UniversalEditor.Essential.csproj @@ -13,7 +13,7 @@ 512 true - ..\..\..\Production.snk + ..\..\UniversalEditor.snk 8.0.30703 2.0 4.0.2019.12 diff --git a/Libraries/UniversalEditor.Printing/UniversalEditor.Printing.csproj b/Libraries/UniversalEditor.Printing/UniversalEditor.Printing.csproj index c843016d..0be7d7b0 100644 --- a/Libraries/UniversalEditor.Printing/UniversalEditor.Printing.csproj +++ b/Libraries/UniversalEditor.Printing/UniversalEditor.Printing.csproj @@ -8,7 +8,7 @@ UniversalEditor.Printing UniversalEditor.Printing true - ..\..\..\Production.snk + ..\..\UniversalEditor.snk 4.0.2019.12 false diff --git a/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj b/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj index ff832bcf..8a13d3a6 100644 --- a/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj +++ b/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj @@ -27,7 +27,7 @@ true true - ..\..\..\Production.snk + ..\..\UniversalEditor.snk 4.0.2019.12 diff --git a/UniversalEditor.snk b/UniversalEditor.snk new file mode 120000 index 00000000..84b73aa2 --- /dev/null +++ b/UniversalEditor.snk @@ -0,0 +1 @@ +../Production.snk \ No newline at end of file From cf3efc3268cb57c3e57c980de286c027649a47d6 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sat, 15 May 2021 00:34:42 -0400 Subject: [PATCH 7/9] add pre-commit hook 'mixed-line-ending' --- .pre-commit-config.yaml | 2 + .../UniversalEditor.ConsoleApplication.csproj | 2 +- .../UniversalEditor.TestProject.csproj | 2 +- .../SCE/PSM/content/$(Project.Title).csproj | 2 +- .../DataFormats/JSON/JSONDataFormat.cs | 80 +++++----- .../DataFormats/JSON/JSONPresetSettings.cs | 16 +- .../DataFormats/JSON/JSONSettings.cs | 8 +- .../JSON/Fields/JSONArrayField.cs | 24 +-- .../JSON/Fields/JSONBooleanField.cs | 30 ++-- .../JSON/Fields/JSONNumberField.cs | 24 +-- .../JSON/Fields/JSONObjectField.cs | 20 +-- .../JSON/Fields/JSONStringField.cs | 34 ++-- .../ObjectModels/JSON/JSONField.cs | 48 +++--- .../ObjectModels/JSON/JSONObject.cs | 56 +++---- .../ObjectModels/Markup/MarkupTagElement.cs | 2 +- .../CompilerBase.cs | 4 +- .../UniversalEditor.Printing.csproj | 2 +- ...atchFindReplaceCriteriaPropertiesDialog.cs | 2 +- .../Dialogs/BatchFindReplaceWindow.cs | 2 +- .../Dialogs/ManageBookmarksDialog.cs | 2 +- .../EditorApplication.cs | 4 +- .../Editors/FileSystem/FileSystemSelection.cs | 2 +- .../Editors/RIFF/RIFFEditor.cs | 2 +- ...rsalEditor.Plugins.Generic.Printing.csproj | 2 +- ...or.Plugins.Blockchain.UserInterface.csproj | 2 +- .../CPKFileInfoDialog.cs | 2 +- ...salEditor.Plugins.CRI.UserInterface.csproj | 2 +- .../Editors/Designer/DesignerEditor.cs | 4 +- ...itor.Plugins.Designer.UserInterface.csproj | 2 +- ...Plugins.Documentation.UserInterface.csproj | 2 +- ...or.Plugins.Executable.UserInterface.csproj | 2 +- ...tor.Plugins.Genealogy.UserInterface.csproj | 2 +- ...itor.Plugins.Lighting.UserInterface.csproj | 2 +- ...timedia.UserInterface.Collaboration.csproj | 2 +- .../SynthesizedAudioEditorSelection.cs | 4 +- .../Synthesized/Views/PianoRoll/NoteEvent.cs | 2 +- .../Views/PianoRoll/NoteRenderedEvent.cs | 2 +- .../Audio/Voicebank/VoicebankEditor.cs | 2 +- .../Controls/WaveformAudioEditorTrack.cs | 2 +- .../WaveformAudioEditorTrackControlPanel.cs | 2 +- .../WaveformAudioEditorTrackWaveform.cs | 2 +- .../Audio/Waveform/WaveformAudioEditor.cs | 4 +- .../Dialogs/AnimationPropertiesDialog.cs | 2 +- ...or.Plugins.Multimedia.UserInterface.csproj | 2 +- ...ins.NewWorldComputing.UserInterface.csproj | 2 +- ...Editor.Plugins.Office.UserInterface.csproj | 2 +- ...Plugins.RavenSoftware.UserInterface.csproj | 2 +- ...or.Plugins.Scientific.UserInterface.csproj | 2 +- ...lEditor.Plugins.Setup.UserInterface.csproj | 2 +- .../UnrealPackageEntryPropertiesDialog.cs | 2 +- ....Plugins.UnrealEngine.UserInterface.csproj | 2 +- .../UniversalEditor.Plugins.Adobe.csproj | 2 +- .../AutoSaveDataFormat.cs | 148 +++++++++--------- .../UniversalEditor.Plugins.AutoSave.csproj | 2 +- .../UniversalEditor.Plugins.Blockchain.csproj | 2 +- .../Audio/Waveform/CRI/ADX/ADXBlock.cs | 14 +- .../Audio/Waveform/CRI/ADX/ADXDataFormat.cs | 14 +- .../Audio/Waveform/CRI/ADX/ADXEncodingType.cs | 6 +- .../Audio/Waveform/CRI/ADX/ADXVersion.cs | 10 +- .../UniversalEditor.Plugins.CRI.csproj | 2 +- ...iversalEditor.Plugins.Collaboration.csproj | 2 +- .../UniversalEditor.Plugins.Database.csproj | 2 +- .../ObjectModels/Designer/Design.cs | 2 +- .../FileSystem/ARCV/ARCVDataFormat.cs | 2 +- .../FileSystem/BPlus/BPlusFileFlags.cs | 2 +- .../FileSystem/VMware/VMDKAdapterType.cs | 8 +- .../FileSystem/VMware/VMDKCreateType.cs | 8 +- .../FileSystem/VMware/VMDKDiskGeometry.cs | 8 +- .../FamilyTreeMaker/Windows/FTWDataFormat.cs | 38 ++--- .../UniversalEditor.Plugins.MTP.csproj | 2 +- .../DataFormats/BAML/BAMLDataFormat.cs | 2 +- ...versalEditor.Plugins.Microsoft.Xaml.csproj | 2 +- .../Microsoft/VirtualHardDisk/VHDFeatures.cs | 42 ++--- .../VHDHardDiskDynamicHeader.cs | 40 ++--- .../VirtualHardDisk/VHDHardDiskFooter.cs | 40 ++--- .../VirtualHardDisk/VHDHardDiskGeometry.cs | 42 ++--- .../VHDHardDiskParentLocatorEntry.cs | 42 ++--- .../VirtualHardDisk/VHDHardDiskType.cs | 34 ++-- .../Registry/MicrosoftRegistryDataFormat.cs | 4 +- .../Synthesized/ExtendedMIDI/XMIDataFormat.cs | 2 +- .../SynthesizedAudioObjectModel.cs | 2 +- .../UniversalEditor.Plugins.Office.csproj | 2 +- .../UniversalEditor.Plugins.Scientific.csproj | 2 +- .../UniversalEditor.Plugins.Sega.csproj | 2 +- .../UniversalEditor.Plugins.Sony.csproj | 2 +- .../UniversalEditor.Plugins.Synalysis.csproj | 2 +- .../Vocaloid/VPR/VPRProjectZIPDataFormat.cs | 2 +- .../UniversalEditor.Plugins.Vocaloid.csproj | 2 +- .../UniversalEditor.Plugins.Webfoot.csproj | 2 +- 89 files changed, 488 insertions(+), 486 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f43d926b..fa4a9790 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,6 +9,8 @@ repos: - id: check-xml - id: check-executables-have-shebangs - id: end-of-file-fixer + - id: mixed-line-ending + args: [--fix, auto] - id: fix-byte-order-marker - id: trailing-whitespace - repo: https://github.com/jumanjihouse/pre-commit-hooks diff --git a/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj b/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj index 8ca493da..2e2cc080 100644 --- a/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj +++ b/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj @@ -54,4 +54,4 @@ - + diff --git a/Applications/UniversalEditor.TestProject/UniversalEditor.TestProject.csproj b/Applications/UniversalEditor.TestProject/UniversalEditor.TestProject.csproj index d8a8b7a8..e7189c75 100644 --- a/Applications/UniversalEditor.TestProject/UniversalEditor.TestProject.csproj +++ b/Applications/UniversalEditor.TestProject/UniversalEditor.TestProject.csproj @@ -67,4 +67,4 @@ - + diff --git a/Content/UniversalEditor.Content.PlatformIndependent/Templates/Project/SCE/PSM/content/$(Project.Title).csproj b/Content/UniversalEditor.Content.PlatformIndependent/Templates/Project/SCE/PSM/content/$(Project.Title).csproj index ee947b24..828c4b6d 100644 --- a/Content/UniversalEditor.Content.PlatformIndependent/Templates/Project/SCE/PSM/content/$(Project.Title).csproj +++ b/Content/UniversalEditor.Content.PlatformIndependent/Templates/Project/SCE/PSM/content/$(Project.Title).csproj @@ -46,4 +46,4 @@ - + diff --git a/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONDataFormat.cs b/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONDataFormat.cs index f06e5cd8..2e24c78a 100644 --- a/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONDataFormat.cs +++ b/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONDataFormat.cs @@ -19,37 +19,37 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; -using System.Collections.Generic; - -using UniversalEditor.DataFormats.Text.Plain; +using System; +using System.Collections.Generic; + +using UniversalEditor.DataFormats.Text.Plain; using UniversalEditor.ObjectModels.JSON; -using UniversalEditor.ObjectModels.JSON.Fields; +using UniversalEditor.ObjectModels.JSON.Fields; using UniversalEditor.ObjectModels.Text.Plain; -namespace UniversalEditor.DataFormats.JSON +namespace UniversalEditor.DataFormats.JSON { - /// - /// Provides a for manipulating markup in JavaScript Object Notation (JSON) format. - /// - public class JSONDataFormat : PlainTextDataFormat - { - private static DataFormatReference _dfr; + /// + /// Provides a for manipulating markup in JavaScript Object Notation (JSON) format. + /// + public class JSONDataFormat : PlainTextDataFormat + { + private static DataFormatReference _dfr; protected override DataFormatReference MakeReferenceInternal() - { + { if (_dfr == null) - { - _dfr = base.MakeReferenceInternal(); + { + _dfr = base.MakeReferenceInternal(); _dfr.Capabilities.Add(typeof(JSONObjectModel), DataFormatCapabilities.All); - } + } return _dfr; - } - - public void ApplySettings(JSONPresetSettings settings) - { - switch (settings) + } + + public void ApplySettings(JSONPresetSettings settings) + { + switch (settings) { case JSONPresetSettings.JSON: { @@ -76,8 +76,8 @@ namespace UniversalEditor.DataFormats.JSON Settings.StringLiteralPrefix = "\""; Settings.StringLiteralSuffix = "\""; break; - } - } + } + } } /// @@ -88,24 +88,24 @@ namespace UniversalEditor.DataFormats.JSON protected override void BeforeLoadInternal(Stack objectModels) { - base.BeforeLoadInternal(objectModels); + base.BeforeLoadInternal(objectModels); objectModels.Push(new PlainTextObjectModel()); - } + } protected override void AfterLoadInternal(Stack objectModels) { - base.AfterLoadInternal(objectModels); - - PlainTextObjectModel ptom = (objectModels.Pop() as PlainTextObjectModel); - JSONObjectModel json = (objectModels.Pop() as JSONObjectModel); - - throw new NotImplementedException(); - } + base.AfterLoadInternal(objectModels); + + PlainTextObjectModel ptom = (objectModels.Pop() as PlainTextObjectModel); + JSONObjectModel json = (objectModels.Pop() as JSONObjectModel); + + throw new NotImplementedException(); + } protected override void BeforeSaveInternal(Stack objectModels) { - base.BeforeSaveInternal(objectModels); - - JSONObjectModel json = (objectModels.Pop() as JSONObjectModel); - PlainTextObjectModel ptom = (objectModels.Pop() as PlainTextObjectModel); + base.BeforeSaveInternal(objectModels); + + JSONObjectModel json = (objectModels.Pop() as JSONObjectModel); + PlainTextObjectModel ptom = (objectModels.Pop() as PlainTextObjectModel); ptom.Lines.Clear(); for (int iObj = 0; iObj < json.Objects.Count; iObj++) @@ -113,7 +113,7 @@ namespace UniversalEditor.DataFormats.JSON WriteObject(ptom, json.Objects[iObj]); if (iObj < json.Objects.Count - 1) ptom.WriteLine(); - } + } } private void WriteObject(PlainTextObjectModel ptom, JSONObject obj) @@ -203,6 +203,6 @@ namespace UniversalEditor.DataFormats.JSON { ptom.Write(Settings.StringLiteralPrefix + (f as JSONStringField).Value + Settings.StringLiteralSuffix); } - } - } -} + } + } +} diff --git a/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONPresetSettings.cs b/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONPresetSettings.cs index 912564bc..3f02ef87 100644 --- a/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONPresetSettings.cs +++ b/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONPresetSettings.cs @@ -19,14 +19,14 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -namespace UniversalEditor.DataFormats.JSON +namespace UniversalEditor.DataFormats.JSON { /// /// Indicates the preset settings to use for for a . - /// - public enum JSONPresetSettings - { - JSON = 0, - ExtendedINI = 1 - } -} + /// + public enum JSONPresetSettings + { + JSON = 0, + ExtendedINI = 1 + } +} diff --git a/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONSettings.cs b/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONSettings.cs index 6b0296ad..079e166c 100644 --- a/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONSettings.cs +++ b/Libraries/UniversalEditor.Essential/DataFormats/JSON/JSONSettings.cs @@ -19,11 +19,11 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -namespace UniversalEditor.DataFormats.JSON +namespace UniversalEditor.DataFormats.JSON { /// /// Represents settings for the parser. - /// + /// public class JSONSettings { /// @@ -141,5 +141,5 @@ namespace UniversalEditor.DataFormats.JSON /// /// The with which to suffix a string literal. public string StringLiteralSuffix { get; set; } = "\""; - } -} + } +} diff --git a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONArrayField.cs b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONArrayField.cs index 2560f69f..fb79567c 100644 --- a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONArrayField.cs +++ b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONArrayField.cs @@ -18,13 +18,13 @@ // // You should have received a copy of the GNU General Public License // along with this program. If not, see . - -namespace UniversalEditor.ObjectModels.JSON.Fields + +namespace UniversalEditor.ObjectModels.JSON.Fields { - /// - /// Represents an array field in a JSON document. - /// - public class JSONArrayField : JSONField + /// + /// Represents an array field in a JSON document. + /// + public class JSONArrayField : JSONField { /// /// Gets a collection of instances representing the values in the array. @@ -34,12 +34,12 @@ namespace UniversalEditor.ObjectModels.JSON.Fields public override object Clone() { - JSONArrayField clone = new JSONArrayField(); + JSONArrayField clone = new JSONArrayField(); foreach (string value in Values) - { + { clone.Values.Add(value.Clone() as string); - } + } return clone; - } - } -} + } + } +} diff --git a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONBooleanField.cs b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONBooleanField.cs index c0cd3f34..c793f6bf 100644 --- a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONBooleanField.cs +++ b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONBooleanField.cs @@ -19,25 +19,25 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -namespace UniversalEditor.ObjectModels.JSON.Fields +namespace UniversalEditor.ObjectModels.JSON.Fields { - /// - /// A representing either a true or false value. - /// - public class JSONBooleanField - : JSONField - { - /// - /// Gets or sets the value of this . - /// + /// + /// A representing either a true or false value. + /// + public class JSONBooleanField + : JSONField + { + /// + /// Gets or sets the value of this . + /// /// true if value; otherwise, false. public bool Value { get; set; } = false; public override object Clone() { - JSONBooleanField clone = new JSONBooleanField(); - clone.Value = Value; + JSONBooleanField clone = new JSONBooleanField(); + clone.Value = Value; return clone; - } - } -} + } + } +} diff --git a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONNumberField.cs b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONNumberField.cs index 0983a570..9337a7c8 100644 --- a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONNumberField.cs +++ b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONNumberField.cs @@ -18,14 +18,14 @@ // // You should have received a copy of the GNU General Public License // along with this program. If not, see . - -namespace UniversalEditor.ObjectModels.JSON.Fields + +namespace UniversalEditor.ObjectModels.JSON.Fields { - /// - /// A representing a numeric value. - /// - public class JSONNumberField - : JSONField + /// + /// A representing a numeric value. + /// + public class JSONNumberField + : JSONField { /// /// Gets or sets the value of this . @@ -35,9 +35,9 @@ namespace UniversalEditor.ObjectModels.JSON.Fields public override object Clone() { - JSONNumberField clone = new JSONNumberField(); - clone.Value = Value; + JSONNumberField clone = new JSONNumberField(); + clone.Value = Value; return clone; - } - } -} + } + } +} diff --git a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONObjectField.cs b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONObjectField.cs index 52098d82..590555da 100644 --- a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONObjectField.cs +++ b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONObjectField.cs @@ -19,20 +19,20 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -namespace UniversalEditor.ObjectModels.JSON.Fields +namespace UniversalEditor.ObjectModels.JSON.Fields { - /// - /// A which can contain other fields. - /// - public class JSONObjectField : JSONField + /// + /// A which can contain other fields. + /// + public class JSONObjectField : JSONField { public JSONObject Value { get; set; } = null; public override object Clone() { - JSONObjectField clone = new JSONObjectField(); - clone.Value = (Value.Clone() as JSONObject); + JSONObjectField clone = new JSONObjectField(); + clone.Value = (Value.Clone() as JSONObject); return clone; - } - } -} + } + } +} diff --git a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONStringField.cs b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONStringField.cs index 938ccf60..13ee72ed 100644 --- a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONStringField.cs +++ b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/Fields/JSONStringField.cs @@ -19,22 +19,22 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -namespace UniversalEditor.ObjectModels.JSON.Fields -{ - /// - /// A representing a string value. - /// - public class JSONStringField - : JSONField - { - private string mvarValue = ""; - public string Value { get { return mvarValue; } set { mvarValue = value; } } - +namespace UniversalEditor.ObjectModels.JSON.Fields +{ + /// + /// A representing a string value. + /// + public class JSONStringField + : JSONField + { + private string mvarValue = ""; + public string Value { get { return mvarValue; } set { mvarValue = value; } } + public override object Clone() - { - JSONStringField clone = new JSONStringField(); - clone.Value = (Value.Clone() as string); + { + JSONStringField clone = new JSONStringField(); + clone.Value = (Value.Clone() as string); return clone; - } - } -} + } + } +} diff --git a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/JSONField.cs b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/JSONField.cs index b891838b..6edd1d24 100644 --- a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/JSONField.cs +++ b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/JSONField.cs @@ -1,28 +1,28 @@ -// -// JSONField.cs - the abstract base class from which all fields in a JSONObjectModel derive -// -// Author: -// Michael Becker -// -// Copyright (c) 2011-2020 Mike Becker's Software -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - -using System; +// +// JSONField.cs - the abstract base class from which all fields in a JSONObjectModel derive +// +// Author: +// Michael Becker +// +// Copyright (c) 2011-2020 Mike Becker's Software +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +using System; + +using UniversalEditor.ObjectModels.JSON.Fields; -using UniversalEditor.ObjectModels.JSON.Fields; - namespace UniversalEditor.ObjectModels.JSON { /// diff --git a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/JSONObject.cs b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/JSONObject.cs index fc50c262..2346cf08 100644 --- a/Libraries/UniversalEditor.Essential/ObjectModels/JSON/JSONObject.cs +++ b/Libraries/UniversalEditor.Essential/ObjectModels/JSON/JSONObject.cs @@ -1,24 +1,24 @@ -// -// JSONObject.cs - represents a JSON object which can contain other JSONObjects and JSONFields -// -// Author: -// Michael Becker -// -// Copyright (c) 2011-2020 Mike Becker's Software -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - +// +// JSONObject.cs - represents a JSON object which can contain other JSONObjects and JSONFields +// +// Author: +// Michael Becker +// +// Copyright (c) 2011-2020 Mike Becker's Software +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + using System; namespace UniversalEditor.ObjectModels.JSON @@ -77,17 +77,17 @@ namespace UniversalEditor.ObjectModels.JSON } return false; } - } - - public object Clone() + } + + public object Clone() { JSONObject clone = new JSONObject(); - foreach (JSONField field in Fields) + foreach (JSONField field in Fields) { - clone.Fields.Add(field.Clone() as JSONField); + clone.Fields.Add(field.Clone() as JSONField); } clone.Name = (Name.Clone() as string); - return clone; - } + return clone; + } } } diff --git a/Libraries/UniversalEditor.Essential/ObjectModels/Markup/MarkupTagElement.cs b/Libraries/UniversalEditor.Essential/ObjectModels/Markup/MarkupTagElement.cs index f258ec02..dd84d596 100644 --- a/Libraries/UniversalEditor.Essential/ObjectModels/Markup/MarkupTagElement.cs +++ b/Libraries/UniversalEditor.Essential/ObjectModels/Markup/MarkupTagElement.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using System.Collections.Generic; namespace UniversalEditor.ObjectModels.Markup diff --git a/Libraries/UniversalEditor.MSBuild.Tasks/CompilerBase.cs b/Libraries/UniversalEditor.MSBuild.Tasks/CompilerBase.cs index 98bfae06..af3c5ae8 100644 --- a/Libraries/UniversalEditor.MSBuild.Tasks/CompilerBase.cs +++ b/Libraries/UniversalEditor.MSBuild.Tasks/CompilerBase.cs @@ -19,8 +19,8 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System.Text; -using Microsoft.Build.Framework; +using System.Text; +using Microsoft.Build.Framework; using Microsoft.Build.Utilities; namespace UniversalEditor.MSBuild.Tasks diff --git a/Libraries/UniversalEditor.Printing/UniversalEditor.Printing.csproj b/Libraries/UniversalEditor.Printing/UniversalEditor.Printing.csproj index 0be7d7b0..928e792f 100644 --- a/Libraries/UniversalEditor.Printing/UniversalEditor.Printing.csproj +++ b/Libraries/UniversalEditor.Printing/UniversalEditor.Printing.csproj @@ -57,4 +57,4 @@ - + diff --git a/Libraries/UniversalEditor.UserInterface/Dialogs/BatchFindReplaceCriteriaPropertiesDialog.cs b/Libraries/UniversalEditor.UserInterface/Dialogs/BatchFindReplaceCriteriaPropertiesDialog.cs index 745e6885..8b5783a8 100644 --- a/Libraries/UniversalEditor.UserInterface/Dialogs/BatchFindReplaceCriteriaPropertiesDialog.cs +++ b/Libraries/UniversalEditor.UserInterface/Dialogs/BatchFindReplaceCriteriaPropertiesDialog.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework.Logic.Conditional; using MBS.Framework.UserInterface; using MBS.Framework.UserInterface.Controls; diff --git a/Libraries/UniversalEditor.UserInterface/Dialogs/BatchFindReplaceWindow.cs b/Libraries/UniversalEditor.UserInterface/Dialogs/BatchFindReplaceWindow.cs index d2dd996c..416d8b8e 100644 --- a/Libraries/UniversalEditor.UserInterface/Dialogs/BatchFindReplaceWindow.cs +++ b/Libraries/UniversalEditor.UserInterface/Dialogs/BatchFindReplaceWindow.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework; using MBS.Framework.Logic.Conditional; using MBS.Framework.UserInterface; diff --git a/Libraries/UniversalEditor.UserInterface/Dialogs/ManageBookmarksDialog.cs b/Libraries/UniversalEditor.UserInterface/Dialogs/ManageBookmarksDialog.cs index d4f3cc8d..5425c13d 100644 --- a/Libraries/UniversalEditor.UserInterface/Dialogs/ManageBookmarksDialog.cs +++ b/Libraries/UniversalEditor.UserInterface/Dialogs/ManageBookmarksDialog.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework.UserInterface; using MBS.Framework.UserInterface.Controls; using MBS.Framework.UserInterface.Controls.ListView; diff --git a/Libraries/UniversalEditor.UserInterface/EditorApplication.cs b/Libraries/UniversalEditor.UserInterface/EditorApplication.cs index 74bc436d..2ced8ac8 100644 --- a/Libraries/UniversalEditor.UserInterface/EditorApplication.cs +++ b/Libraries/UniversalEditor.UserInterface/EditorApplication.cs @@ -1,6 +1,6 @@ -using System; -using MBS.Framework; +using System; +using MBS.Framework; using MBS.Framework.UserInterface; namespace UniversalEditor.UserInterface diff --git a/Libraries/UniversalEditor.UserInterface/Editors/FileSystem/FileSystemSelection.cs b/Libraries/UniversalEditor.UserInterface/Editors/FileSystem/FileSystemSelection.cs index c50938a4..16201e0d 100644 --- a/Libraries/UniversalEditor.UserInterface/Editors/FileSystem/FileSystemSelection.cs +++ b/Libraries/UniversalEditor.UserInterface/Editors/FileSystem/FileSystemSelection.cs @@ -18,7 +18,7 @@ // // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using UniversalEditor.ObjectModels.FileSystem; +using UniversalEditor.ObjectModels.FileSystem; using UniversalEditor.UserInterface; namespace UniversalEditor.Editors.FileSystem diff --git a/Libraries/UniversalEditor.UserInterface/Editors/RIFF/RIFFEditor.cs b/Libraries/UniversalEditor.UserInterface/Editors/RIFF/RIFFEditor.cs index 062ca1a0..80b32b45 100644 --- a/Libraries/UniversalEditor.UserInterface/Editors/RIFF/RIFFEditor.cs +++ b/Libraries/UniversalEditor.UserInterface/Editors/RIFF/RIFFEditor.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework.UserInterface; using MBS.Framework.UserInterface.Controls.ListView; diff --git a/Plugins.Printing/UniversalEditor.Plugins.Generic.Printing/UniversalEditor.Plugins.Generic.Printing.csproj b/Plugins.Printing/UniversalEditor.Plugins.Generic.Printing/UniversalEditor.Plugins.Generic.Printing.csproj index 3f75b912..e33f9981 100644 --- a/Plugins.Printing/UniversalEditor.Plugins.Generic.Printing/UniversalEditor.Plugins.Generic.Printing.csproj +++ b/Plugins.Printing/UniversalEditor.Plugins.Generic.Printing/UniversalEditor.Plugins.Generic.Printing.csproj @@ -60,4 +60,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Blockchain.UserInterface/UniversalEditor.Plugins.Blockchain.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Blockchain.UserInterface/UniversalEditor.Plugins.Blockchain.UserInterface.csproj index 3276bb97..96b214ac 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Blockchain.UserInterface/UniversalEditor.Plugins.Blockchain.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Blockchain.UserInterface/UniversalEditor.Plugins.Blockchain.UserInterface.csproj @@ -61,4 +61,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.CRI.UserInterface/CPKFileInfoDialog.cs b/Plugins.UserInterface/UniversalEditor.Plugins.CRI.UserInterface/CPKFileInfoDialog.cs index dca13f5d..7c43504e 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.CRI.UserInterface/CPKFileInfoDialog.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.CRI.UserInterface/CPKFileInfoDialog.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using System.Text; using MBS.Framework; using MBS.Framework.UserInterface; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.CRI.UserInterface/UniversalEditor.Plugins.CRI.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.CRI.UserInterface/UniversalEditor.Plugins.CRI.UserInterface.csproj index 6e9bc44b..3d44ec18 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.CRI.UserInterface/UniversalEditor.Plugins.CRI.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.CRI.UserInterface/UniversalEditor.Plugins.CRI.UserInterface.csproj @@ -64,4 +64,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Designer.UserInterface/Editors/Designer/DesignerEditor.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Designer.UserInterface/Editors/Designer/DesignerEditor.cs index 4f0d25a6..27bedee6 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Designer.UserInterface/Editors/Designer/DesignerEditor.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Designer.UserInterface/Editors/Designer/DesignerEditor.cs @@ -19,8 +19,8 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; -using MBS.Framework.UserInterface; +using System; +using MBS.Framework.UserInterface; using UniversalEditor.ObjectModels.Designer; using UniversalEditor.UserInterface; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Designer.UserInterface/UniversalEditor.Plugins.Designer.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Designer.UserInterface/UniversalEditor.Plugins.Designer.UserInterface.csproj index 2e93090e..ca8b19b2 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Designer.UserInterface/UniversalEditor.Plugins.Designer.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Designer.UserInterface/UniversalEditor.Plugins.Designer.UserInterface.csproj @@ -67,4 +67,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Documentation.UserInterface/UniversalEditor.Plugins.Documentation.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Documentation.UserInterface/UniversalEditor.Plugins.Documentation.UserInterface.csproj index 02258090..60c6b259 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Documentation.UserInterface/UniversalEditor.Plugins.Documentation.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Documentation.UserInterface/UniversalEditor.Plugins.Documentation.UserInterface.csproj @@ -60,4 +60,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Executable.UserInterface/UniversalEditor.Plugins.Executable.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Executable.UserInterface/UniversalEditor.Plugins.Executable.UserInterface.csproj index ddcd2da8..4198938a 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Executable.UserInterface/UniversalEditor.Plugins.Executable.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Executable.UserInterface/UniversalEditor.Plugins.Executable.UserInterface.csproj @@ -75,4 +75,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Genealogy.UserInterface/UniversalEditor.Plugins.Genealogy.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Genealogy.UserInterface/UniversalEditor.Plugins.Genealogy.UserInterface.csproj index 646a4e56..766b0b5a 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Genealogy.UserInterface/UniversalEditor.Plugins.Genealogy.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Genealogy.UserInterface/UniversalEditor.Plugins.Genealogy.UserInterface.csproj @@ -68,4 +68,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Lighting.UserInterface/UniversalEditor.Plugins.Lighting.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Lighting.UserInterface/UniversalEditor.Plugins.Lighting.UserInterface.csproj index 204edf44..3a9130d9 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Lighting.UserInterface/UniversalEditor.Plugins.Lighting.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Lighting.UserInterface/UniversalEditor.Plugins.Lighting.UserInterface.csproj @@ -69,4 +69,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface.Collaboration/UniversalEditor.Plugins.Multimedia.UserInterface.Collaboration.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface.Collaboration/UniversalEditor.Plugins.Multimedia.UserInterface.Collaboration.csproj index 597c083c..4579a501 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface.Collaboration/UniversalEditor.Plugins.Multimedia.UserInterface.Collaboration.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface.Collaboration/UniversalEditor.Plugins.Multimedia.UserInterface.Collaboration.csproj @@ -69,4 +69,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/SynthesizedAudioEditorSelection.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/SynthesizedAudioEditorSelection.cs index a77146dc..056119c7 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/SynthesizedAudioEditorSelection.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/SynthesizedAudioEditorSelection.cs @@ -19,8 +19,8 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using MBS.Framework.Drawing; -using UniversalEditor.Editors.Multimedia.Audio.Synthesized.Views.PianoRoll; +using MBS.Framework.Drawing; +using UniversalEditor.Editors.Multimedia.Audio.Synthesized.Views.PianoRoll; using UniversalEditor.ObjectModels.Multimedia.Audio.Synthesized; using UniversalEditor.UserInterface; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/Views/PianoRoll/NoteEvent.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/Views/PianoRoll/NoteEvent.cs index 4cffa02d..55d6cbd0 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/Views/PianoRoll/NoteEvent.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/Views/PianoRoll/NoteEvent.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework.Drawing; using UniversalEditor.ObjectModels.Multimedia.Audio.Synthesized; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/Views/PianoRoll/NoteRenderedEvent.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/Views/PianoRoll/NoteRenderedEvent.cs index 9fce2ff6..0416f5ba 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/Views/PianoRoll/NoteRenderedEvent.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Synthesized/Views/PianoRoll/NoteRenderedEvent.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework.Drawing; using MBS.Framework.UserInterface.Drawing; using UniversalEditor.ObjectModels.Multimedia.Audio.Synthesized; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Voicebank/VoicebankEditor.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Voicebank/VoicebankEditor.cs index b6154705..d57e818b 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Voicebank/VoicebankEditor.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Voicebank/VoicebankEditor.cs @@ -32,7 +32,7 @@ namespace UniversalEditor.Plugins.Multimedia.UserInterface.Editors.Multimedia.Au { /// /// Provides a UWT-based for a . - /// + /// public class VoicebankEditor : Editor { private DefaultTreeModel tmSamples = null; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrack.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrack.cs index 519a775d..cb03ae3c 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrack.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrack.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework.UserInterface; using UniversalEditor.ObjectModels.Multimedia.Audio.Waveform; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrackControlPanel.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrackControlPanel.cs index 71bd4539..fd4348b6 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrackControlPanel.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrackControlPanel.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework.UserInterface; using MBS.Framework.UserInterface.Controls; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrackWaveform.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrackWaveform.cs index 443f9cab..d9269f44 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrackWaveform.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/Controls/WaveformAudioEditorTrackWaveform.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework.Drawing; using MBS.Framework.UserInterface; using MBS.Framework.UserInterface.Drawing; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/WaveformAudioEditor.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/WaveformAudioEditor.cs index 0c115f62..ff763a12 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/WaveformAudioEditor.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/Audio/Waveform/WaveformAudioEditor.cs @@ -19,12 +19,12 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Audio; using MBS.Audio.PortAudio; using MBS.Framework.UserInterface; using MBS.Framework.UserInterface.Layouts; -using UniversalEditor.ObjectModels.Multimedia.Audio.Waveform; +using UniversalEditor.ObjectModels.Multimedia.Audio.Waveform; using UniversalEditor.Plugins.Multimedia.UserInterface.Editors.Multimedia.Audio.Waveform.Controls; using UniversalEditor.UserInterface; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/PictureCollection/Dialogs/AnimationPropertiesDialog.cs b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/PictureCollection/Dialogs/AnimationPropertiesDialog.cs index 0f80a76b..5e5e4ecd 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/PictureCollection/Dialogs/AnimationPropertiesDialog.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/Editors/Multimedia/PictureCollection/Dialogs/AnimationPropertiesDialog.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using System.Collections.Generic; using MBS.Framework.UserInterface; using MBS.Framework.UserInterface.Controls; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface.csproj index 24d486c5..6e28e675 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface/UniversalEditor.Plugins.Multimedia.UserInterface.csproj @@ -122,4 +122,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.NewWorldComputing.UserInterface/UniversalEditor.Plugins.NewWorldComputing.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.NewWorldComputing.UserInterface/UniversalEditor.Plugins.NewWorldComputing.UserInterface.csproj index 50ade1e7..0dee2558 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.NewWorldComputing.UserInterface/UniversalEditor.Plugins.NewWorldComputing.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.NewWorldComputing.UserInterface/UniversalEditor.Plugins.NewWorldComputing.UserInterface.csproj @@ -77,4 +77,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Office.UserInterface/UniversalEditor.Plugins.Office.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Office.UserInterface/UniversalEditor.Plugins.Office.UserInterface.csproj index 04296f52..ba2a24a7 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Office.UserInterface/UniversalEditor.Plugins.Office.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Office.UserInterface/UniversalEditor.Plugins.Office.UserInterface.csproj @@ -79,4 +79,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.RavenSoftware.UserInterface/UniversalEditor.Plugins.RavenSoftware.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.RavenSoftware.UserInterface/UniversalEditor.Plugins.RavenSoftware.UserInterface.csproj index e8742ae6..9afafa4f 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.RavenSoftware.UserInterface/UniversalEditor.Plugins.RavenSoftware.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.RavenSoftware.UserInterface/UniversalEditor.Plugins.RavenSoftware.UserInterface.csproj @@ -86,4 +86,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Scientific.UserInterface/UniversalEditor.Plugins.Scientific.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Scientific.UserInterface/UniversalEditor.Plugins.Scientific.UserInterface.csproj index 91af71cd..42b0ddb3 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Scientific.UserInterface/UniversalEditor.Plugins.Scientific.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Scientific.UserInterface/UniversalEditor.Plugins.Scientific.UserInterface.csproj @@ -64,4 +64,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.Setup.UserInterface/UniversalEditor.Plugins.Setup.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.Setup.UserInterface/UniversalEditor.Plugins.Setup.UserInterface.csproj index 2674e482..ee14d259 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.Setup.UserInterface/UniversalEditor.Plugins.Setup.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.Setup.UserInterface/UniversalEditor.Plugins.Setup.UserInterface.csproj @@ -64,4 +64,4 @@ - + diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface/Dialogs/Unreal/Package/UnrealPackageEntryPropertiesDialog.cs b/Plugins.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface/Dialogs/Unreal/Package/UnrealPackageEntryPropertiesDialog.cs index 7c5226ea..10716067 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface/Dialogs/Unreal/Package/UnrealPackageEntryPropertiesDialog.cs +++ b/Plugins.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface/Dialogs/Unreal/Package/UnrealPackageEntryPropertiesDialog.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework.UserInterface; using MBS.Framework.UserInterface.Controls; using MBS.Framework.UserInterface.Dialogs; diff --git a/Plugins.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface.csproj b/Plugins.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface.csproj index a29521a3..c25d60bd 100644 --- a/Plugins.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface.csproj +++ b/Plugins.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface/UniversalEditor.Plugins.UnrealEngine.UserInterface.csproj @@ -70,4 +70,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Adobe/UniversalEditor.Plugins.Adobe.csproj b/Plugins/UniversalEditor.Plugins.Adobe/UniversalEditor.Plugins.Adobe.csproj index 7e33129a..4e7d92c4 100644 --- a/Plugins/UniversalEditor.Plugins.Adobe/UniversalEditor.Plugins.Adobe.csproj +++ b/Plugins/UniversalEditor.Plugins.Adobe/UniversalEditor.Plugins.Adobe.csproj @@ -55,4 +55,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.AutoSave/AutoSaveDataFormat.cs b/Plugins/UniversalEditor.Plugins.AutoSave/AutoSaveDataFormat.cs index 2c77b731..367ce64c 100644 --- a/Plugins/UniversalEditor.Plugins.AutoSave/AutoSaveDataFormat.cs +++ b/Plugins/UniversalEditor.Plugins.AutoSave/AutoSaveDataFormat.cs @@ -1,17 +1,17 @@ using System; -using System.Reflection; -using UniversalEditor.Accessors; -using UniversalEditor.IO; - -namespace UniversalEditor.Plugins.AutoSave -{ - internal class AutoSaveDataFormat : DataFormat - { +using System.Reflection; +using UniversalEditor.Accessors; +using UniversalEditor.IO; + +namespace UniversalEditor.Plugins.AutoSave +{ + internal class AutoSaveDataFormat : DataFormat + { public float Version { get; set; } = 1.0f; - public static float MAX_SUPPORTED_VERSION = 1.0f; - - protected override void LoadInternal(ref ObjectModel objectModel) + public static float MAX_SUPPORTED_VERSION = 1.0f; + + protected override void LoadInternal(ref ObjectModel objectModel) { Reader r = Accessor.Reader; AutoSaveObjectModel autosave = (objectModel as AutoSaveObjectModel); @@ -21,9 +21,9 @@ namespace UniversalEditor.Plugins.AutoSave throw new InvalidDataFormatException("file does not begin with 'UE4 AutoSave'"); Version = r.ReadSingle(); - if (Version > MAX_SUPPORTED_VERSION) - { - throw new InvalidDataFormatException(String.Format("format version {0} not supported!", Version)); + if (Version > MAX_SUPPORTED_VERSION) + { + throw new InvalidDataFormatException(String.Format("format version {0} not supported!", Version)); } autosave.OriginalFileName = r.ReadNullTerminatedString(); @@ -34,99 +34,99 @@ namespace UniversalEditor.Plugins.AutoSave r.Seek(offsetToStringTable, SeekOrigin.Begin); int stringTableCount = r.ReadInt32(); - for (int i = 0; i < stringTableCount; i++) - { + for (int i = 0; i < stringTableCount; i++) + { string value = r.ReadNullTerminatedString(); - _StringTable.Add(value); + _StringTable.Add(value); } r.Accessor.LoadPosition(); object om = ReadObject(r); - if (om is ObjectModel) - { - autosave.ObjectModel = (om as ObjectModel); - } + if (om is ObjectModel) + { + autosave.ObjectModel = (om as ObjectModel); + } } - - protected override void SaveInternal(ObjectModel objectModel) - { + + protected override void SaveInternal(ObjectModel objectModel) + { Writer w = Accessor.Writer; - AutoSaveObjectModel autosave = (objectModel as AutoSaveObjectModel); + AutoSaveObjectModel autosave = (objectModel as AutoSaveObjectModel); w.AutoFlush = true; // should be removed for release - - w.WriteFixedLengthString("UE4 AutoSave"); + + w.WriteFixedLengthString("UE4 AutoSave"); w.WriteSingle(Version); - if (autosave.OriginalFileName != null) - { - w.WriteNullTerminatedString(autosave.OriginalFileName); + if (autosave.OriginalFileName != null) + { + w.WriteNullTerminatedString(autosave.OriginalFileName); } - else - { - w.WriteByte(0); + else + { + w.WriteByte(0); } // last update date time - w.WriteDateTime(DateTime.Now); + w.WriteDateTime(DateTime.Now); - MemoryAccessor ma = new MemoryAccessor(); + MemoryAccessor ma = new MemoryAccessor(); WriteObject(ma.Writer, autosave.ObjectModel); ma.Flush(); ma.Close(); - w.WriteInt64(ma.Length); // offset to string table + w.WriteInt64(ma.Length); // offset to string table w.WriteBytes(ma.ToArray()); w.WriteInt32(_StringTable.Count); for (int i = 0; i < _StringTable.Count; i++) { w.WriteNullTerminatedString(_StringTable[i]); - } + } } private System.Collections.Specialized.StringCollection _StringTable = new System.Collections.Specialized.StringCollection(); - private int MakeStringTableEntry(string value) + private int MakeStringTableEntry(string value) { if (!_StringTable.Contains(value)) _StringTable.Add(value); - return _StringTable.IndexOf(value); + return _StringTable.IndexOf(value); } - private object ReadObject(Reader r) + private object ReadObject(Reader r) { AutoSaveKnownType typeId = (AutoSaveKnownType) r.ReadInt32(); - switch (typeId) - { - case AutoSaveKnownType.Null: return null; + switch (typeId) + { + case AutoSaveKnownType.Null: return null; case AutoSaveKnownType.Object: { int index = r.ReadInt32(); - string typeName = _StringTable[index]; - break; - } - } - return null; + string typeName = _StringTable[index]; + break; + } + } + return null; } - private void WriteObject(Writer w, object o) + private void WriteObject(Writer w, object o) { - if (o == null) + if (o == null) { - w.WriteInt32((int)AutoSaveKnownType.Null); // null - return; - } - - w.WriteInt32((int)AutoSaveKnownType.Object); - + w.WriteInt32((int)AutoSaveKnownType.Null); // null + return; + } + + w.WriteInt32((int)AutoSaveKnownType.Object); + Type t = o.GetType(); - + w.WriteInt32(MakeStringTableEntry(t.FullName)); - - // public instance properties are really the only things we care about + + // public instance properties are really the only things we care about System.Reflection.PropertyInfo[] pis = t.GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance); System.Collections.Generic.List list = new System.Collections.Generic.List(); @@ -142,23 +142,23 @@ namespace UniversalEditor.Plugins.AutoSave for (int i = 0; i < list.Count; i++) { WriteProperty(w, list[i], o); - } - } - - private void WriteProperty(Writer w, PropertyInfo propertyInfo, object obj) + } + } + + private void WriteProperty(Writer w, PropertyInfo propertyInfo, object obj) { - w.WriteInt32(MakeStringTableEntry(propertyInfo.Name)); - w.WriteInt32(MakeStringTableEntry(propertyInfo.PropertyType.FullName)); - + w.WriteInt32(MakeStringTableEntry(propertyInfo.Name)); + w.WriteInt32(MakeStringTableEntry(propertyInfo.PropertyType.FullName)); + object val = propertyInfo.GetValue(obj); if (val == obj) return; - WriteValue(w, val); - } - - private void WriteValue(Writer w, object val) + WriteValue(w, val); + } + + private void WriteValue(Writer w, object val) { if (val is string) { @@ -245,7 +245,7 @@ namespace UniversalEditor.Plugins.AutoSave { w.WriteInt32((int)AutoSaveKnownType.Object); WriteObject(w, val); - } - } - } -} + } + } + } +} diff --git a/Plugins/UniversalEditor.Plugins.AutoSave/UniversalEditor.Plugins.AutoSave.csproj b/Plugins/UniversalEditor.Plugins.AutoSave/UniversalEditor.Plugins.AutoSave.csproj index ebf1fa07..39923668 100644 --- a/Plugins/UniversalEditor.Plugins.AutoSave/UniversalEditor.Plugins.AutoSave.csproj +++ b/Plugins/UniversalEditor.Plugins.AutoSave/UniversalEditor.Plugins.AutoSave.csproj @@ -63,4 +63,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Blockchain/UniversalEditor.Plugins.Blockchain.csproj b/Plugins/UniversalEditor.Plugins.Blockchain/UniversalEditor.Plugins.Blockchain.csproj index 6424fca3..6449e101 100644 --- a/Plugins/UniversalEditor.Plugins.Blockchain/UniversalEditor.Plugins.Blockchain.csproj +++ b/Plugins/UniversalEditor.Plugins.Blockchain/UniversalEditor.Plugins.Blockchain.csproj @@ -55,4 +55,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXBlock.cs b/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXBlock.cs index f90c3aa6..748eac0e 100644 --- a/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXBlock.cs +++ b/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXBlock.cs @@ -19,16 +19,16 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX +namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX { /// /// Provides metadata information for a block in an ADX-encoded audio file. - /// + /// public class ADXBlock { - /// - /// The scale is a 16bit unsigned integer (big-endian like the header) which is essentially the amplification of all the samples in that block. - /// + /// + /// The scale is a 16bit unsigned integer (big-endian like the header) which is essentially the amplification of all the samples in that block. + /// public ushort Scale { get; set; } = 0; - } -} + } +} diff --git a/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXDataFormat.cs b/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXDataFormat.cs index f4aeb697..b297fdc6 100644 --- a/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXDataFormat.cs +++ b/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXDataFormat.cs @@ -19,15 +19,15 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using UniversalEditor.IO; using UniversalEditor.ObjectModels.Multimedia.Audio.Waveform; -namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX +namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX { /// /// Provides a for manipulating audio files in ADX format. - /// + /// public class ADXDataFormat : DataFormat { public byte[] Signature { get; set; } = new byte[] { 0x80, 0x00 }; @@ -186,7 +186,7 @@ namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX _dfr.Capabilities.Add(typeof(WaveformAudioObjectModel), DataFormatCapabilities.All); } return _dfr; - } + } protected override void LoadInternal(ref ObjectModel objectModel) { @@ -197,7 +197,7 @@ namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX Reader reader = base.Accessor.Reader; throw new NotImplementedException(); - } + } protected override void SaveInternal(ObjectModel objectModel) { WaveformAudioObjectModel wave = (objectModel as WaveformAudioObjectModel); @@ -247,5 +247,5 @@ namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX // Audio data starts here! throw new NotImplementedException(); } - } -} + } +} diff --git a/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXEncodingType.cs b/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXEncodingType.cs index 6ef14fff..8c96c1cc 100644 --- a/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXEncodingType.cs +++ b/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXEncodingType.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX +namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX { /// /// Indicates the encoding type for the ADX codec. @@ -30,5 +30,5 @@ namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX ADXWithExponentialScale = 0x04, AHX10 = 0x10, AHX11 = 0x11 - } -} + } +} diff --git a/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXVersion.cs b/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXVersion.cs index 9e519074..bcb44575 100644 --- a/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXVersion.cs +++ b/Plugins/UniversalEditor.Plugins.CRI/DataFormats/Multimedia/Audio/Waveform/CRI/ADX/ADXVersion.cs @@ -18,17 +18,17 @@ // // You should have received a copy of the GNU General Public License // along with this program. If not, see . - -namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX + +namespace UniversalEditor.DataFormats.Multimedia.Audio.Waveform.CRI.ADX { /// /// Indicates the version of the ADX codec in use. - /// + /// public enum ADXVersion : byte { ADXVersion3DifferentDecoder = 0x02, ADXVersion3 = 0x03, ADXVersion4 = 0x04, ADXVersion4WithoutLooping = 0x05 - } -} + } +} diff --git a/Plugins/UniversalEditor.Plugins.CRI/UniversalEditor.Plugins.CRI.csproj b/Plugins/UniversalEditor.Plugins.CRI/UniversalEditor.Plugins.CRI.csproj index 1c740189..28bda793 100644 --- a/Plugins/UniversalEditor.Plugins.CRI/UniversalEditor.Plugins.CRI.csproj +++ b/Plugins/UniversalEditor.Plugins.CRI/UniversalEditor.Plugins.CRI.csproj @@ -92,4 +92,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Collaboration/UniversalEditor.Plugins.Collaboration.csproj b/Plugins/UniversalEditor.Plugins.Collaboration/UniversalEditor.Plugins.Collaboration.csproj index 0c1faaee..6d50a693 100644 --- a/Plugins/UniversalEditor.Plugins.Collaboration/UniversalEditor.Plugins.Collaboration.csproj +++ b/Plugins/UniversalEditor.Plugins.Collaboration/UniversalEditor.Plugins.Collaboration.csproj @@ -64,4 +64,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Database/UniversalEditor.Plugins.Database.csproj b/Plugins/UniversalEditor.Plugins.Database/UniversalEditor.Plugins.Database.csproj index d403cc78..9f0b461a 100644 --- a/Plugins/UniversalEditor.Plugins.Database/UniversalEditor.Plugins.Database.csproj +++ b/Plugins/UniversalEditor.Plugins.Database/UniversalEditor.Plugins.Database.csproj @@ -55,4 +55,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Designer/ObjectModels/Designer/Design.cs b/Plugins/UniversalEditor.Plugins.Designer/ObjectModels/Designer/Design.cs index 53170e48..b940ecbf 100644 --- a/Plugins/UniversalEditor.Plugins.Designer/ObjectModels/Designer/Design.cs +++ b/Plugins/UniversalEditor.Plugins.Designer/ObjectModels/Designer/Design.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework.Drawing; namespace UniversalEditor.ObjectModels.Designer diff --git a/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/ARCV/ARCVDataFormat.cs b/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/ARCV/ARCVDataFormat.cs index 83ff71f4..f9aa7a45 100644 --- a/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/ARCV/ARCVDataFormat.cs +++ b/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/ARCV/ARCVDataFormat.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using UniversalEditor.IO; +using UniversalEditor.IO; using UniversalEditor.ObjectModels.FileSystem; namespace UniversalEditor.DataFormats.FileSystem.ARCV diff --git a/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/BPlus/BPlusFileFlags.cs b/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/BPlus/BPlusFileFlags.cs index ec942ce1..9ce13c96 100644 --- a/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/BPlus/BPlusFileFlags.cs +++ b/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/BPlus/BPlusFileFlags.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; namespace UniversalEditor.DataFormats.FileSystem.BPlus { diff --git a/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKAdapterType.cs b/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKAdapterType.cs index 4f5fbabb..7a26ce43 100644 --- a/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKAdapterType.cs +++ b/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKAdapterType.cs @@ -19,16 +19,16 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -namespace UniversalEditor.Plugins.FileSystem.VMware +namespace UniversalEditor.Plugins.FileSystem.VMware { /// /// Indicates the type of adapter associated with a VMware VMDK disk image. - /// + /// public enum VMDKAdapterType { IDE, BusLogic, LSILogic, LegacyESX - } -} + } +} diff --git a/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKCreateType.cs b/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKCreateType.cs index 77ebfe76..d7f9fadc 100644 --- a/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKCreateType.cs +++ b/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKCreateType.cs @@ -19,11 +19,11 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -namespace UniversalEditor.Plugins.FileSystem.VMware +namespace UniversalEditor.Plugins.FileSystem.VMware { /// /// Indicates the type of disk image represented by a VMDK file. - /// + /// public enum VMDKCreateType { monolithicSparse, @@ -38,5 +38,5 @@ namespace UniversalEditor.Plugins.FileSystem.VMware vmfsRawDeviceMap, vmfsPassthroughRawDeviceMap, streamOptimized - } -} + } +} diff --git a/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKDiskGeometry.cs b/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKDiskGeometry.cs index 4bcf79fd..97621b6c 100644 --- a/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKDiskGeometry.cs +++ b/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/VMware/VMDKDiskGeometry.cs @@ -19,15 +19,15 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -namespace UniversalEditor.Plugins.FileSystem.VMware +namespace UniversalEditor.Plugins.FileSystem.VMware { /// /// Describes the cylinders, heads, and sectors for a VMDK disk image. - /// + /// public class VMDKDiskGeometry { public int Cylinders { get; set; } = 0; public int Heads { get; set; } = 0; public int Sectors { get; set; } = 0; - } -} + } +} diff --git a/Plugins/UniversalEditor.Plugins.Genealogy/DataFormats/FamilyTreeMaker/Windows/FTWDataFormat.cs b/Plugins/UniversalEditor.Plugins.Genealogy/DataFormats/FamilyTreeMaker/Windows/FTWDataFormat.cs index b25cd554..9ceeaf94 100644 --- a/Plugins/UniversalEditor.Plugins.Genealogy/DataFormats/FamilyTreeMaker/Windows/FTWDataFormat.cs +++ b/Plugins/UniversalEditor.Plugins.Genealogy/DataFormats/FamilyTreeMaker/Windows/FTWDataFormat.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using UniversalEditor.DataFormats.FileSystem.Microsoft.CompoundDocument; using UniversalEditor.Plugins.Genealogy.ObjectModels.FamilyTree; @@ -19,29 +19,29 @@ namespace UniversalEditor.Plugins.Genealogy.DataFormats.FamilyTreeMaker.Windows FileSystemObjectModel fsom = (objectModels.Pop () as FileSystemObjectModel); - File IND_DB = fsom.Files["IND.DB"]; - File INDGROUPS = fsom.Files["QEDIT0.DB"]; - - if (IND_DB == null) - throw new InvalidDataFormatException("IND.DB not found"); - - INDDBObjectModel objm = IND_DB.GetObjectModel(new INDDBDataFormat()); - - int maxNameLength = 0; + File IND_DB = fsom.Files["IND.DB"]; + File INDGROUPS = fsom.Files["QEDIT0.DB"]; + + if (IND_DB == null) + throw new InvalidDataFormatException("IND.DB not found"); + + INDDBObjectModel objm = IND_DB.GetObjectModel(new INDDBDataFormat()); + + int maxNameLength = 0; foreach (INDDBRecord item in objm.Items) - { + { Console.WriteLine("{0} {1}", item.name.PadRight(40, ' '), item.testdt.ToString()); if (item.name.Length > maxNameLength) maxNameLength = item.name.Length; - } - - Console.WriteLine(); - - INDGROUPSObjectModel objm1 = INDGROUPS.GetObjectModel(new INDGROUPSDataFormat()); - + } + + Console.WriteLine(); + + INDGROUPSObjectModel objm1 = INDGROUPS.GetObjectModel(new INDGROUPSDataFormat()); + foreach (INDGROUPSRecord rec in objm1.Items) - { + { Console.WriteLine("{0}", rec.name); - } + } FamilyTreeObjectModel ft = (objectModels.Pop () as FamilyTreeObjectModel); } diff --git a/Plugins/UniversalEditor.Plugins.MTP/UniversalEditor.Plugins.MTP.csproj b/Plugins/UniversalEditor.Plugins.MTP/UniversalEditor.Plugins.MTP.csproj index 60475460..86e86dee 100644 --- a/Plugins/UniversalEditor.Plugins.MTP/UniversalEditor.Plugins.MTP.csproj +++ b/Plugins/UniversalEditor.Plugins.MTP/UniversalEditor.Plugins.MTP.csproj @@ -59,4 +59,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Microsoft.Xaml/DataFormats/BAML/BAMLDataFormat.cs b/Plugins/UniversalEditor.Plugins.Microsoft.Xaml/DataFormats/BAML/BAMLDataFormat.cs index dd5f7a72..ec0efd65 100644 --- a/Plugins/UniversalEditor.Plugins.Microsoft.Xaml/DataFormats/BAML/BAMLDataFormat.cs +++ b/Plugins/UniversalEditor.Plugins.Microsoft.Xaml/DataFormats/BAML/BAMLDataFormat.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using UniversalEditor; using UniversalEditor.IO; using UniversalEditor.Plugins.Microsoft.Xaml.ObjectModels.XAML; diff --git a/Plugins/UniversalEditor.Plugins.Microsoft.Xaml/UniversalEditor.Plugins.Microsoft.Xaml.csproj b/Plugins/UniversalEditor.Plugins.Microsoft.Xaml/UniversalEditor.Plugins.Microsoft.Xaml.csproj index f3c256d5..0b24e511 100644 --- a/Plugins/UniversalEditor.Plugins.Microsoft.Xaml/UniversalEditor.Plugins.Microsoft.Xaml.csproj +++ b/Plugins/UniversalEditor.Plugins.Microsoft.Xaml/UniversalEditor.Plugins.Microsoft.Xaml.csproj @@ -52,4 +52,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDFeatures.cs b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDFeatures.cs index 4593b352..fe4d732f 100644 --- a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDFeatures.cs +++ b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDFeatures.cs @@ -18,25 +18,25 @@ // // You should have received a copy of the GNU General Public License // along with this program. If not, see . - -namespace UniversalEditor.DataFormats.FileSystem.Microsoft.VirtualHardDisk + +namespace UniversalEditor.DataFormats.FileSystem.Microsoft.VirtualHardDisk { - /// - /// Indicates the special features enabled for the virtual hard disk. - /// - public enum VHDFeatures - { - /// - /// The hard disk image has no special features enabled in it. - /// - None = 0, - /// - /// This bit is set if the current disk is a temporary disk. A temporary disk designation indicates to an application that this disk is a candidate for deletion on shutdown. - /// - Temporary = 1, - /// - /// This bit must always be set to 1. - /// - Reserved = 2 - } -} + /// + /// Indicates the special features enabled for the virtual hard disk. + /// + public enum VHDFeatures + { + /// + /// The hard disk image has no special features enabled in it. + /// + None = 0, + /// + /// This bit is set if the current disk is a temporary disk. A temporary disk designation indicates to an application that this disk is a candidate for deletion on shutdown. + /// + Temporary = 1, + /// + /// This bit must always be set to 1. + /// + Reserved = 2 + } +} diff --git a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskDynamicHeader.cs b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskDynamicHeader.cs index 4bd28f6b..70649a03 100644 --- a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskDynamicHeader.cs +++ b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskDynamicHeader.cs @@ -1,23 +1,23 @@ -// -// VHDHardDiskDynamicHeader.cs - represents the header in a dynamic virtual hard disk -// -// Author: -// Michael Becker -// -// Copyright (c) 2010-2020 Mike Becker's Software -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . +// +// VHDHardDiskDynamicHeader.cs - represents the header in a dynamic virtual hard disk +// +// Author: +// Michael Becker +// +// Copyright (c) 2010-2020 Mike Becker's Software +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . namespace UniversalEditor.DataFormats.FileSystem.Microsoft.VirtualHardDisk { diff --git a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskFooter.cs b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskFooter.cs index 5defd06f..e15db188 100644 --- a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskFooter.cs +++ b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskFooter.cs @@ -1,26 +1,26 @@ -// -// VHDHardDiskFooter.cs - represents the footer in a Microsoft Virtual PC VHD file -// -// Author: -// Michael Becker -// -// Copyright (c) 2010-2020 Mike Becker's Software -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License +// +// VHDHardDiskFooter.cs - represents the footer in a Microsoft Virtual PC VHD file +// +// Author: +// Michael Becker +// +// Copyright (c) 2010-2020 Mike Becker's Software +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License // along with this program. If not, see . namespace UniversalEditor.DataFormats.FileSystem.Microsoft.VirtualHardDisk -{ +{ /// /// Represents the footer in a Microsoft Virtual PC VHD file. /// diff --git a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskGeometry.cs b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskGeometry.cs index dac9db42..89be743f 100644 --- a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskGeometry.cs +++ b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskGeometry.cs @@ -1,26 +1,26 @@ -// -// VHDHardDiskGeometry.cs - describes the geometry of a virtual hard disk in Microsoft Virtual PC VHD format -// -// Author: -// Michael Becker -// -// Copyright (c) 2010-2020 Mike Becker's Software -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . +// +// VHDHardDiskGeometry.cs - describes the geometry of a virtual hard disk in Microsoft Virtual PC VHD format +// +// Author: +// Michael Becker +// +// Copyright (c) 2010-2020 Mike Becker's Software +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . namespace UniversalEditor.DataFormats.FileSystem.Microsoft.VirtualHardDisk -{ +{ /// /// Describes the geometry of a virtual hard disk in Microsoft Virtual PC VHD format. /// diff --git a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskParentLocatorEntry.cs b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskParentLocatorEntry.cs index 47bfb28f..67d439ed 100644 --- a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskParentLocatorEntry.cs +++ b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskParentLocatorEntry.cs @@ -1,26 +1,26 @@ -// -// VHDHardDiskParentLocatorEntry.cs - describes the parent locator entry for a Microsoft Virtual PC VHD virtual hard disk -// -// Author: -// Michael Becker -// -// Copyright (c) 2010-2020 Mike Becker's Software -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . +// +// VHDHardDiskParentLocatorEntry.cs - describes the parent locator entry for a Microsoft Virtual PC VHD virtual hard disk +// +// Author: +// Michael Becker +// +// Copyright (c) 2010-2020 Mike Becker's Software +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . namespace UniversalEditor.DataFormats.FileSystem.Microsoft.VirtualHardDisk -{ +{ /// /// Describes the parent locator entry for a Microsoft Virtual PC VHD virtual hard disk. /// diff --git a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskType.cs b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskType.cs index 8312a770..0033781c 100644 --- a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskType.cs +++ b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/FileSystem/Microsoft/VirtualHardDisk/VHDHardDiskType.cs @@ -19,21 +19,21 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; - -namespace UniversalEditor.DataFormats.FileSystem.Microsoft.VirtualHardDisk +using System; + +namespace UniversalEditor.DataFormats.FileSystem.Microsoft.VirtualHardDisk { - /// - /// Indicates the type of virtual hard disk represented by the VHD file. - /// - public enum VHDHardDiskType - { - None = 0, - Reserved1 = 1, - Fixed = 2, - Dynamic = 3, - Differencing = 4, - Reserved5 = 5, - Reserved6 = 6 - } -} + /// + /// Indicates the type of virtual hard disk represented by the VHD file. + /// + public enum VHDHardDiskType + { + None = 0, + Reserved1 = 1, + Fixed = 2, + Dynamic = 3, + Differencing = 4, + Reserved5 = 5, + Reserved6 = 6 + } +} diff --git a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/PropertyList/Registry/MicrosoftRegistryDataFormat.cs b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/PropertyList/Registry/MicrosoftRegistryDataFormat.cs index 854b0b8e..4001f418 100644 --- a/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/PropertyList/Registry/MicrosoftRegistryDataFormat.cs +++ b/Plugins/UniversalEditor.Plugins.Microsoft/DataFormats/PropertyList/Registry/MicrosoftRegistryDataFormat.cs @@ -19,9 +19,9 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using MBS.Framework; -using UniversalEditor.IO; +using UniversalEditor.IO; using UniversalEditor.ObjectModels.PropertyList; using UniversalEditor.UserInterface; diff --git a/Plugins/UniversalEditor.Plugins.Multimedia/DataFormats/Multimedia/Audio/Synthesized/ExtendedMIDI/XMIDataFormat.cs b/Plugins/UniversalEditor.Plugins.Multimedia/DataFormats/Multimedia/Audio/Synthesized/ExtendedMIDI/XMIDataFormat.cs index d52e9cf9..c2b27d52 100644 --- a/Plugins/UniversalEditor.Plugins.Multimedia/DataFormats/Multimedia/Audio/Synthesized/ExtendedMIDI/XMIDataFormat.cs +++ b/Plugins/UniversalEditor.Plugins.Multimedia/DataFormats/Multimedia/Audio/Synthesized/ExtendedMIDI/XMIDataFormat.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System; +using System; using System.Collections.Generic; using UniversalEditor.Accessors; using UniversalEditor.DataFormats.Chunked.RIFF; diff --git a/Plugins/UniversalEditor.Plugins.Multimedia/ObjectModels/Multimedia/Audio/Synthesized/SynthesizedAudioObjectModel.cs b/Plugins/UniversalEditor.Plugins.Multimedia/ObjectModels/Multimedia/Audio/Synthesized/SynthesizedAudioObjectModel.cs index 72784c03..82e3a37b 100644 --- a/Plugins/UniversalEditor.Plugins.Multimedia/ObjectModels/Multimedia/Audio/Synthesized/SynthesizedAudioObjectModel.cs +++ b/Plugins/UniversalEditor.Plugins.Multimedia/ObjectModels/Multimedia/Audio/Synthesized/SynthesizedAudioObjectModel.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System.Collections.Generic; +using System.Collections.Generic; using UniversalEditor.ObjectModels.Multimedia.Audio.Voicebank; namespace UniversalEditor.ObjectModels.Multimedia.Audio.Synthesized diff --git a/Plugins/UniversalEditor.Plugins.Office/UniversalEditor.Plugins.Office.csproj b/Plugins/UniversalEditor.Plugins.Office/UniversalEditor.Plugins.Office.csproj index 10bf4b32..744d2978 100644 --- a/Plugins/UniversalEditor.Plugins.Office/UniversalEditor.Plugins.Office.csproj +++ b/Plugins/UniversalEditor.Plugins.Office/UniversalEditor.Plugins.Office.csproj @@ -91,4 +91,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Scientific/UniversalEditor.Plugins.Scientific.csproj b/Plugins/UniversalEditor.Plugins.Scientific/UniversalEditor.Plugins.Scientific.csproj index 44d7316c..1b9ad27e 100644 --- a/Plugins/UniversalEditor.Plugins.Scientific/UniversalEditor.Plugins.Scientific.csproj +++ b/Plugins/UniversalEditor.Plugins.Scientific/UniversalEditor.Plugins.Scientific.csproj @@ -58,4 +58,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Sega/UniversalEditor.Plugins.Sega.csproj b/Plugins/UniversalEditor.Plugins.Sega/UniversalEditor.Plugins.Sega.csproj index 205a2585..7e1d32a8 100644 --- a/Plugins/UniversalEditor.Plugins.Sega/UniversalEditor.Plugins.Sega.csproj +++ b/Plugins/UniversalEditor.Plugins.Sega/UniversalEditor.Plugins.Sega.csproj @@ -74,4 +74,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Sony/UniversalEditor.Plugins.Sony.csproj b/Plugins/UniversalEditor.Plugins.Sony/UniversalEditor.Plugins.Sony.csproj index d0074139..0ebbd985 100644 --- a/Plugins/UniversalEditor.Plugins.Sony/UniversalEditor.Plugins.Sony.csproj +++ b/Plugins/UniversalEditor.Plugins.Sony/UniversalEditor.Plugins.Sony.csproj @@ -58,4 +58,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Synalysis/UniversalEditor.Plugins.Synalysis.csproj b/Plugins/UniversalEditor.Plugins.Synalysis/UniversalEditor.Plugins.Synalysis.csproj index a986b2f1..a94ececc 100644 --- a/Plugins/UniversalEditor.Plugins.Synalysis/UniversalEditor.Plugins.Synalysis.csproj +++ b/Plugins/UniversalEditor.Plugins.Synalysis/UniversalEditor.Plugins.Synalysis.csproj @@ -52,4 +52,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Vocaloid/DataFormats/Multimedia/Audio/Synthesized/Vocaloid/VPR/VPRProjectZIPDataFormat.cs b/Plugins/UniversalEditor.Plugins.Vocaloid/DataFormats/Multimedia/Audio/Synthesized/Vocaloid/VPR/VPRProjectZIPDataFormat.cs index e80efc42..e0c7e4eb 100644 --- a/Plugins/UniversalEditor.Plugins.Vocaloid/DataFormats/Multimedia/Audio/Synthesized/Vocaloid/VPR/VPRProjectZIPDataFormat.cs +++ b/Plugins/UniversalEditor.Plugins.Vocaloid/DataFormats/Multimedia/Audio/Synthesized/Vocaloid/VPR/VPRProjectZIPDataFormat.cs @@ -19,7 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -using System.Collections.Generic; +using System.Collections.Generic; using UniversalEditor.Accessors; using UniversalEditor.DataFormats.FileSystem.ZIP; using UniversalEditor.ObjectModels.FileSystem; diff --git a/Plugins/UniversalEditor.Plugins.Vocaloid/UniversalEditor.Plugins.Vocaloid.csproj b/Plugins/UniversalEditor.Plugins.Vocaloid/UniversalEditor.Plugins.Vocaloid.csproj index 657b4c60..4528effb 100644 --- a/Plugins/UniversalEditor.Plugins.Vocaloid/UniversalEditor.Plugins.Vocaloid.csproj +++ b/Plugins/UniversalEditor.Plugins.Vocaloid/UniversalEditor.Plugins.Vocaloid.csproj @@ -82,4 +82,4 @@ - + diff --git a/Plugins/UniversalEditor.Plugins.Webfoot/UniversalEditor.Plugins.Webfoot.csproj b/Plugins/UniversalEditor.Plugins.Webfoot/UniversalEditor.Plugins.Webfoot.csproj index 59a64ead..61448d5b 100644 --- a/Plugins/UniversalEditor.Plugins.Webfoot/UniversalEditor.Plugins.Webfoot.csproj +++ b/Plugins/UniversalEditor.Plugins.Webfoot/UniversalEditor.Plugins.Webfoot.csproj @@ -58,4 +58,4 @@ - + From 82c9d7fed60b64c2bffbba2449daa03f16d61ead Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sat, 15 May 2021 00:38:42 -0400 Subject: [PATCH 8/9] remove .snk from repository --- .gitignore | 1 + UniversalEditor.snk | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 120000 UniversalEditor.snk diff --git a/.gitignore b/.gitignore index 6356fb1c..4ed0e503 100644 --- a/.gitignore +++ b/.gitignore @@ -117,6 +117,7 @@ ClientBin/ *.dbmdl *.[Pp]ublish.xml *.pfx +*.snk *.publishsettings # RIA/Silverlight projects diff --git a/UniversalEditor.snk b/UniversalEditor.snk deleted file mode 120000 index 84b73aa2..00000000 --- a/UniversalEditor.snk +++ /dev/null @@ -1 +0,0 @@ -../Production.snk \ No newline at end of file From 4141b5ea38de78bbb3be9079ad1bcaba82c0ccda Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sat, 15 May 2021 00:42:05 -0400 Subject: [PATCH 9/9] update firstrun.sh to properly link project SNK to global SNK (you must generate your own SNK) --- firstrun.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/firstrun.sh b/firstrun.sh index d5e3d900..e0f98c7c 100755 --- a/firstrun.sh +++ b/firstrun.sh @@ -20,6 +20,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +APPNAME=UniversalEditor WD=$(pwd) # ================ INSTALL PACKAGE DEPENDENCIES FROM OFFICIAL REPOSITORY ================ @@ -89,6 +90,9 @@ cd $WD # install other junk sudo cp MainIcon.png /usr/share/icons/universal-editor.png +# link Production.snk to UniversalEditor.snk +ln -s ../Production.snk $(APPNAME).snk + # start the build msbuild