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 997510b5..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Images/Application_16x16.png and /dev/null differ 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 51bef305..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Adobe/AIR/Images/Application_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/BlankProject.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/BlankProject.uexml deleted file mode 100644 index 934d4501..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/BlankProject.uexml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - 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 730d7ed3..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank.ico and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank_16x16.png deleted file mode 100644 index d09c57a8..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank_32x32.png deleted file mode 100644 index 2d1ae46f..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blank_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink.ico b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink.ico deleted file mode 100644 index 55c84136..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink.ico and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink.xcf b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink.xcf deleted file mode 100644 index 3f53ceec..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink.xcf and /dev/null differ 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 7ee3754f..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink_32x32.png deleted file mode 100644 index f58ca007..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Arduino/Images/Blink_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/C/GTK+ Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/C/GTK+ Application.uexml deleted file mode 100644 index 10799529..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/C/GTK+ Application.uexml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - 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 de8f1178..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Application_16x16.png and /dev/null differ 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 f6eb14be..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Application_32x32.png and /dev/null differ 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 95c0b965..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Blank_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Blank_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Blank_32x32.png deleted file mode 100644 index a568c3b5..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Blank_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/COBOL.xcf b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/COBOL.xcf deleted file mode 100644 index 2500e58c..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/COBOL.xcf and /dev/null differ 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 79aa0dee..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Console_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Console_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Console_32x32.png deleted file mode 100644 index a2524202..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Console_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/ControlLibrary_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/ControlLibrary_16x16.png deleted file mode 100644 index 2c8e7389..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/ControlLibrary_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/ControlLibrary_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/ControlLibrary_32x32.png deleted file mode 100644 index 16e7a05f..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/ControlLibrary_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Database_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Database_16x16.png deleted file mode 100644 index 5cad6bdd..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Database_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Database_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Database_32x32.png deleted file mode 100644 index f264dddd..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Database_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Library_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Library_16x16.png deleted file mode 100644 index 96e13cb2..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Library_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Library_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Library_32x32.png deleted file mode 100644 index 7fb096db..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Library_32x32.png and /dev/null differ 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 bbdb09b0..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Service_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Service_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Service_32x32.png deleted file mode 100644 index 5e3e3cf2..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Service_32x32.png and /dev/null differ 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 e8a90405..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Silverlight_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Silverlight_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Silverlight_32x32.png deleted file mode 100644 index b92614e2..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Images/Silverlight_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Silverlight.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Silverlight.uexml deleted file mode 100644 index 2955f999..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/COBOL/Silverlight.uexml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - 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 a564b626..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application.ico and /dev/null differ 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 468cb640..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application.xcf and /dev/null differ 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 fabb154c..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application_32x32.png deleted file mode 100644 index 3e4512f5..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Application_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank.ico b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank.ico deleted file mode 100644 index 72c88198..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank.ico and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank.xcf b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank.xcf deleted file mode 100644 index 775c8f08..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank.xcf and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank_16x16.png deleted file mode 100644 index e3ae9f48..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank_16x16.png and /dev/null differ 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 c750cda8..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Blank_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console.ico b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console.ico deleted file mode 100644 index 3feea36e..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console.ico and /dev/null differ 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 d9cce98f..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console.xcf and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console_16x16.png deleted file mode 100644 index b67fe08b..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console_16x16.png and /dev/null differ 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 efa049df..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Console_32x32.png and /dev/null differ 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 a69b54f0..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/ControlLibrary_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/ControlLibrary_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/ControlLibrary_32x32.png deleted file mode 100644 index db932b33..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/ControlLibrary_32x32.png and /dev/null differ 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 6695cc4e..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Database_16x16.png and /dev/null differ 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 86bff988..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Database_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library.ico b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library.ico deleted file mode 100644 index c3d9392e..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library.ico and /dev/null differ 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 a9eeac22..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library.xcf and /dev/null differ 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 85ffbc0f..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library_32x32.png deleted file mode 100644 index 471db8b3..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Library_32x32.png and /dev/null differ 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 acceb5a3..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Silverlight_16x16.png and /dev/null differ 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 b42d1231..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Silverlight_32x32.png and /dev/null differ 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 6e282705..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Test_16x16.png and /dev/null differ 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 8449ce8b..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/CSharp/Images/Test_32x32.png and /dev/null differ 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 181e9de3..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Application_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Application_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Application_32x32.png deleted file mode 100644 index 57111d9c..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Application_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Blank_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Blank_16x16.png deleted file mode 100644 index aceb8f7a..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Blank_16x16.png and /dev/null differ 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 a7852adc..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Blank_32x32.png and /dev/null differ 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 4b1352e2..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Console_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Console_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Console_32x32.png deleted file mode 100644 index b25a11ae..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Console_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Library_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Library_16x16.png deleted file mode 100644 index 762f8a84..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Library_16x16.png and /dev/null differ 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 3fc04de0..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Images/Library_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Native Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Native Application.uexml deleted file mode 100644 index 97de955d..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/IronPython/Native Application.uexml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - 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 545e52a8..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Application_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Application_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Application_32x32.png deleted file mode 100644 index 895e071e..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Application_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Blank_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Blank_16x16.png deleted file mode 100644 index aceb8f7a..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Blank_16x16.png and /dev/null differ 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 a7852adc..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Blank_32x32.png and /dev/null differ 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 3a5c1802..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Console_16x16.png and /dev/null differ 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 5bec4ec1..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Console_32x32.png and /dev/null differ 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 26dc2568..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/ControlLibrary_16x16.png and /dev/null differ 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 e0b1b863..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/ControlLibrary_32x32.png and /dev/null differ 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 cd1443f7..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Library_16x16.png and /dev/null differ 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 86925d53..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/JSharp/Images/Library_32x32.png and /dev/null differ 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 154d6603..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Application_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Application_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Application_32x32.png deleted file mode 100644 index b2b6ead2..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Application_32x32.png and /dev/null differ 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 15a293cd..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Blank_16x16.png and /dev/null differ 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 a876cb9c..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Blank_32x32.png and /dev/null differ 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 331aa508..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Console_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Console_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Console_32x32.png deleted file mode 100644 index 62fc681a..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Console_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/ControlLibrary_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/ControlLibrary_16x16.png deleted file mode 100644 index 40ab9c36..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/ControlLibrary_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/ControlLibrary_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/ControlLibrary_32x32.png deleted file mode 100644 index 79fa0c08..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/ControlLibrary_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Database_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Database_16x16.png deleted file mode 100644 index d2e3fb33..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Database_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Database_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Database_32x32.png deleted file mode 100644 index b98c4c30..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Database_32x32.png and /dev/null differ 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 b1afe3db..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Library_16x16.png and /dev/null differ 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 7ba4f2dd..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Library_32x32.png and /dev/null differ 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 115b354a..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Service_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Service_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Service_32x32.png deleted file mode 100644 index 50109927..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Service_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/SliverlightApplication_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/SliverlightApplication_16x16.png deleted file mode 100644 index 1da8aabd..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/SliverlightApplication_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/SliverlightApplication_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/SliverlightApplication_32x32.png deleted file mode 100644 index e5867a30..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/SliverlightApplication_32x32.png and /dev/null differ 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 1c8ac289..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Test_16x16.png and /dev/null differ 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 da289cba..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Images/Test_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Silverlight.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Silverlight.uexml deleted file mode 100644 index 30b75019..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Common Language Runtime/VisualBasic/Silverlight.uexml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - 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 6a073cf9..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/MSOfficeAddin_16x16.png and /dev/null differ 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 2a08b16c..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/MSOfficeAddin_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/UniversalEditorAddin_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/UniversalEditorAddin_16x16.png deleted file mode 100644 index 8c1763c6..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/UniversalEditorAddin_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/UniversalEditorAddin_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/UniversalEditorAddin_32x32.png deleted file mode 100644 index 28af91f3..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Extensibility/Images/UniversalEditorAddin_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Blank Project.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Blank Project.uexml deleted file mode 100644 index 6043a004..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Blank Project.uexml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - 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 9bdcbfdd..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Application_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Application_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Application_32x32.png deleted file mode 100644 index e65503f6..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Application_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Blank_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Blank_16x16.png deleted file mode 100644 index 577b24d5..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Blank_16x16.png and /dev/null differ 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 507c7f93..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Blank_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Console_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Console_16x16.png deleted file mode 100644 index b71b0f08..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Console_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Console_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Console_32x32.png deleted file mode 100644 index a90802ba..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Console_32x32.png and /dev/null differ 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 a3bef0a2..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Library_16x16.png and /dev/null differ 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 9fffa7a2..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Pascal/Images/Library_32x32.png and /dev/null differ 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 264ec15d..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ActiveXApplication_16x16.png and /dev/null differ 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 3b7d4f65..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ActiveXApplication_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Application_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Application_16x16.png deleted file mode 100644 index 1bc639d2..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Application_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Application_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Application_32x32.png deleted file mode 100644 index cd911629..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Application_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/BlankProject_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/BlankProject_16x16.png deleted file mode 100644 index 917028fd..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/BlankProject_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/BlankProject_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/BlankProject_32x32.png deleted file mode 100644 index 38cd2a10..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/BlankProject_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ControlLibrary_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ControlLibrary_16x16.png deleted file mode 100644 index 6fe28d4b..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ControlLibrary_16x16.png and /dev/null differ 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 6d431fb8..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/ControlLibrary_32x32.png and /dev/null differ 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 417f054f..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Library_16x16.png and /dev/null differ 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 56ef8c6c..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Library_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Wizard_16x16.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Wizard_16x16.png deleted file mode 100644 index c5c89847..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Wizard_16x16.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Wizard_32x32.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Wizard_32x32.png deleted file mode 100644 index 12ee0b25..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Images/Wizard_32x32.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Standard Application.uexml b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Standard Application.uexml deleted file mode 100644 index add20c96..00000000 --- a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Templates/Project/SoftwareDevelopment/Visual Basic 6.0/Standard Application.uexml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - 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 7730ebe6..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/ProjectTypes/32x32/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.png and /dev/null differ 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 0425ce8b..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Class Library.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Console Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Console Application.png deleted file mode 100644 index 4681487c..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Console Application.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Empty Project.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Empty Project.png deleted file mode 100644 index 8fa8ae68..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Empty Project.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Server Control.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Server Control.png deleted file mode 100644 index 5048475d..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Server Control.png and /dev/null differ 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 7b0a5d7d..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Application.png and /dev/null differ 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 87d89208..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Browser Application.png and /dev/null differ 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 cc901051..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Custom Control Library.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF User Control Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF User Control Library.png deleted file mode 100644 index cb419c10..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF User Control Library.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Application.png deleted file mode 100644 index 01bec6e9..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Application.png and /dev/null differ 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 f29e94eb..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Site.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Application.png deleted file mode 100644 index 038915d7..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Application.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Control Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Control Library.png deleted file mode 100644 index b7c97b0a..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Control Library.png and /dev/null differ 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 e8af919b..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Service.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Class Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Class Library.png deleted file mode 100644 index 5df70d49..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Class Library.png and /dev/null differ 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 5dfe72be..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Console Application.png and /dev/null differ 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 b7297967..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Empty Project.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Server Control.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Server Control.png deleted file mode 100644 index e598cf2d..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Server Control.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Application.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Application.png deleted file mode 100644 index c8fb61ed..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Application.png and /dev/null differ 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 4ed8dd8b..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Browser Application.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Custom Control Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Custom Control Library.png deleted file mode 100644 index 2a40a174..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Custom Control Library.png and /dev/null differ 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 41d3b243..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF User Control Library.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Web Site.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Web Site.png deleted file mode 100644 index bda8469c..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Web Site.png and /dev/null differ 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 d8271685..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Application.png and /dev/null differ 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 f1fee1f2..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Control Library.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Service.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Service.png deleted file mode 100644 index 6868750a..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Service.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Class Library.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Class Library.png deleted file mode 100644 index bfd48753..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Class Library.png and /dev/null differ 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 8bbc1ea3..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Console Application.png and /dev/null differ 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 4c1bd97e..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Silverlight Library.png and /dev/null differ 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 23841055..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Tutorial.png and /dev/null differ 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 8deda650..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Class Library.png and /dev/null differ 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 1bd8c449..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Console Application.png and /dev/null differ 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 dc3823ad..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Silverlight Library.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Tutorial.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Tutorial.png deleted file mode 100644 index af599f5e..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Tutorial.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Extension.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Extension.png deleted file mode 100644 index 4b9bff4e..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Extension.png and /dev/null differ 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 494ac24f..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/WPF Toolbox Control.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Windows Forms Toolbox Control.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Windows Forms Toolbox Control.png deleted file mode 100644 index 55f80e48..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Windows Forms Toolbox Control.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Extension.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Extension.png deleted file mode 100644 index 0e0c0dc4..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Extension.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/WPF Toolbox Control.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/WPF Toolbox Control.png deleted file mode 100644 index 8269ff78..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/WPF Toolbox Control.png and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Windows Forms Toolbox Control.png b/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Windows Forms Toolbox Control.png deleted file mode 100644 index 567ca16b..00000000 Binary files a/Extensions/UniversalEditor.Extensions.SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Windows Forms Toolbox Control.png and /dev/null differ 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 d96c71b3..00000000 Binary files a/Extensions/UniversalEditor.Extensions.Sony/Templates/Project/SCE.PSM.BasicProject.uetx and /dev/null differ diff --git a/Extensions/UniversalEditor.Extensions.Sony/UniversalEditor.Extensions.Sony.csproj b/Extensions/UniversalEditor.Extensions.Sony/UniversalEditor.Extensions.Sony.csproj deleted file mode 100644 index bec6ac31..00000000 --- a/Extensions/UniversalEditor.Extensions.Sony/UniversalEditor.Extensions.Sony.csproj +++ /dev/null @@ -1,52 +0,0 @@ - - - - - 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}