diff --git a/CSharp/V5/Applications/UniversalEditor.Bootstrapper/App.config b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/App.config
new file mode 100644
index 00000000..3f3aad40
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/App.config
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Program.cs b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Program.cs
new file mode 100644
index 00000000..54866166
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Program.cs
@@ -0,0 +1,51 @@
+using System;
+using System.Collections.Generic;
+using System.Reflection;
+using System.Windows.Forms;
+using UniversalEditor.UserInterface;
+
+namespace UniversalEditor.Bootstrapper
+{
+ static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ try
+ {
+ string path =
+ System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location)
+ + System.IO.Path.DirectorySeparatorChar.ToString()
+ + "UniversalEditor.UserInterface.dll";
+
+ Assembly asm = System.Reflection.Assembly.LoadFile(path);
+ }
+ catch
+ {
+ MessageBox.Show("The file 'UniversalEditor.UserInterface.dll' is required for this software to run, but is either missing or corrupted. Please re-install the software and try again.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ return;
+ }
+
+ // why do we do this? because, if the class was static, it tries to load the 'Engine' type
+ // from another library immediately... if it can't be found, it crashes. this way, if it
+ // can't be found, we can still catch it since it's loaded on-demand rather than
+ // immediately.
+ (new BootstrapperInstance()).Main();
+ }
+
+ private class BootstrapperInstance
+ {
+ public void Main()
+ {
+ if (!Engine.Execute())
+ {
+ MessageBox.Show("No engines are available to launch this application.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ return;
+ }
+ }
+ }
+ }
+}
diff --git a/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/AssemblyInfo.cs b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/AssemblyInfo.cs
new file mode 100644
index 00000000..a4ab2f22
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+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 platform bootstrapper")]
+[assembly: AssemblyDescription("Provides a customizable launcher for applications built on the Universal Editor platform.")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Mike Becker's Software")]
+[assembly: AssemblyProduct("Universal Editor")]
+[assembly: AssemblyCopyright("Copyright ©2014 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("1dadbca9-3758-422e-a7fa-7992be9b2f5c")]
+
+// 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/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Resources.Designer.cs b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Resources.Designer.cs
new file mode 100644
index 00000000..ee4b7225
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Resources.Designer.cs
@@ -0,0 +1,63 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.34209
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace UniversalEditor.Bootstrapper.Properties {
+ using System;
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("UniversalEditor.Bootstrapper.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Resources.resources b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Resources.resources
new file mode 100644
index 00000000..06c24d06
Binary files /dev/null and b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Resources.resources differ
diff --git a/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Resources.resx b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Resources.resx
new file mode 100644
index 00000000..af7dbebb
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Settings.Designer.cs b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Settings.Designer.cs
new file mode 100644
index 00000000..f2649176
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Settings.Designer.cs
@@ -0,0 +1,26 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.34209
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace UniversalEditor.Bootstrapper.Properties {
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default {
+ get {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Settings.settings b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Settings.settings
new file mode 100644
index 00000000..39645652
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/CSharp/V5/Applications/UniversalEditor.Bootstrapper/UniversalEditor.Bootstrapper.csproj b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/UniversalEditor.Bootstrapper.csproj
new file mode 100644
index 00000000..eebbe8cc
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/UniversalEditor.Bootstrapper.csproj
@@ -0,0 +1,95 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {6F0AB1AF-E1A1-4D19-B19C-05BBB15C94B2}
+ WinExe
+ Properties
+ UniversalEditor.Bootstrapper
+ UniversalEditor
+ v4.0
+ 512
+ 10.0.0
+ 2.0
+
+
+
+ x86
+ true
+ full
+ false
+ ..\..\Output\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ ..\..\Output\Release\
+ TRACE
+ prompt
+ 4
+
+
+ metro-mainicon.ico
+
+
+
+
+
+
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+ Designer
+
+
+ True
+ Resources.resx
+ True
+
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+ True
+ Settings.settings
+ True
+
+
+
+
+
+
+
+ {2D4737E6-6D95-408A-90DB-8DFF38147E85}
+ UniversalEditor.Core
+
+
+ {8622EBC4-8E20-476E-B284-33D472081F5C}
+ UniversalEditor.UserInterface
+
+
+ {30467E5C-05BC-4856-AADC-13906EF4CADD}
+ UniversalEditor.Essential
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Applications/UniversalEditor.Bootstrapper/metro-mainicon.ico b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/metro-mainicon.ico
new file mode 100644
index 00000000..ac002299
Binary files /dev/null and b/CSharp/V5/Applications/UniversalEditor.Bootstrapper/metro-mainicon.ico differ
diff --git a/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/App.config b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/App.config
new file mode 100644
index 00000000..3f3aad40
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/App.config
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/Program.cs b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/Program.cs
new file mode 100644
index 00000000..0723419a
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/Program.cs
@@ -0,0 +1,33 @@
+using System;
+using System.Collections.Generic;
+using System.Reflection;
+using UniversalEditor.UserInterface;
+
+namespace UniversalEditor.ConsoleBootstrapper
+{
+ class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ if (!Engine.Execute())
+ {
+ ConsoleColor oldcolor = Console.ForegroundColor;
+ Console.ForegroundColor = ConsoleColor.Red;
+ Console.WriteLine("ERROR: No engines are available to launch this application.");
+ Console.ForegroundColor = oldcolor;
+
+ Pause();
+ }
+ }
+
+ private static void Pause()
+ {
+ Console.Write("Press any key to continue . . . ");
+ Console.ReadKey(true);
+ }
+ }
+}
diff --git a/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/Properties/AssemblyInfo.cs b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/Properties/AssemblyInfo.cs
new file mode 100644
index 00000000..a314c97f
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+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 platform bootstrapper (console)")]
+[assembly: AssemblyDescription("Provides a customizable launcher with a debug console for applications built on the Universal Editor platform.")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Mike Becker's Software")]
+[assembly: AssemblyProduct("Universal Editor")]
+[assembly: AssemblyCopyright("Copyright ©2014 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("78501f14-ac94-478c-913c-b325e8d5f438")]
+
+// 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/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/UniversalEditor.ConsoleBootstrapper.csproj b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/UniversalEditor.ConsoleBootstrapper.csproj
new file mode 100644
index 00000000..1c2732d7
--- /dev/null
+++ b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/UniversalEditor.ConsoleBootstrapper.csproj
@@ -0,0 +1,73 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {62CFC025-B8CF-42AA-880A-92F27377FCAF}
+ Exe
+ Properties
+ UniversalEditor.ConsoleBootstrapper
+ UniversalEditorConsole
+ v4.0
+ 512
+ 10.0.0
+ 2.0
+
+
+
+ AnyCPU
+ true
+ full
+ false
+ ..\..\Output\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ ..\..\Output\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {2D4737E6-6D95-408A-90DB-8DFF38147E85}
+ UniversalEditor.Core
+
+
+ {8622EBC4-8E20-476E-B284-33D472081F5C}
+ UniversalEditor.UserInterface
+
+
+ {30467E5C-05BC-4856-AADC-13906EF4CADD}
+ UniversalEditor.Essential
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/console.ico b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/console.ico
new file mode 100644
index 00000000..b557fa77
Binary files /dev/null and b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/console.ico differ
diff --git a/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/console.png b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/console.png
new file mode 100644
index 00000000..de173f18
Binary files /dev/null and b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/console.png differ
diff --git a/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/metro-mainicon.ico b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/metro-mainicon.ico
new file mode 100644
index 00000000..ac002299
Binary files /dev/null and b/CSharp/V5/Applications/UniversalEditor.ConsoleBootstrapper/metro-mainicon.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Chunked.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Chunked.xml
new file mode 100644
index 00000000..38eee6c0
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Chunked.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+ *.riff
+
+
+
+ RIFF
+
+
+ RIFX
+
+
+ FORM
+
+
+ LIST
+
+
+ CAT
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/DataLink.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/DataLink.xml
new file mode 100644
index 00000000..6ebb7d14
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/DataLink.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+ *.udl
+
+
+
+ [oledb]
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Executable.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Executable.xml
new file mode 100644
index 00000000..64fccdec
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Executable.xml
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+ *.exe
+ *.com
+ *.dll
+ *.rll
+ *.fon
+ *.olb
+ *.tlb
+
+
+
+ MZ
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.axf
+ *.bin
+ *.elf
+ *.o
+ *.prx
+ *.puff
+ *.so
+
+
+
+ 7F
+ ELF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.dylib
+ *.bundle
+
+
+
+
+ FEEDFACE
+
+
+
+ CEFAEDFE
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/FileSystem.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/FileSystem.xml
new file mode 100644
index 00000000..9c91a5d2
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/FileSystem.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.uxt
+
+
+
+ Universal Editor extension file
+ 00
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/FormattedText.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/FormattedText.xml
new file mode 100644
index 00000000..0a42ef1f
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/FormattedText.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.xps
+ *.oxps
+
+
+
+ 1A45DFA3
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Markup.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Markup.xml
new file mode 100644
index 00000000..8dccaab1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Markup.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+ *.ebml
+
+
+
+ 1A45DFA3
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.xml
+
+
+
+ <?xml
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/PropertyList.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/PropertyList.xml
new file mode 100644
index 00000000..a80b42a3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/PropertyList.xml
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+ *.ini
+ *.inf
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.vcs
+ *.ics
+ *.vcf
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.inix
+ *.xni
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.tpl
+
+
+
+ #TPL-1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.upl
+
+
+
+ UPLF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.cfg
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/SecurityCertificate.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/SecurityCertificate.xml
new file mode 100644
index 00000000..287c4ebe
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/SecurityCertificate.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+ *.cer
+ *.der
+ *.p7b
+
+
+
+ 3082
+
+
+
+
+
+ *.cer
+ *.der
+ *.p7b
+
+
+
+ -----BEGIN CERTIFICATE-----\r\n
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Shortcut.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Shortcut.xml
new file mode 100644
index 00000000..002965e3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Associations/Shortcut.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+ *.desktop
+ *.directory
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.lnk
+
+
+
+ 4C000000
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Branding/MainIcon.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Branding/MainIcon.ico
new file mode 100644
index 00000000..cae06de0
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Branding/MainIcon.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Branding/SplashScreen.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Branding/SplashScreen.png
new file mode 100644
index 00000000..a82b6b38
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Branding/SplashScreen.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/Application.upl b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/Application.upl
new file mode 100644
index 00000000..1e09ee88
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/Application.upl differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/Application.xml
new file mode 100644
index 00000000..fce61a2a
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/Application.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+ C:\Temp\UETEST\uetest.farc
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/CommandBars.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/CommandBars.xml
new file mode 100644
index 00000000..8e2e7703
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/CommandBars.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/Commands.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/Commands.xml
new file mode 100644
index 00000000..16ea1f17
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/Commands.xml
@@ -0,0 +1,354 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/MainMenu.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/MainMenu.xml
new file mode 100644
index 00000000..5275d841
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/MainMenu.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/ObjectModels.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/ObjectModels.xml
new file mode 100644
index 00000000..2f96c0e7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/ObjectModels.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/SplashScreen.upl b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/SplashScreen.upl
new file mode 100644
index 00000000..9d7f7552
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/SplashScreen.upl differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/StartPage.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/StartPage.xml
new file mode 100644
index 00000000..6aeb42df
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Configuration/StartPage.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/Commands/mnuDebugBreak.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/Commands/mnuDebugBreak.png
new file mode 100644
index 00000000..abf9e61a
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/Commands/mnuDebugBreak.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/Commands/mnuDebugStart.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/Commands/mnuDebugStart.png
new file mode 100644
index 00000000..2bbad8af
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/Commands/mnuDebugStart.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/Commands/mnuDebugStop.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/Commands/mnuDebugStop.png
new file mode 100644
index 00000000..1d3c06ea
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/Commands/mnuDebugStop.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandAffect.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandAffect.png
new file mode 100644
index 00000000..9d6463fb
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandAffect.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandCamera.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandCamera.png
new file mode 100644
index 00000000..2aa00737
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandCamera.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandControlFlowDo.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandControlFlowDo.png
new file mode 100644
index 00000000..9a897e38
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandControlFlowDo.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandControlFlowDoWait.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandControlFlowDoWait.png
new file mode 100644
index 00000000..31e4f7ef
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandControlFlowDoWait.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandControlFlowWait.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandControlFlowWait.png
new file mode 100644
index 00000000..0bb5ccf4
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandControlFlowWait.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandDeclare.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandDeclare.png
new file mode 100644
index 00000000..a79a3934
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandDeclare.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandElse.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandElse.png
new file mode 100644
index 00000000..f336f074
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandElse.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandFlush.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandFlush.png
new file mode 100644
index 00000000..cd2d1b67
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandFlush.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandFree.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandFree.png
new file mode 100644
index 00000000..a79a3934
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandFree.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandIf.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandIf.png
new file mode 100644
index 00000000..f336f074
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandIf.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandKill.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandKill.png
new file mode 100644
index 00000000..a79a3934
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandKill.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandLoop.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandLoop.png
new file mode 100644
index 00000000..e53ce696
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandLoop.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandMove.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandMove.png
new file mode 100644
index 00000000..baf1e96a
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandMove.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandPlay.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandPlay.png
new file mode 100644
index 00000000..a79a3934
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandPlay.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandPrint.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandPrint.png
new file mode 100644
index 00000000..a79a3934
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandPrint.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRem.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRem.png
new file mode 100644
index 00000000..a79a3934
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRem.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRemove.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRemove.png
new file mode 100644
index 00000000..1cdad78e
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRemove.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRotate.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRotate.png
new file mode 100644
index 00000000..b85acd4f
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRotate.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRun.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRun.png
new file mode 100644
index 00000000..a79a3934
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandRun.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandSet.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandSet.png
new file mode 100644
index 00000000..6951b65f
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandSet.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandSignal.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandSignal.png
new file mode 100644
index 00000000..2ef94ff2
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandSignal.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandSound.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandSound.png
new file mode 100644
index 00000000..ef38926a
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandSound.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandTask.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandTask.png
new file mode 100644
index 00000000..9d6463fb
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandTask.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandTemplate.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandTemplate.png
new file mode 100644
index 00000000..e68c9037
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandTemplate.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandUse.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandUse.png
new file mode 100644
index 00000000..a79a3934
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandUse.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandWait.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandWait.png
new file mode 100644
index 00000000..0e3978b5
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandWait.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandWaitSignal.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandWaitSignal.png
new file mode 100644
index 00000000..acabd03d
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Icarus.IcarusScriptEditor/Images/ImageList/16x16/IcarusCommandWaitSignal.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Attribute.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Attribute.png
new file mode 100644
index 00000000..913bfaaf
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Attribute.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Comment.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Comment.png
new file mode 100644
index 00000000..fefd63cf
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Comment.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Entity.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Entity.png
new file mode 100644
index 00000000..3d673c25
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Entity.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Preprocessor.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Preprocessor.png
new file mode 100644
index 00000000..641badd9
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Preprocessor.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Tag.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Tag.png
new file mode 100644
index 00000000..7b21ac67
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.MarkupEditor/Images/Tag.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/16x16/Message.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/16x16/Message.png
new file mode 100644
index 00000000..0e94ffdb
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/16x16/Message.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/16x16/Service.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/16x16/Service.png
new file mode 100644
index 00000000..1abfe1af
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/16x16/Service.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/32x32/Message.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/32x32/Message.png
new file mode 100644
index 00000000..4fa1b573
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/32x32/Message.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/32x32/Service.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/32x32/Service.png
new file mode 100644
index 00000000..9c3dd091
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.Editors.Web.WebService.Description.WebServiceDescriptionEditor/Images/ImageList/32x32/Service.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.UserInterface.WindowsForms.Editors.FileSystemEditor/Commands.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.UserInterface.WindowsForms.Editors.FileSystemEditor/Commands.xml
new file mode 100644
index 00000000..eef9b20e
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.UserInterface.WindowsForms.Editors.FileSystemEditor/Commands.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.UserInterface.WindowsForms.Editors.FileSystemEditor/KeyBindings.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.UserInterface.WindowsForms.Editors.FileSystemEditor/KeyBindings.xml
new file mode 100644
index 00000000..d5c99637
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Editors/UniversalEditor.UserInterface.WindowsForms.Editors.FileSystemEditor/KeyBindings.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AddressBook/Associations/Contact.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AddressBook/Associations/Contact.xml
new file mode 100644
index 00000000..80592915
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AddressBook/Associations/Contact.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+ *.contact
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.vcf
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Concert/AniMikuConcert.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Concert/AniMikuConcert.xml
new file mode 100644
index 00000000..64d8c9d0
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Concert/AniMikuConcert.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.amp
+
+
+ AMPV2\r\n
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/FileSystem/AniMikuTexturePackage.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/FileSystem/AniMikuTexturePackage.xml
new file mode 100644
index 00000000..384d7731
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/FileSystem/AniMikuTexturePackage.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.amt
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Model/AniMikuPMD.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Model/AniMikuPMD.xml
new file mode 100644
index 00000000..7cc9c419
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Model/AniMikuPMD.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.apmd
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Model/InivisAC3D.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Model/InivisAC3D.xml
new file mode 100644
index 00000000..bd73b99d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Model/InivisAC3D.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.ac
+
+
+
+ AC3Db
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Model/Super6.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Model/Super6.xml
new file mode 100644
index 00000000..4b3d20ec
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Model/Super6.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.6kt
+
+
+
+ FFFFFF9B
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Motion/AniMikuMotion.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Motion/AniMikuMotion.xml
new file mode 100644
index 00000000..9b8df35d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AniMiku/Associations/Motion/AniMikuMotion.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.amd
+
+
+
+ amd
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/ASX.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/ASX.xml
new file mode 100644
index 00000000..0ac3da22
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/ASX.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.asx
+
+
+
+ <?xml
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/CompactDisc.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/CompactDisc.xml
new file mode 100644
index 00000000..cec5f77b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/CompactDisc.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ *.cda
+
+
+
+ RIFF
+
+ CDDA
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/HTML.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/HTML.xml
new file mode 100644
index 00000000..9ff3b3d7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/HTML.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.html
+
+
+
+ <?xml
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/M3U.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/M3U.xml
new file mode 100644
index 00000000..dcc2f79f
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/M3U.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.m3u
+ *.m3u8
+
+
+
+ #EXTM3U
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/Notepad++.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/Notepad++.xml
new file mode 100644
index 00000000..cc448559
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/Notepad++.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ session.xml
+
+
+
+ <?xml
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/PLS.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/PLS.xml
new file mode 100644
index 00000000..61279f97
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/PLS.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.pls
+
+
+
+ [playlist
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/SMIL.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/SMIL.xml
new file mode 100644
index 00000000..b0f7bf23
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/SMIL.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.wpl
+ *.zpl
+ *.smil
+
+
+
+ <?xml
+ <?zpl
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/XSPF.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/XSPF.xml
new file mode 100644
index 00000000..f254d340
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Playlist/XSPF.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.xspf
+
+
+
+ <?xml
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Project/LMMS.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Project/LMMS.xml
new file mode 100644
index 00000000..d04aa6e2
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Project/LMMS.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+ *.mmp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.mmpz
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/MIDI.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/MIDI.xml
new file mode 100644
index 00000000..c8909a76
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/MIDI.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.mid
+ *.midi
+
+
+
+ MThd
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/MusicXML.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/MusicXML.xml
new file mode 100644
index 00000000..349b9eae
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/MusicXML.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.mxl
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/NIFF.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/NIFF.xml
new file mode 100644
index 00000000..947df917
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/NIFF.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ *.nif
+
+
+
+ RIFX
+
+ NIFF
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/UST.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/UST.xml
new file mode 100644
index 00000000..eff0ec76
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/UST.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.ust
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/Vocaloid.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/Vocaloid.xml
new file mode 100644
index 00000000..f992f3a0
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/Vocaloid.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+ *.vsq
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.vsqx
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/XMI.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/XMI.xml
new file mode 100644
index 00000000..2104d4c4
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/SynthesizedAudio/XMI.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ *.xmi
+
+
+
+ FORM
+
+ XDIRINFO
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Voicebank/DirectWave.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Voicebank/DirectWave.xml
new file mode 100644
index 00000000..a4be2280
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Voicebank/DirectWave.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.dwp
+
+
+
+ DwPr
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Voicebank/Vocaloid.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Voicebank/Vocaloid.xml
new file mode 100644
index 00000000..dd9bbdb3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/Voicebank/Vocaloid.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+ *.ddb
+
+
+
+ F-
+ 0000
+
+
+ FRM2
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/VoicebankIndex/Vocaloid.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/VoicebankIndex/Vocaloid.xml
new file mode 100644
index 00000000..9d195e85
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/VoicebankIndex/Vocaloid.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.ddi
+
+
+
+
+ DBSe
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/AdvancedAudioCodec.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/AdvancedAudioCodec.xml
new file mode 100644
index 00000000..83a0afa4
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/AdvancedAudioCodec.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.aac
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/FLAC.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/FLAC.xml
new file mode 100644
index 00000000..468674c4
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/FLAC.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.flac
+
+
+
+ 102
+ 76
+ 97
+ 67
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MPEG2Layer3.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MPEG2Layer3.xml
new file mode 100644
index 00000000..efa850d1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MPEG2Layer3.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ *.mp3
+
+
+
+ 73
+ 68
+ 51
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MPEG4Part14.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MPEG4Part14.xml
new file mode 100644
index 00000000..2a7993d8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MPEG4Part14.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+ *.mp4
+ *.m4a
+ *.m4p
+ *.m4b
+ *.m4r
+ *.m4v
+
+
+
+ 00000018
+ ftypmp42
+
+
+ 00000014
+ ftypisom
+
+
+ 0000001C
+ ftypmp42
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MicrosoftWave.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MicrosoftWave.xml
new file mode 100644
index 00000000..eb9f8921
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MicrosoftWave.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+ *.wav
+ *.wave
+
+
+
+ RIFF
+
+ WAVEfmt
+
+
+
+
+
+ *.at3
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MonkeysAudio.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MonkeysAudio.xml
new file mode 100644
index 00000000..cba20ba6
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/MonkeysAudio.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+ *.ape
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.apl
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/Ogg.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/Ogg.xml
new file mode 100644
index 00000000..a7c96478
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/Ogg.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+ *.ogg
+ *.ogm
+ *.oga
+ *.ogv
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/PropellerheadRecycle.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/PropellerheadRecycle.xml
new file mode 100644
index 00000000..9fa0d3f7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/PropellerheadRecycle.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.rex
+ *.rx2
+
+
+
+ RIFF
+
+ REX2
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/RealAudio.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/RealAudio.xml
new file mode 100644
index 00000000..6a429946
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/RealAudio.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.ra
+
+
+
+ 2E7261FD
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/ShortenAudio.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/ShortenAudio.xml
new file mode 100644
index 00000000..a55866f6
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/ShortenAudio.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.shn
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/SunAU.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/SunAU.xml
new file mode 100644
index 00000000..687491e7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/SunAU.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.au
+
+
+
+ .snd
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/WavPack.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/WavPack.xml
new file mode 100644
index 00000000..e78b2502
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/AudioWorkstation/Associations/WaveformAudio/WavPack.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.wv
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Caltron/Associations/TextureFont/TextureFont.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Caltron/Associations/TextureFont/TextureFont.xml
new file mode 100644
index 00000000..f3c86712
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Caltron/Associations/TextureFont/TextureFont.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.txf
+
+
+
+ GLTEXFNT
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Concertroid/Associations/Concert/Concert.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Concertroid/Associations/Concert/Concert.xml
new file mode 100644
index 00000000..80e0e32c
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Concertroid/Associations/Concert/Concert.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+ *.concert
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.cvb
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Concertroid/Associations/Library/LibraryXML.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Concertroid/Associations/Library/LibraryXML.xml
new file mode 100644
index 00000000..c8a0cbd3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Concertroid/Associations/Library/LibraryXML.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.library
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Concertroid/Associations/Model/ConcertroidMDL.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Concertroid/Associations/Model/ConcertroidMDL.xml
new file mode 100644
index 00000000..68da8745
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Concertroid/Associations/Model/ConcertroidMDL.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.mdl
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/DatabaseAdministrator/Themes/VisualStudio2012/Images/Templates/Project/Database Administrator/16x16/Database Project.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/DatabaseAdministrator/Themes/VisualStudio2012/Images/Templates/Project/Database Administrator/16x16/Database Project.png
new file mode 100644
index 00000000..3d6b0a15
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/DatabaseAdministrator/Themes/VisualStudio2012/Images/Templates/Project/Database Administrator/16x16/Database Project.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/DatabaseAdministrator/Themes/VisualStudio2012/Images/Templates/Project/Database Administrator/32x32/Database Project.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/DatabaseAdministrator/Themes/VisualStudio2012/Images/Templates/Project/Database Administrator/32x32/Database Project.png
new file mode 100644
index 00000000..a4741c3c
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/DatabaseAdministrator/Themes/VisualStudio2012/Images/Templates/Project/Database Administrator/32x32/Database Project.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/7Zip.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/7Zip.xml
new file mode 100644
index 00000000..c4c5cfdd
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/7Zip.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.7z
+
+
+
+ 7z
+ BCAF271C
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ALTools.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ALTools.xml
new file mode 100644
index 00000000..c81aed46
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ALTools.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+ *.egg
+
+
+
+ EGGA
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.alz
+
+
+
+ ALZ
+ 01
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/AR.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/AR.xml
new file mode 100644
index 00000000..fcbb359e
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/AR.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.ar
+ *.deb
+
+
+
+ !<arch>
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ARC.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ARC.xml
new file mode 100644
index 00000000..39fc3946
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ARC.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.arc
+
+
+
+ 1A
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ARJ.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ARJ.xml
new file mode 100644
index 00000000..c0837eca
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ARJ.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.arj
+
+
+
+ 60EA
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Apple/HFS/HFSDataFormat.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Apple/HFS/HFSDataFormat.xml
new file mode 100644
index 00000000..4ea05f0b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Apple/HFS/HFSDataFormat.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.hfs
+ *.hfv
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Archive.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Archive.xml
new file mode 100644
index 00000000..2f6352d4
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Archive.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/BPlus.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/BPlus.xml
new file mode 100644
index 00000000..759243e1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/BPlus.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+ 3F5F0300
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/BinHex.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/BinHex.xml
new file mode 100644
index 00000000..967a8940
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/BinHex.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.hqx
+
+
+
+ (This file must be converted with BinHex
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/CFL.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/CFL.xml
new file mode 100644
index 00000000..3affa1be
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/CFL.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.cfl
+
+
+
+ CFL3
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/CPIO.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/CPIO.xml
new file mode 100644
index 00000000..807762a0
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/CPIO.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+ *.cpio
+
+
+
+ C771
+
+
+ 71C7
+
+
+ 070701
+
+
+ 070702
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/FAT.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/FAT.xml
new file mode 100644
index 00000000..94a85405
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/FAT.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+ *.fat
+ *.fat16
+ *.fat32
+
+
+
+
+ IBM 3.3
+ MSDOS5.0
+ MSWIN4.1
+ IBM 7.1
+ mkdosfs
+ FreeDOS
+ (lesTHIC
+ WINIMAGE
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ISO9660.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ISO9660.xml
new file mode 100644
index 00000000..39e88d80
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ISO9660.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.iso
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/IZArc.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/IZArc.xml
new file mode 100644
index 00000000..a68f468f
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/IZArc.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+ *.bza
+ *.gza
+
+
+
+ \0\0\0\0BZ2\0
+
+
+ \0\0\0\0GZIP
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/InstallShield/Cabinet.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/InstallShield/Cabinet.xml
new file mode 100644
index 00000000..4f7a15f6
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/InstallShield/Cabinet.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+ *.cab
+
+
+
+ ISc(
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.hdr
+
+
+
+ ISc(
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/InstallShield/Z.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/InstallShield/Z.xml
new file mode 100644
index 00000000..6a0ab550
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/InstallShield/Z.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.z
+
+
+
+ 135D658C3A010200
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/LHA.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/LHA.xml
new file mode 100644
index 00000000..b3c66cbe
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/LHA.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.lha
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/Cabinet.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/Cabinet.xml
new file mode 100644
index 00000000..fedf314a
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/Cabinet.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.cab
+
+
+
+ MSCF
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/CompoundDocument.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/CompoundDocument.xml
new file mode 100644
index 00000000..562f24d3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/CompoundDocument.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.cbf
+
+
+
+ D0CF11E0A1B11AE1
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/MSCompressed.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/MSCompressed.xml
new file mode 100644
index 00000000..467018ba
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/MSCompressed.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+ *.??_
+
+
+
+ KWAJ
+ 88F027D1
+
+
+ SZDD
+ 88F02733
+
+
+ SZ
+ 88F02733D1
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/WindowsImage.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/WindowsImage.xml
new file mode 100644
index 00000000..a598b6aa
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/Microsoft/WindowsImage.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.wim
+ *.swm
+
+
+
+ MSWIM
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/NeroDiscImage.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/NeroDiscImage.xml
new file mode 100644
index 00000000..0ee170c1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/NeroDiscImage.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.nrb
+ *.nri
+ *.nrg
+
+
+
+ 0E
+ NeroISO0.02.03
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/PKZip.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/PKZip.xml
new file mode 100644
index 00000000..2d07a1b8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/PKZip.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+ *.zip
+ *.zipx
+ *.zipfs
+ *.pk3
+ *.pk4
+ *.scs
+ *.xpi
+ *.maff
+ *.lwtp
+ *.fwtp
+
+
+
+ PK
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/REEVEsoft.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/REEVEsoft.xml
new file mode 100644
index 00000000..bf611d82
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/REEVEsoft.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.ice
+
+
+
+ FR
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/SPIS.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/SPIS.xml
new file mode 100644
index 00000000..0b012eb0
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/SPIS.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.dsk
+
+
+
+ SPIS
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/StudioALCE.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/StudioALCE.xml
new file mode 100644
index 00000000..6e1237b1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/StudioALCE.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.box
+
+
+
+ BOX FILE
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/StuffIt.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/StuffIt.xml
new file mode 100644
index 00000000..805199f3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/StuffIt.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.sit
+
+
+
+ StuffIt (c)1997-2001 Aladdin Systems, Inc., http://www.aladdinsys.com/StuffIt/\r\n
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/TapeArchive.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/TapeArchive.xml
new file mode 100644
index 00000000..1a37cc3b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/TapeArchive.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+ *.tar
+ *.tar.gz
+ *.tgz
+ *.tar.bz2
+ *.tbz2
+ *.tb2
+ *.taz
+ *.tar.z
+ *.tlz
+ *.tar.lz
+ *.txz
+ *.tar.xz
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/UUEncoding.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/UUEncoding.xml
new file mode 100644
index 00000000..67f68111
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/UUEncoding.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.uue
+
+
+
+ begin
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/WinACE.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/WinACE.xml
new file mode 100644
index 00000000..8d36d544
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/WinACE.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.ace
+
+
+
+
+ **ACE**
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/WinRAR.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/WinRAR.xml
new file mode 100644
index 00000000..b2e124bf
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/WinRAR.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.rar
+
+
+
+ Rar!
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/YamazakiZipper.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/YamazakiZipper.xml
new file mode 100644
index 00000000..feba5222
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/YamazakiZipper.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.yz1
+
+
+
+ yz010600
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ZipTVBlakHole.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ZipTVBlakHole.xml
new file mode 100644
index 00000000..57162e4c
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/FileSystem/Associations/ZipTVBlakHole.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.bh
+
+
+
+ BH
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/AudioCollection/Synthesized/SPC2.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/AudioCollection/Synthesized/SPC2.xml
new file mode 100644
index 00000000..0f1b2889
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/AudioCollection/Synthesized/SPC2.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.kspc
+
+
+
+ KXPC
+ 1A
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Cyberlore/Cyberlore.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Cyberlore/Cyberlore.xml
new file mode 100644
index 00000000..c6881788
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Cyberlore/Cyberlore.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+ *.cam
+
+
+
+ CYLBPC
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.pict
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Descent.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Descent.xml
new file mode 100644
index 00000000..f955a814
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Descent.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+ *.hog
+
+
+
+ DHF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.txb
+ *.ctb
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/187RideOrDie.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/187RideOrDie.xml
new file mode 100644
index 00000000..e24c442a
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/187RideOrDie.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.mfd
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/2NBFPCK.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/2NBFPCK.xml
new file mode 100644
index 00000000..fdc4db50
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/2NBFPCK.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.pck
+
+
+
+ 2NBF
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Abomination.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Abomination.xml
new file mode 100644
index 00000000..7c9a4852
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Abomination.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+ *.awf
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.clt
+
+
+
+ AWAD
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/AlienNationsGD.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/AlienNationsGD.xml
new file mode 100644
index 00000000..338360e0
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/AlienNationsGD.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.gd
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/AquarnoidGOB.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/AquarnoidGOB.xml
new file mode 100644
index 00000000..e77d2ca7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/AquarnoidGOB.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.gob
+
+
+
+ GOB\0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Arcanum.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Arcanum.xml
new file mode 100644
index 00000000..7a06730c
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Arcanum.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.dat
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/BurikoGeneralInterpreter.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/BurikoGeneralInterpreter.xml
new file mode 100644
index 00000000..02dc7008
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/BurikoGeneralInterpreter.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+ *.hvl
+
+
+
+ BHV_____\0\0\0\0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.arc
+
+
+
+ PackFile
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/ChaosWorksEngine.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/ChaosWorksEngine.xml
new file mode 100644
index 00000000..200db86b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/ChaosWorksEngine.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.vol
+
+
+
+ 02420243
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/CompressedHunks.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/CompressedHunks.xml
new file mode 100644
index 00000000..cf38c8f4
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/CompressedHunks.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.chd
+
+
+
+ MComprHD
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/DoomWAD.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/DoomWAD.xml
new file mode 100644
index 00000000..0bf63778
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/DoomWAD.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.wad
+
+
+
+ IWAD
+
+
+ PWAD
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/DreamfallPAK.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/DreamfallPAK.xml
new file mode 100644
index 00000000..7f03d522
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/DreamfallPAK.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.pak
+
+
+
+ tlj_pack0001
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/DynamixStarsiegeVOL.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/DynamixStarsiegeVOL.xml
new file mode 100644
index 00000000..24a8bb04
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/DynamixStarsiegeVOL.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.vol
+
+
+
+ PVOL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Eighting.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Eighting.xml
new file mode 100644
index 00000000..81ad6a6c
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Eighting.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.fpk
+
+
+
+ xJ\0\0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/ElectronicArtsBIGF.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/ElectronicArtsBIGF.xml
new file mode 100644
index 00000000..ae7834a2
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/ElectronicArtsBIGF.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+ *.abg
+ *.ama
+ *.big
+ *.dua
+ *.fra
+ *.gea
+ *.poa
+ *.spa
+ *.swa
+ *.uka
+ *.hog
+ *.viv"
+
+
+
+ BIGF
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/FMODSoundBank.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/FMODSoundBank.xml
new file mode 100644
index 00000000..7ae672f2
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/FMODSoundBank.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.fsb
+
+
+
+ FSB3
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GainaxLBX.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GainaxLBX.xml
new file mode 100644
index 00000000..493230aa
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GainaxLBX.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.lbx
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GameProgrammersWiki.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GameProgrammersWiki.xml
new file mode 100644
index 00000000..27ce81fe
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GameProgrammersWiki.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ *.gpw
+
+
+
+ 8988
+ GpW
+ 0D0A1A
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GarenaYanghx.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GarenaYanghx.xml
new file mode 100644
index 00000000..e1401496
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GarenaYanghx.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *
+
+
+
+ yanghx\0\0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GotDGCD.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GotDGCD.xml
new file mode 100644
index 00000000..83cf82a6
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GotDGCD.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.gcd
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GremlinInteractiveActuaSoccerMAD.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GremlinInteractiveActuaSoccerMAD.xml
new file mode 100644
index 00000000..8a0ac83b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/GremlinInteractiveActuaSoccerMAD.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.mad
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Hardball.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Hardball.xml
new file mode 100644
index 00000000..865cd6fc
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Hardball.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.glu
+
+
+
+ MB6
+ 00
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HeroesOfThePacific.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HeroesOfThePacific.xml
new file mode 100644
index 00000000..3fd73c6f
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HeroesOfThePacific.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.ffs
+
+
+
+ FFS
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HighwayPursuit.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HighwayPursuit.xml
new file mode 100644
index 00000000..97efcee3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HighwayPursuit.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+ *.hfd
+ *.hgd
+ *.hmd
+ *.hod
+ *.hsd
+ *.hvd
+
+
+
+ HPDT
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Homeworld.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Homeworld.xml
new file mode 100644
index 00000000..4738d94e
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Homeworld.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+ *.vce
+ *.wxd
+
+
+
+ VCE0
+
+
+ WXD1
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HostileWaters.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HostileWaters.xml
new file mode 100644
index 00000000..b605ba6c
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HostileWaters.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.mng
+
+
+
+ ZGWH
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HostileWatersDAT.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HostileWatersDAT.xml
new file mode 100644
index 00000000..4312da73
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HostileWatersDAT.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.dat
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HoyleCasino99PRF.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HoyleCasino99PRF.xml
new file mode 100644
index 00000000..059fdcd8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HoyleCasino99PRF.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.prf
+
+
+
+
+ PRF\0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HyPack.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HyPack.xml
new file mode 100644
index 00000000..8b5c9cee
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/HyPack.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.pak
+
+
+
+ HyPack
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/IllusionGamesPP.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/IllusionGamesPP.xml
new file mode 100644
index 00000000..ce2e76b9
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/IllusionGamesPP.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.pp
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/IndianaJonesGOB.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/IndianaJonesGOB.xml
new file mode 100644
index 00000000..ff9b899d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/IndianaJonesGOB.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.gob
+
+
+
+ GOB
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/JackOrlandoPAK.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/JackOrlandoPAK.xml
new file mode 100644
index 00000000..9667b092
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/JackOrlandoPAK.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ *.pak
+ *.phk
+ *.ph2
+
+
+
+ PAK\0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/JadeEmpire.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/JadeEmpire.xml
new file mode 100644
index 00000000..063df41c
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/JadeEmpire.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.rim
+
+
+
+ RIM V1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/KensLabyrinth.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/KensLabyrinth.xml
new file mode 100644
index 00000000..e89a5acc
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/KensLabyrinth.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.kzp
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Kronosaur.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Kronosaur.xml
new file mode 100644
index 00000000..d16bff9e
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Kronosaur.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.tdb
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/MementoMoriRES.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/MementoMoriRES.xml
new file mode 100644
index 00000000..f7cee7e4
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/MementoMoriRES.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.res
+
+
+
+ C\0e\0n\0t\0a\0u\0r\0i\0 \0P\0r\0o\0d\0u\0c\0t\0i\0o\0n\0 \0R\0e\0s\0o\0u\0r\0c\0e\0 \0F\0i\0l\0e\0 \03\0.\01\00\0\xa\0\xa\0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/MoPaQ.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/MoPaQ.xml
new file mode 100644
index 00000000..b5ad3ce2
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/MoPaQ.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.mpq
+
+
+
+ MPQ
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/MoeroDownhillNightPKD.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/MoeroDownhillNightPKD.xml
new file mode 100644
index 00000000..ddf45494
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/MoeroDownhillNightPKD.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.pkd
+
+
+
+ PACK
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/N2M-CTAR.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/N2M-CTAR.xml
new file mode 100644
index 00000000..440dc928
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/N2M-CTAR.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.n2m
+
+
+
+ C2AR
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/NScripter.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/NScripter.xml
new file mode 100644
index 00000000..34b55d3f
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/NScripter.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.nsa
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/NamcoTales.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/NamcoTales.xml
new file mode 100644
index 00000000..e3c700c7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/NamcoTales.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.dat
+
+
+
+ TLZC
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Nintendo/Optical/NintendoOpticalDisc.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Nintendo/Optical/NintendoOpticalDisc.xml
new file mode 100644
index 00000000..b5d49112
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/Nintendo/Optical/NintendoOpticalDisc.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.gcm
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/NvidiaNPK.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/NvidiaNPK.xml
new file mode 100644
index 00000000..8594def7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/NvidiaNPK.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.npk
+
+
+
+ BEEFCAFE
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/PlayStation/PKG.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/PlayStation/PKG.xml
new file mode 100644
index 00000000..37c87ca7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/PlayStation/PKG.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.pkg
+
+
+
+ 7F
+ PKG
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/PrincessWaltzARC.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/PrincessWaltzARC.xml
new file mode 100644
index 00000000..04c424ef
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/PrincessWaltzARC.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.arc
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/RoxorInTheGroove.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/RoxorInTheGroove.xml
new file mode 100644
index 00000000..8f9ddd69
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/RoxorInTheGroove.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.pck
+
+
+
+ PCKF
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/SecretFilesTunguska.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/SecretFilesTunguska.xml
new file mode 100644
index 00000000..520d2a87
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/SecretFilesTunguska.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.spr
+
+
+
+ SPCD
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/SegaFARC.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/SegaFARC.xml
new file mode 100644
index 00000000..0a568503
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/SegaFARC.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+ *.farc
+
+
+
+ FArC
+
+
+ FArc
+
+
+ FARC
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/SinisterGames.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/SinisterGames.xml
new file mode 100644
index 00000000..d807de9b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/SinisterGames.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.gut
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/StellaGamesLzmaPack.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/StellaGamesLzmaPack.xml
new file mode 100644
index 00000000..15d3dfa5
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/StellaGamesLzmaPack.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.pack
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/TerminalRealityPOD.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/TerminalRealityPOD.xml
new file mode 100644
index 00000000..b51879ae
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/TerminalRealityPOD.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.pod
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/TheLearningCompany.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/TheLearningCompany.xml
new file mode 100644
index 00000000..027044ff
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/TheLearningCompany.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.tld
+
+
+
+ TLCD
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/TropicoHPK.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/TropicoHPK.xml
new file mode 100644
index 00000000..ea571da3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/TropicoHPK.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.hpk
+
+
+
+ BPUL
+
+
+ ZLIB
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/ValveGameCacheFile.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/ValveGameCacheFile.xml
new file mode 100644
index 00000000..8e1c0452
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/FileSystem/ValveGameCacheFile.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.gcf
+
+
+
+ 00000001
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/IcarusScriptingEngine/IcarusBinaryDataFormatAssociation.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/IcarusScriptingEngine/IcarusBinaryDataFormatAssociation.xml
new file mode 100644
index 00000000..a7e40736
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/IcarusScriptingEngine/IcarusBinaryDataFormatAssociation.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.ibi
+
+
+
+ IBI
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/IcarusScriptingEngine/IcarusTextDataFormatAssociation.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/IcarusScriptingEngine/IcarusTextDataFormatAssociation.xml
new file mode 100644
index 00000000..fa422013
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/IcarusScriptingEngine/IcarusTextDataFormatAssociation.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.icarus
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/AvalancheVBUF.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/AvalancheVBUF.xml
new file mode 100644
index 00000000..d9591408
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/AvalancheVBUF.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.vbuf
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/HalfLife2SMD.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/HalfLife2SMD.xml
new file mode 100644
index 00000000..6f29fe67
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/HalfLife2SMD.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.smd
+
+
+
+ version 1
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/IDSoftware.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/IDSoftware.xml
new file mode 100644
index 00000000..2e690ffa
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/IDSoftware.xml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+ *.md2
+
+
+
+ IDP2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.md3
+
+
+
+ IDP3
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.glm
+
+
+
+ 2LGM
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/SegaAuth3D.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/SegaAuth3D.xml
new file mode 100644
index 00000000..937029f4
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/SegaAuth3D.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+ *.a3da
+
+
+
+ #A3DA__________
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.a3da
+
+
+
+ #A3DC__________
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/ShaiyaOnline3DC.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/ShaiyaOnline3DC.xml
new file mode 100644
index 00000000..06b817c3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/ShaiyaOnline3DC.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.3dc
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/UltimateStuntsGLB.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/UltimateStuntsGLB.xml
new file mode 100644
index 00000000..da04b0a1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Model/UltimateStuntsGLB.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.glb
+
+
+
+ \0GLB
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Scene/IDSoftware.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Scene/IDSoftware.xml
new file mode 100644
index 00000000..71d51adb
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Multimedia3D/Scene/IDSoftware.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.bsp
+
+
+
+ IBSP
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCCampaign.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCCampaign.xml
new file mode 100644
index 00000000..1011da8d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCCampaign.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.h4c
+
+
+
+ H4CAMPAIGN
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCFileSystem.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCFileSystem.xml
new file mode 100644
index 00000000..b975d83e
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCFileSystem.xml
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+ *.agg
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.vid
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.snd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.lod
+
+
+
+ LOD\0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.cc
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCFont.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCFont.xml
new file mode 100644
index 00000000..5399e979
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCFont.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.fnt
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCGameSave.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCGameSave.xml
new file mode 100644
index 00000000..68c2ba13
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCGameSave.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.h4s
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCMap.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCMap.xml
new file mode 100644
index 00000000..bbaff359
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCMap.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+ *.mp2
+
+
+
+ 5C000000
+
+
+
+
+
+ *.mx2
+
+
+
+ 5C000000
+
+
+
+
+
+ *.hxc
+
+
+
+ 5C000000
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.h3m
+
+
+
+ 0E000000
+
+
+ 15000000
+
+
+ 1C000000
+
+
+ 33000000
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCPalette.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCPalette.xml
new file mode 100644
index 00000000..4faf4ac9
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCPalette.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.pal
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCPicture.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCPicture.xml
new file mode 100644
index 00000000..e6d9db04
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCPicture.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+ *.bmp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.icn
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCResourceBIN.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCResourceBIN.xml
new file mode 100644
index 00000000..814d839c
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCResourceBIN.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.bin
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCSound.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCSound.xml
new file mode 100644
index 00000000..cdd1faf7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/NewWorldComputing/NWCSound.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.82m
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Nintendo.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Nintendo.xml
new file mode 100644
index 00000000..8197eca9
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Nintendo.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.smc
+ *.sfc
+ *.swc
+ *.fig
+ *.ufo
+ *.?gm
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/AvalancheTBODY.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/AvalancheTBODY.xml
new file mode 100644
index 00000000..c67cc937
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/AvalancheTBODY.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.tbody
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/BurikoGeneralInterpreter.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/BurikoGeneralInterpreter.xml
new file mode 100644
index 00000000..374bedb7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/BurikoGeneralInterpreter.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.cbg
+
+
+
+ CompressedBG___
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/ChaosWorksSprite.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/ChaosWorksSprite.xml
new file mode 100644
index 00000000..2dd771a3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/ChaosWorksSprite.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.sph
+
+
+
+ CWE sprite
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/GIM.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/GIM.xml
new file mode 100644
index 00000000..800949d8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Picture/GIM.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.gim
+
+
+
+ MIG.
+
+
+ .GIM
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/ReflexiveEntertainment/FRM16.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/ReflexiveEntertainment/FRM16.xml
new file mode 100644
index 00000000..7c0d3a94
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/ReflexiveEntertainment/FRM16.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.frm16
+
+
+
+ 3210
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/SynthesizedAudio/PSF.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/SynthesizedAudio/PSF.xml
new file mode 100644
index 00000000..146a44b5
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/SynthesizedAudio/PSF.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.psf
+
+
+
+ PSF
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/SynthesizedAudio/SPC.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/SynthesizedAudio/SPC.xml
new file mode 100644
index 00000000..8dcf06b1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/SynthesizedAudio/SPC.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.spc
+
+
+
+ SNES-SPC700 Sound File Data
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/UnrealPackage/UnrealPackage.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/UnrealPackage/UnrealPackage.xml
new file mode 100644
index 00000000..c6d19597
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/UnrealPackage/UnrealPackage.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ *.u
+ *.utx
+ *.upk
+
+
+
+ C1832A9E
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/UnrealPackage/UnrealUMOD.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/UnrealPackage/UnrealUMOD.xml
new file mode 100644
index 00000000..0cd4abe5
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/UnrealPackage/UnrealUMOD.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.umod
+
+
+
+ A3C5E39F
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Video/IdROQ.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Video/IdROQ.xml
new file mode 100644
index 00000000..d4e634a7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Video/IdROQ.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.roq
+
+
+
+ 8410FFFFFFFF1E00
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Video/NintendoGameCubeTHP.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Video/NintendoGameCubeTHP.xml
new file mode 100644
index 00000000..a7c21dfd
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Video/NintendoGameCubeTHP.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.thp
+
+
+
+ THP
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Video/RADTools.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Video/RADTools.xml
new file mode 100644
index 00000000..588430c6
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/Video/RADTools.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+ *.bik
+
+
+
+ SMK4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.smk
+
+
+
+ SMK4
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/WaveformAudio/BRSTM.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/WaveformAudio/BRSTM.xml
new file mode 100644
index 00000000..4178faf1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/WaveformAudio/BRSTM.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+ *.brstm
+
+
+
+ 77
+ 84
+ 83
+ 82
+ 255
+ 254
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/WaveformAudio/OSLib.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/WaveformAudio/OSLib.xml
new file mode 100644
index 00000000..7d649886
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/Associations/WaveformAudio/OSLib.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.bgm
+
+
+
+ OSLBGM v01\0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/ProjectTypes/{94E32BE3-D458-4786-A7E0-59DE5F769CDC}.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/ProjectTypes/{94E32BE3-D458-4786-A7E0-59DE5F769CDC}.xml
new file mode 100644
index 00000000..0e42008d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GameDeveloper/ProjectTypes/{94E32BE3-D458-4786-A7E0-59DE5F769CDC}.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+ Star Wars: Jedi Knight II: Jedi Outcast engine
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/Adobe/ACOColorPalette.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/Adobe/ACOColorPalette.xml
new file mode 100644
index 00000000..06d440c0
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/Adobe/ACOColorPalette.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.aco
+
+
+
+ GIMP Palette
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/Adobe/AdobeSwatchExchange.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/Adobe/AdobeSwatchExchange.xml
new file mode 100644
index 00000000..6a019525
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/Adobe/AdobeSwatchExchange.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.ase
+
+
+
+ ASEF
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/GIMPColorPalette.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/GIMPColorPalette.xml
new file mode 100644
index 00000000..d96e084b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/GIMPColorPalette.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.gpl
+
+
+
+ GIMP Palette
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/JASCPaintShopPro.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/JASCPaintShopPro.xml
new file mode 100644
index 00000000..a2bd91e6
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Palette/JASCPaintShopPro.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.pal
+
+
+
+ JASC-PAL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/ARGB.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/ARGB.xml
new file mode 100644
index 00000000..c904e419
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/ARGB.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.argb
+
+
+
+ BGRA
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/DirectDrawSurface.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/DirectDrawSurface.xml
new file mode 100644
index 00000000..b851c0a4
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/DirectDrawSurface.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.dds
+
+
+
+ 44445320
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/GraphicsInterchange.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/GraphicsInterchange.xml
new file mode 100644
index 00000000..18666145
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/GraphicsInterchange.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.gif
+
+
+
+ GIF87a
+
+
+ GIF89a
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/I16.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/I16.xml
new file mode 100644
index 00000000..3898f647
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/I16.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.i16
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/JPEG.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/JPEG.xml
new file mode 100644
index 00000000..8e58b8a1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/JPEG.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+ *.jpg
+ *.jpe
+ *.jpeg
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/LEADToolsImage.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/LEADToolsImage.xml
new file mode 100644
index 00000000..dcde65d2
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/LEADToolsImage.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.cmp
+
+
+
+ LEAD
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/PortableAnyMapImage.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/PortableAnyMapImage.xml
new file mode 100644
index 00000000..c2fd719f
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/PortableAnyMapImage.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+ *.ppm
+ *.pgm
+ *.pbm
+ *.pam
+
+
+
+ P1
+
+
+ P2
+
+
+ P3
+
+
+ P4
+
+
+ P5
+
+
+ P6
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/PortableNetworkGraphics.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/PortableNetworkGraphics.xml
new file mode 100644
index 00000000..073e1773
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/PortableNetworkGraphics.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ *.png
+
+
+
+ 89
+ PNG
+ 0D0A1A0A
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/TMH.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/TMH.xml
new file mode 100644
index 00000000..53669d84
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/TMH.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.tmh
+
+
+
+ .TMH0.14
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/TrueVisionTarga.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/TrueVisionTarga.xml
new file mode 100644
index 00000000..a70893de
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/TrueVisionTarga.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.tga
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WaveletScalarQuantization.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WaveletScalarQuantization.xml
new file mode 100644
index 00000000..e538ac9f
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WaveletScalarQuantization.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.wsq
+
+
+
+ A0FF
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WebP.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WebP.xml
new file mode 100644
index 00000000..8217275a
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WebP.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ *.webp
+
+
+
+ RIFF
+
+ WEBP
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsBitmap.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsBitmap.xml
new file mode 100644
index 00000000..2898bfa0
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsBitmap.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+ *.bmp
+ *.spa
+ *.sph
+
+
+
+
+ BM
+
+
+
+ BA
+
+
+
+ CI
+
+
+
+
+ IC
+
+
+
+ PT
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsCursor.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsCursor.xml
new file mode 100644
index 00000000..369eaa23
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsCursor.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.cur
+
+
+
+ 00000002
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsIcon.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsIcon.xml
new file mode 100644
index 00000000..37032579
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsIcon.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+ *.ico
+
+
+
+ 00000001
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsPaintbrushPicture.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsPaintbrushPicture.xml
new file mode 100644
index 00000000..5b63e8be
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/Picture/WindowsPaintbrushPicture.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.msp
+
+
+
+ DanM
+
+
+ LinS
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/VectorImage/ExpressionDesign.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/VectorImage/ExpressionDesign.xml
new file mode 100644
index 00000000..63ba085b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner/Associations/VectorImage/ExpressionDesign.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.design
+
+
+
+ <XDFV:9>
+ 0A
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Accessory/PolygonMovieMaker.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Accessory/PolygonMovieMaker.xml
new file mode 100644
index 00000000..7d7fa776
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Accessory/PolygonMovieMaker.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.vac
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Accessory/QAvimator.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Accessory/QAvimator.xml
new file mode 100644
index 00000000..d8f1b363
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Accessory/QAvimator.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.prp
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/Blender.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/Blender.xml
new file mode 100644
index 00000000..06e48aee
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/Blender.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.blend
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/InivisAC3D.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/InivisAC3D.xml
new file mode 100644
index 00000000..bd73b99d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/InivisAC3D.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.ac
+
+
+
+ AC3Db
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/Metasequoia.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/Metasequoia.xml
new file mode 100644
index 00000000..587b6e1a
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/Metasequoia.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.mqo
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/PolygonMovieMaker.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/PolygonMovieMaker.xml
new file mode 100644
index 00000000..17f6c640
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/PolygonMovieMaker.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+ *.pmd
+
+
+
+ Pmd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.pmx
+
+
+
+ PMX
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.pmax
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/Super6.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/Super6.xml
new file mode 100644
index 00000000..4b3d20ec
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/Super6.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.6kt
+
+
+
+ FFFFFF9B
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/ThreeDStudioMax.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/ThreeDStudioMax.xml
new file mode 100644
index 00000000..8f78e42e
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/ThreeDStudioMax.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.max
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/TriangleEditor.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/TriangleEditor.xml
new file mode 100644
index 00000000..d8b0d49d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/TriangleEditor.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.ted
+
+
+
+ 14
+ TriangleEditor_V.1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/WavefrontOBJ.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/WavefrontOBJ.xml
new file mode 100644
index 00000000..d1bdb21d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Model/WavefrontOBJ.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.obj
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Motion/BiovisionHierarchy.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Motion/BiovisionHierarchy.xml
new file mode 100644
index 00000000..742804f4
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Motion/BiovisionHierarchy.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+ *.bvh
+
+
+
+ HIERARCHY
+
+
+
+
+
+ *.avm
+
+
+
+ HIERARCHY
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Motion/PolygonMovieMaker.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Motion/PolygonMovieMaker.xml
new file mode 100644
index 00000000..2d37dcbe
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Motion/PolygonMovieMaker.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+ *.vmd
+
+
+
+ Vocaloid Motion Data file
+
+
+
+
+
+ *.vmd
+
+
+
+ Vocaloid Motion Data 0002
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.mvd
+
+
+
+ Motion Vector Data file
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Pose/PolygonMovieMaker.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Pose/PolygonMovieMaker.xml
new file mode 100644
index 00000000..c8c8aea8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Pose/PolygonMovieMaker.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.vpd
+
+
+
+ Vocaloid Pose Data file
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Scene/Cinema4D.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Scene/Cinema4D.xml
new file mode 100644
index 00000000..a67311ed
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Scene/Cinema4D.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.c4d
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Scene/PolygonMovieMaker.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Scene/PolygonMovieMaker.xml
new file mode 100644
index 00000000..5db68131
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Associations/Scene/PolygonMovieMaker.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+ *.mmd
+
+
+
+ Polygon Movie maker 0001
+
+
+
+
+
+ *.pmm
+
+
+
+ Polygon Movie maker 0001
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/ImageCollection.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/ImageCollection.xml
new file mode 100644
index 00000000..3e4e0400
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/ImageCollection.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.imc
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/InivisAC3D.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/InivisAC3D.xml
new file mode 100644
index 00000000..bd73b99d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/InivisAC3D.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.ac
+
+
+
+ AC3Db
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/OmpSkin.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/OmpSkin.xml
new file mode 100644
index 00000000..f08f697d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/OmpSkin.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.cos
+
+
+
+ OmpSkin
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/Super6.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/Super6.xml
new file mode 100644
index 00000000..4b3d20ec
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/FileSystem/Super6.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.6kt
+
+
+
+ FFFFFF9B
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/Model/Mcha.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/Model/Mcha.xml
new file mode 100644
index 00000000..d82fff55
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/Model/Mcha.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.mcha
+
+
+
+ Mcha
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/MotionPackage/MoPkg.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/MotionPackage/MoPkg.xml
new file mode 100644
index 00000000..701ec31a
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/GraphicDesigner3D/Extensions/Moosta/Associations/MotionPackage/MoPkg.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.mopkg
+
+
+
+ MoPkg
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/KnowledgeAdventure/Associations/ATRDataFormat.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/KnowledgeAdventure/Associations/ATRDataFormat.xml
new file mode 100644
index 00000000..3a6812b6
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/KnowledgeAdventure/Associations/ATRDataFormat.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.atr
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/KnowledgeAdventure/Associations/BALDataFormat.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/KnowledgeAdventure/Associations/BALDataFormat.xml
new file mode 100644
index 00000000..9c0883bf
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/KnowledgeAdventure/Associations/BALDataFormat.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.bal
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/KnowledgeAdventure/Associations/RSCDataFormat.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/KnowledgeAdventure/Associations/RSCDataFormat.xml
new file mode 100644
index 00000000..baec0694
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/KnowledgeAdventure/Associations/RSCDataFormat.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.rsc
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/LightingWorkstation/Associations/Fixture/QLCFixture.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/LightingWorkstation/Associations/Fixture/QLCFixture.xml
new file mode 100644
index 00000000..24594ac2
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/LightingWorkstation/Associations/Fixture/QLCFixture.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.xml
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Michelangelo/Associations/Michelangelo.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Michelangelo/Associations/Michelangelo.xml
new file mode 100644
index 00000000..030290e6
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/Michelangelo/Associations/Michelangelo.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.mcv
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Ada.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Ada.xml
new file mode 100644
index 00000000..4c1ccc5b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Ada.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.ada
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Boo.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Boo.xml
new file mode 100644
index 00000000..ddf491f6
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Boo.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.boo
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/COBOL.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/COBOL.xml
new file mode 100644
index 00000000..114a6b9e
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/COBOL.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+ *.cob
+ *.cbl
+ *.cobol
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/CSharp.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/CSharp.xml
new file mode 100644
index 00000000..c1563e08
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/CSharp.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.cs
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/FORTRAN.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/FORTRAN.xml
new file mode 100644
index 00000000..db66c047
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/FORTRAN.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+ *.for
+ *.fortran
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/FSharp.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/FSharp.xml
new file mode 100644
index 00000000..4228ecde
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/FSharp.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.fs
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Go.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Go.xml
new file mode 100644
index 00000000..a7284440
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Go.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.go
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Java.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Java.xml
new file mode 100644
index 00000000..3affe59b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/Java.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.class
+
+
+
+ BEBAFECA
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/VisualBasicNET.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/VisualBasicNET.xml
new file mode 100644
index 00000000..43940aa2
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/CodeObjectModel/VisualBasicNET.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.vb
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/ExecutableObjectModel/ELF.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/ExecutableObjectModel/ELF.xml
new file mode 100644
index 00000000..22ff6962
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/ExecutableObjectModel/ELF.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.elf
+
+
+
+ 7F
+ ELF
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/Project/VisualStudio.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/Project/VisualStudio.xml
new file mode 100644
index 00000000..df411d1a
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/Project/VisualStudio.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+ *.vbproj
+ *.csproj
+ *.jsproj
+ *.wixproj
+ *.fsproj
+ *.pyproj
+ *.sqlproj
+ *.phpproj
+ *.proj
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/PropertyList/VisualStudio.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/PropertyList/VisualStudio.xml
new file mode 100644
index 00000000..8f837986
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/PropertyList/VisualStudio.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.suo
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/Solution/VisualStudio.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/Solution/VisualStudio.xml
new file mode 100644
index 00000000..fd27a9ab
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Associations/Solution/VisualStudio.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.sln
+
+
+
+ EFBBBF0D0A
+ Microsoft Visual Studio Solution File, Format Version
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/ProjectTypes/{8891C1AE-6699-45DA-8B22-13BCEBB63364}.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/ProjectTypes/{8891C1AE-6699-45DA-8B22-13BCEBB63364}.xml
new file mode 100644
index 00000000..cead2fc1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/ProjectTypes/{8891C1AE-6699-45DA-8B22-13BCEBB63364}.xml
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+ C++ Application
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/ProjectTypes/{F184B08F-C81C-45F6-A57F-5ABD9991F28F}.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/ProjectTypes/{F184B08F-C81C-45F6-A57F-5ABD9991F28F}.xml
new file mode 100644
index 00000000..922d478c
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/ProjectTypes/{F184B08F-C81C-45F6-A57F-5ABD9991F28F}.xml
@@ -0,0 +1,46 @@
+
+
+
+
+ VB.NET Project
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/ProjectTypes/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/ProjectTypes/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.xml
new file mode 100644
index 00000000..c7417411
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/ProjectTypes/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.xml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+ C# Project
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Adobe/AIR/Basic Project.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Adobe/AIR/Basic Project.xml
new file mode 100644
index 00000000..497725d8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Adobe/AIR/Basic Project.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+ Basic AIR Project
+ BasicAIR
+ Creates an Adobe AIR application with one form.
+
+
+ Software Development
+ Adobe
+ AIR
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Adobe/AIR/Images/Application_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Adobe/AIR/Images/Application_16x16.png
new file mode 100644
index 00000000..997510b5
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Adobe/AIR/Images/Application_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Adobe/AIR/Images/Application_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Adobe/AIR/Images/Application_32x32.png
new file mode 100644
index 00000000..51bef305
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Adobe/AIR/Images/Application_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/BlankProject.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/BlankProject.xml
new file mode 100644
index 00000000..a47a0e9a
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/BlankProject.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+ Simple Arduino Project
+ SimpleArduino
+ Creates a simple Arduino project framework.
+
+
+ Software Development
+ Arduino
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Blink.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Blink.xml
new file mode 100644
index 00000000..ce9fa9a3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Blink.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+ 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.
+}]]>
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blank.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blank.ico
new file mode 100644
index 00000000..730d7ed3
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blank.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blank_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blank_16x16.png
new file mode 100644
index 00000000..d09c57a8
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blank_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blank_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blank_32x32.png
new file mode 100644
index 00000000..2d1ae46f
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blank_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink.ico
new file mode 100644
index 00000000..55c84136
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink.xcf b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink.xcf
new file mode 100644
index 00000000..3f53ceec
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink.xcf differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink_16x16.png
new file mode 100644
index 00000000..7ee3754f
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink_32x32.png
new file mode 100644
index 00000000..f58ca007
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Arduino/Images/Blink_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/C/GTK+ Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/C/GTK+ Application.xml
new file mode 100644
index 00000000..d4efe476
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/C/GTK+ Application.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+ 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
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Class Library.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Class Library.xml
new file mode 100644
index 00000000..ea749294
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Class Library.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+ Class Library
+ ClassLibrary
+
+
+ Software Development
+ Common Language Runtime
+ COBOL
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Console Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Console Application.xml
new file mode 100644
index 00000000..c5ef848b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Console Application.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+ Console Application
+ ConsoleApplication
+
+
+ Software Development
+ Common Language Runtime
+ COBOL
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Database.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Database.xml
new file mode 100644
index 00000000..bbfe5a9e
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Database.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+ Database Project
+ Database
+
+
+ Software Development
+ Common Language Runtime
+ COBOL
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Application_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Application_16x16.png
new file mode 100644
index 00000000..de8f1178
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Application_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Application_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Application_32x32.png
new file mode 100644
index 00000000..f6eb14be
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Application_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Blank_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Blank_16x16.png
new file mode 100644
index 00000000..95c0b965
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Blank_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Blank_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Blank_32x32.png
new file mode 100644
index 00000000..a568c3b5
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Blank_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/COBOL.xcf b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/COBOL.xcf
new file mode 100644
index 00000000..2500e58c
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/COBOL.xcf differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Console_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Console_16x16.png
new file mode 100644
index 00000000..79aa0dee
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Console_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Console_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Console_32x32.png
new file mode 100644
index 00000000..a2524202
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Console_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/ControlLibrary_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/ControlLibrary_16x16.png
new file mode 100644
index 00000000..2c8e7389
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/ControlLibrary_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/ControlLibrary_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/ControlLibrary_32x32.png
new file mode 100644
index 00000000..16e7a05f
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/ControlLibrary_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Database_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Database_16x16.png
new file mode 100644
index 00000000..5cad6bdd
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Database_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Database_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Database_32x32.png
new file mode 100644
index 00000000..f264dddd
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Database_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Library_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Library_16x16.png
new file mode 100644
index 00000000..96e13cb2
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Library_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Library_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Library_32x32.png
new file mode 100644
index 00000000..7fb096db
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Library_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Service_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Service_16x16.png
new file mode 100644
index 00000000..bbdb09b0
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Service_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Service_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Service_32x32.png
new file mode 100644
index 00000000..5e3e3cf2
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Service_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Silverlight_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Silverlight_16x16.png
new file mode 100644
index 00000000..e8a90405
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Silverlight_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Silverlight_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Silverlight_32x32.png
new file mode 100644
index 00000000..b92614e2
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Images/Silverlight_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Silverlight.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Silverlight.xml
new file mode 100644
index 00000000..3f73ccf8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Silverlight.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ Silverlight Application
+ SilverlightApplication
+
+
+ Software Development
+ Common Language Runtime
+ COBOL
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Windows Forms Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Windows Forms Application.xml
new file mode 100644
index 00000000..39ad7fa1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/COBOL/Windows Forms Application.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ Windows Forms Application
+ WindowsApplication
+
+
+ Software Development
+ Common Language Runtime
+ COBOL
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Class Library.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Class Library.xml
new file mode 100644
index 00000000..fd8fb133
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Class Library.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+ Class Library
+ ClassLibrary
+
+
+ Software Development
+ Common Language Runtime
+ C#
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Console Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Console Application.xml
new file mode 100644
index 00000000..ddc18feb
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Console Application.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+ Console Application
+ ConsoleApplication
+
+
+ Software Development
+ Common Language Runtime
+ C#
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Database.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Database.xml
new file mode 100644
index 00000000..cfb3d2c0
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Database.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+ Database Project
+ Database
+
+
+ Software Development
+ Common Language Runtime
+ C#
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application.ico
new file mode 100644
index 00000000..a564b626
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application.xcf b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application.xcf
new file mode 100644
index 00000000..468cb640
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application.xcf differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application_16x16.png
new file mode 100644
index 00000000..fabb154c
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application_32x32.png
new file mode 100644
index 00000000..3e4512f5
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Application_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank.ico
new file mode 100644
index 00000000..72c88198
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank.xcf b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank.xcf
new file mode 100644
index 00000000..775c8f08
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank.xcf differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank_16x16.png
new file mode 100644
index 00000000..e3ae9f48
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank_32x32.png
new file mode 100644
index 00000000..c750cda8
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Blank_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console.ico
new file mode 100644
index 00000000..3feea36e
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console.xcf b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console.xcf
new file mode 100644
index 00000000..d9cce98f
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console.xcf differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console_16x16.png
new file mode 100644
index 00000000..b67fe08b
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console_32x32.png
new file mode 100644
index 00000000..efa049df
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Console_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/ControlLibrary_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/ControlLibrary_16x16.png
new file mode 100644
index 00000000..a69b54f0
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/ControlLibrary_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/ControlLibrary_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/ControlLibrary_32x32.png
new file mode 100644
index 00000000..db932b33
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/ControlLibrary_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Database_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Database_16x16.png
new file mode 100644
index 00000000..6695cc4e
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Database_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Database_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Database_32x32.png
new file mode 100644
index 00000000..86bff988
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Database_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library.ico
new file mode 100644
index 00000000..c3d9392e
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library.xcf b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library.xcf
new file mode 100644
index 00000000..a9eeac22
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library.xcf differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library_16x16.png
new file mode 100644
index 00000000..85ffbc0f
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library_32x32.png
new file mode 100644
index 00000000..471db8b3
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Library_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Silverlight_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Silverlight_16x16.png
new file mode 100644
index 00000000..acceb5a3
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Silverlight_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Silverlight_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Silverlight_32x32.png
new file mode 100644
index 00000000..b42d1231
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Silverlight_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Test_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Test_16x16.png
new file mode 100644
index 00000000..6e282705
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Test_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Test_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Test_32x32.png
new file mode 100644
index 00000000..8449ce8b
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Images/Test_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Silverlight.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Silverlight.xml
new file mode 100644
index 00000000..1b8d64ae
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Silverlight.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ Silverlight Application
+ SilverlightApplication
+
+
+ Software Development
+ Common Language Runtime
+ C#
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Windows Forms Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Windows Forms Application.xml
new file mode 100644
index 00000000..6a1a5c12
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/CSharp/Windows Forms Application.xml
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+ 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
+ }
+}
+
+]]>
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Console Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Console Application.xml
new file mode 100644
index 00000000..b79274ec
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Console Application.xml
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+ Console Application
+ ConsoleApplication
+
+
+ Software Development
+ Common Language Runtime
+ IronPython
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Application_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Application_16x16.png
new file mode 100644
index 00000000..181e9de3
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Application_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Application_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Application_32x32.png
new file mode 100644
index 00000000..57111d9c
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Application_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Blank_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Blank_16x16.png
new file mode 100644
index 00000000..aceb8f7a
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Blank_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Blank_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Blank_32x32.png
new file mode 100644
index 00000000..a7852adc
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Blank_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Console_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Console_16x16.png
new file mode 100644
index 00000000..4b1352e2
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Console_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Console_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Console_32x32.png
new file mode 100644
index 00000000..b25a11ae
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Console_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Library_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Library_16x16.png
new file mode 100644
index 00000000..762f8a84
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Library_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Library_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Library_32x32.png
new file mode 100644
index 00000000..3fc04de0
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Images/Library_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Native Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Native Application.xml
new file mode 100644
index 00000000..05490a96
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Native Application.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+ Native Application
+ NativeApplication
+
+
+ Software Development
+ Python
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Windows Forms Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Windows Forms Application.xml
new file mode 100644
index 00000000..873971a3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/IronPython/Windows Forms Application.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+ Windows Forms Application
+ WindowsFormsApplication
+
+
+ Software Development
+ Common Language Runtime
+ IronPython
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Console Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Console Application.xml
new file mode 100644
index 00000000..abc2a1ca
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Console Application.xml
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+ Console Application
+ ConsoleApplication
+
+
+ Software Development
+ Common Language Runtime
+ J#
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Application_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Application_16x16.png
new file mode 100644
index 00000000..545e52a8
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Application_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Application_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Application_32x32.png
new file mode 100644
index 00000000..895e071e
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Application_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Blank_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Blank_16x16.png
new file mode 100644
index 00000000..aceb8f7a
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Blank_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Blank_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Blank_32x32.png
new file mode 100644
index 00000000..a7852adc
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Blank_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Console_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Console_16x16.png
new file mode 100644
index 00000000..3a5c1802
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Console_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Console_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Console_32x32.png
new file mode 100644
index 00000000..5bec4ec1
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Console_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/ControlLibrary_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/ControlLibrary_16x16.png
new file mode 100644
index 00000000..26dc2568
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/ControlLibrary_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/ControlLibrary_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/ControlLibrary_32x32.png
new file mode 100644
index 00000000..e0b1b863
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/ControlLibrary_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Library_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Library_16x16.png
new file mode 100644
index 00000000..cd1443f7
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Library_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Library_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Library_32x32.png
new file mode 100644
index 00000000..86925d53
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Images/Library_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Windows Forms Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Windows Forms Application.xml
new file mode 100644
index 00000000..92bedd5c
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/JSharp/Windows Forms Application.xml
@@ -0,0 +1,155 @@
+
+
+
+
+
+
+ Windows Forms Application
+ WindowsFormsApplication
+
+
+ Software Development
+ Common Language Runtime
+ J#
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Class Library.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Class Library.xml
new file mode 100644
index 00000000..3004e70c
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Class Library.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+ Class Library
+ ClassLibrary
+
+
+ Software Development
+ Common Language Runtime
+ Visual Basic
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Console Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Console Application.xml
new file mode 100644
index 00000000..0f282f26
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Console Application.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+ Console Application
+ ConsoleApplication
+
+
+ Software Development
+ Common Language Runtime
+ Visual Basic
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Database.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Database.xml
new file mode 100644
index 00000000..4de16518
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Database.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+ Database Project
+ Database
+
+
+ Software Development
+ Common Language Runtime
+ Visual Basic
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Application_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Application_16x16.png
new file mode 100644
index 00000000..154d6603
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Application_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Application_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Application_32x32.png
new file mode 100644
index 00000000..b2b6ead2
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Application_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Blank_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Blank_16x16.png
new file mode 100644
index 00000000..15a293cd
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Blank_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Blank_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Blank_32x32.png
new file mode 100644
index 00000000..a876cb9c
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Blank_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Console_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Console_16x16.png
new file mode 100644
index 00000000..331aa508
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Console_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Console_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Console_32x32.png
new file mode 100644
index 00000000..62fc681a
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Console_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/ControlLibrary_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/ControlLibrary_16x16.png
new file mode 100644
index 00000000..40ab9c36
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/ControlLibrary_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/ControlLibrary_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/ControlLibrary_32x32.png
new file mode 100644
index 00000000..79fa0c08
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/ControlLibrary_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Database_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Database_16x16.png
new file mode 100644
index 00000000..d2e3fb33
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Database_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Database_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Database_32x32.png
new file mode 100644
index 00000000..b98c4c30
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Database_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Library_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Library_16x16.png
new file mode 100644
index 00000000..b1afe3db
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Library_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Library_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Library_32x32.png
new file mode 100644
index 00000000..7ba4f2dd
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Library_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Service_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Service_16x16.png
new file mode 100644
index 00000000..115b354a
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Service_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Service_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Service_32x32.png
new file mode 100644
index 00000000..50109927
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Service_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/SliverlightApplication_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/SliverlightApplication_16x16.png
new file mode 100644
index 00000000..1da8aabd
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/SliverlightApplication_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/SliverlightApplication_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/SliverlightApplication_32x32.png
new file mode 100644
index 00000000..e5867a30
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/SliverlightApplication_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Test_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Test_16x16.png
new file mode 100644
index 00000000..1c8ac289
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Test_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Test_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Test_32x32.png
new file mode 100644
index 00000000..da289cba
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Images/Test_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Silverlight.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Silverlight.xml
new file mode 100644
index 00000000..f7c91b94
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Silverlight.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ Silverlight Application
+ SilverlightApplication
+
+
+ Software Development
+ Common Language Runtime
+ Visual Basic
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Windows Forms Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Windows Forms Application.xml
new file mode 100644
index 00000000..3e5687b4
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Common Language Runtime/VisualBasic/Windows Forms Application.xml
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+ 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
+ }
+}
+
+]]>
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/MSOfficeAddin_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/MSOfficeAddin_16x16.png
new file mode 100644
index 00000000..6a073cf9
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/MSOfficeAddin_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/MSOfficeAddin_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/MSOfficeAddin_32x32.png
new file mode 100644
index 00000000..2a08b16c
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/MSOfficeAddin_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/UniversalEditorAddin_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/UniversalEditorAddin_16x16.png
new file mode 100644
index 00000000..8c1763c6
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/UniversalEditorAddin_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/UniversalEditorAddin_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/UniversalEditorAddin_32x32.png
new file mode 100644
index 00000000..28af91f3
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Extensibility/Images/UniversalEditorAddin_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Blank Project.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Blank Project.xml
new file mode 100644
index 00000000..ed1c8308
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Blank Project.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ Empty Project
+ Empty
+
+
+ Software Development
+ Pascal
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Class Library.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Class Library.xml
new file mode 100644
index 00000000..d02160fd
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Class Library.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ Class Library
+ ClassLibrary
+
+
+ Software Development
+ Pascal
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Console Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Console Application.xml
new file mode 100644
index 00000000..981e8fb8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Console Application.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ Console Application
+ ConsoleApplication
+
+
+ Software Development
+ Pascal
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/GUI Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/GUI Application.xml
new file mode 100644
index 00000000..44e9ab8d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/GUI Application.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ GUI Application
+ GuiApplication
+
+
+ Software Development
+ Pascal
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Application_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Application_16x16.png
new file mode 100644
index 00000000..9bdcbfdd
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Application_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Application_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Application_32x32.png
new file mode 100644
index 00000000..e65503f6
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Application_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Blank_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Blank_16x16.png
new file mode 100644
index 00000000..577b24d5
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Blank_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Blank_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Blank_32x32.png
new file mode 100644
index 00000000..507c7f93
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Blank_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Console_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Console_16x16.png
new file mode 100644
index 00000000..b71b0f08
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Console_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Console_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Console_32x32.png
new file mode 100644
index 00000000..a90802ba
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Console_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Library_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Library_16x16.png
new file mode 100644
index 00000000..a3bef0a2
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Library_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Library_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Library_32x32.png
new file mode 100644
index 00000000..9fffa7a2
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Pascal/Images/Library_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/ActiveX Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/ActiveX Application.xml
new file mode 100644
index 00000000..3ad2ef70
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/ActiveX Application.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ ActiveX Application
+ ActiveXApplication
+
+
+ Software Development
+ Visual Basic 6.0
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Blank Project.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Blank Project.xml
new file mode 100644
index 00000000..9f0a4cfe
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Blank Project.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ Empty Project
+ Empty
+
+
+ Software Development
+ Visual Basic 6.0
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Class Library.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Class Library.xml
new file mode 100644
index 00000000..8906f886
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Class Library.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ Class Library
+ ClassLibrary
+
+
+ Software Development
+ Visual Basic 6.0
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Control Library.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Control Library.xml
new file mode 100644
index 00000000..f268570b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Control Library.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ Control Library
+ ControlLibrary
+
+
+ Software Development
+ Visual Basic 6.0
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ActiveXApplication_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ActiveXApplication_16x16.png
new file mode 100644
index 00000000..264ec15d
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ActiveXApplication_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ActiveXApplication_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ActiveXApplication_32x32.png
new file mode 100644
index 00000000..3b7d4f65
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ActiveXApplication_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Application_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Application_16x16.png
new file mode 100644
index 00000000..1bc639d2
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Application_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Application_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Application_32x32.png
new file mode 100644
index 00000000..cd911629
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Application_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/BlankProject_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/BlankProject_16x16.png
new file mode 100644
index 00000000..917028fd
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/BlankProject_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/BlankProject_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/BlankProject_32x32.png
new file mode 100644
index 00000000..38cd2a10
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/BlankProject_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ControlLibrary_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ControlLibrary_16x16.png
new file mode 100644
index 00000000..6fe28d4b
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ControlLibrary_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ControlLibrary_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ControlLibrary_32x32.png
new file mode 100644
index 00000000..6d431fb8
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/ControlLibrary_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Library_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Library_16x16.png
new file mode 100644
index 00000000..417f054f
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Library_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Library_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Library_32x32.png
new file mode 100644
index 00000000..56ef8c6c
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Library_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Wizard_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Wizard_16x16.png
new file mode 100644
index 00000000..c5c89847
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Wizard_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Wizard_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Wizard_32x32.png
new file mode 100644
index 00000000..12ee0b25
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Images/Wizard_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Standard Application.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Standard Application.xml
new file mode 100644
index 00000000..14107fae
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Templates/Project/Software Development/Visual Basic 6.0/Standard Application.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+ Standard Application
+ StandardApplication
+
+
+ Software Development
+ Visual Basic 6.0
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/ProjectTypes/32x32/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/ProjectTypes/32x32/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.png
new file mode 100644
index 00000000..7730ebe6
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/ProjectTypes/32x32/{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Class Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Class Library.png
new file mode 100644
index 00000000..0425ce8b
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Class Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Console Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Console Application.png
new file mode 100644
index 00000000..4681487c
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Console Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Empty Project.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Empty Project.png
new file mode 100644
index 00000000..8fa8ae68
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Empty Project.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Server Control.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Server Control.png
new file mode 100644
index 00000000..5048475d
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Server Control.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Application.png
new file mode 100644
index 00000000..7b0a5d7d
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Browser Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Browser Application.png
new file mode 100644
index 00000000..87d89208
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Browser Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Custom Control Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Custom Control Library.png
new file mode 100644
index 00000000..cc901051
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF Custom Control Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF User Control Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF User Control Library.png
new file mode 100644
index 00000000..cb419c10
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/WPF User Control Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Application.png
new file mode 100644
index 00000000..01bec6e9
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Site.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Site.png
new file mode 100644
index 00000000..f29e94eb
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Web Site.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Application.png
new file mode 100644
index 00000000..038915d7
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Control Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Control Library.png
new file mode 100644
index 00000000..b7c97b0a
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Forms Control Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Service.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Service.png
new file mode 100644
index 00000000..e8af919b
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/16x16/Windows Service.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Class Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Class Library.png
new file mode 100644
index 00000000..5df70d49
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Class Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Console Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Console Application.png
new file mode 100644
index 00000000..5dfe72be
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Console Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Empty Project.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Empty Project.png
new file mode 100644
index 00000000..b7297967
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Empty Project.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Server Control.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Server Control.png
new file mode 100644
index 00000000..e598cf2d
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Server Control.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Application.png
new file mode 100644
index 00000000..c8fb61ed
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Browser Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Browser Application.png
new file mode 100644
index 00000000..4ed8dd8b
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Browser Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Custom Control Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Custom Control Library.png
new file mode 100644
index 00000000..2a40a174
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF Custom Control Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF User Control Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF User Control Library.png
new file mode 100644
index 00000000..41d3b243
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/WPF User Control Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Web Site.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Web Site.png
new file mode 100644
index 00000000..bda8469c
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Web Site.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Application.png
new file mode 100644
index 00000000..d8271685
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Control Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Control Library.png
new file mode 100644
index 00000000..f1fee1f2
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Forms Control Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Service.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Service.png
new file mode 100644
index 00000000..6868750a
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/CSharp/32x32/Windows Service.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Class Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Class Library.png
new file mode 100644
index 00000000..bfd48753
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Class Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Console Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Console Application.png
new file mode 100644
index 00000000..8bbc1ea3
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Console Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Silverlight Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Silverlight Library.png
new file mode 100644
index 00000000..4c1bd97e
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Silverlight Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Tutorial.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Tutorial.png
new file mode 100644
index 00000000..23841055
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/16x16/Tutorial.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Class Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Class Library.png
new file mode 100644
index 00000000..8deda650
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Class Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Console Application.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Console Application.png
new file mode 100644
index 00000000..1bd8c449
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Console Application.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Silverlight Library.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Silverlight Library.png
new file mode 100644
index 00000000..dc3823ad
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Silverlight Library.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Tutorial.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Tutorial.png
new file mode 100644
index 00000000..af599f5e
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/FSharp/32x32/Tutorial.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Extension.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Extension.png
new file mode 100644
index 00000000..4b9bff4e
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Extension.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/WPF Toolbox Control.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/WPF Toolbox Control.png
new file mode 100644
index 00000000..494ac24f
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/WPF Toolbox Control.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Windows Forms Toolbox Control.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Windows Forms Toolbox Control.png
new file mode 100644
index 00000000..55f80e48
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/16x16/Windows Forms Toolbox Control.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Extension.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Extension.png
new file mode 100644
index 00000000..0e0c0dc4
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Extension.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/WPF Toolbox Control.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/WPF Toolbox Control.png
new file mode 100644
index 00000000..8269ff78
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/WPF Toolbox Control.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Windows Forms Toolbox Control.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Windows Forms Toolbox Control.png
new file mode 100644
index 00000000..567ca16b
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwareDeveloper/Themes/VisualStudio2012/Dark/Images/Templates/Project/Software Development/Common Language Runtime/Generic/32x32/Windows Forms Toolbox Control.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/ArkAngles/Catalog.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/ArkAngles/Catalog.xml
new file mode 100644
index 00000000..3dbd330e
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/ArkAngles/Catalog.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.sel
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/ArkAngles/Setup.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/ArkAngles/Setup.xml
new file mode 100644
index 00000000..3f9484d3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/ArkAngles/Setup.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.set
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/InstallShield/InstallShieldScript.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/InstallShield/InstallShieldScript.xml
new file mode 100644
index 00000000..e69b5d64
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/InstallShield/InstallShieldScript.xml
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+ *.ins
+
+
+
+
+ 300D0A
+ Stirling Technologies, Inc. (c) 1990-1994
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.inx
+
+
+
+ aLuZ
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ *.pkg
+
+
+
+ 4AA3
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/Microsoft/ACME/BootstrapScript.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/Microsoft/ACME/BootstrapScript.xml
new file mode 100644
index 00000000..7a10f25d
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/Microsoft/ACME/BootstrapScript.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.lst
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/RebelSoftware/InstallationPackage.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/RebelSoftware/InstallationPackage.xml
new file mode 100644
index 00000000..bc286372
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/RebelSoftware/InstallationPackage.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.zap
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/RebelSoftware/InstallationScript.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/RebelSoftware/InstallationScript.xml
new file mode 100644
index 00000000..2f81a2f8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/SoftwarePublisher/Associations/Setup/RebelSoftware/InstallationScript.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+ *.iap
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/UniversalEditorDeveloper/ProjectTypes/{13A1DBF5-B527-4218-9442-F1D165033AEB}.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/UniversalEditorDeveloper/ProjectTypes/{13A1DBF5-B527-4218-9442-F1D165033AEB}.xml
new file mode 100644
index 00000000..2a2a47f8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/UniversalEditorDeveloper/ProjectTypes/{13A1DBF5-B527-4218-9442-F1D165033AEB}.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+ Universal Editor plugin project
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/HDMV.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/HDMV.xml
new file mode 100644
index 00000000..a46241f8
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/HDMV.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.clpi
+ *.cpi
+
+
+
+ HDMV
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/INDX.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/INDX.xml
new file mode 100644
index 00000000..70213169
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/INDX.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.bdmv
+ *.bdm
+
+
+
+ INDX
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/MOBJ.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/MOBJ.xml
new file mode 100644
index 00000000..6185a4cd
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/MOBJ.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.bdmv
+ *.bdm
+
+
+
+ MOBJ
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/MPLS.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/MPLS.xml
new file mode 100644
index 00000000..32c64b71
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/BluRay/MPLS.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ *.mpls
+ *.mpl
+
+
+
+ MPLS
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Subtitle/QuickSub.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Subtitle/QuickSub.xml
new file mode 100644
index 00000000..4fcd37aa
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Subtitle/QuickSub.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+ *.qst
+
+
+
+ #TPL-1.0 QuickSub Text File Format
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Subtitle/SubRip.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Subtitle/SubRip.xml
new file mode 100644
index 00000000..51aa61a1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Subtitle/SubRip.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.srt
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Subtitle/SubStationAlpha.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Subtitle/SubStationAlpha.xml
new file mode 100644
index 00000000..f77d55a7
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Subtitle/SubStationAlpha.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+ *.ssa
+ *.ass
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Video/AudioVideoInterleaved.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Video/AudioVideoInterleaved.xml
new file mode 100644
index 00000000..8d407e09
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/VideoWorkstation/Associations/Video/AudioVideoInterleaved.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.avi
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/AddressBook.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/AddressBook.xml
new file mode 100644
index 00000000..5d5b655a
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/AddressBook.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.wab
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/CascadingStyleSheet.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/CascadingStyleSheet.xml
new file mode 100644
index 00000000..6e8f5619
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/CascadingStyleSheet.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.css
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/HTML.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/HTML.xml
new file mode 100644
index 00000000..b558a7bf
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/HTML.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+ *.htm
+ *.html
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/MimeHTML.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/MimeHTML.xml
new file mode 100644
index 00000000..ffb8fa48
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/MimeHTML.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+ *.mht
+ *.mhtml
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/WebServiceDescription.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/WebServiceDescription.xml
new file mode 100644
index 00000000..98369212
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Associations/WebServiceDescription.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ *.wsdl
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/ProjectTypes/{A0786B88-2ADB-4C21-ABE8-AA2D79766269}.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/ProjectTypes/{A0786B88-2ADB-4C21-ABE8-AA2D79766269}.xml
new file mode 100644
index 00000000..48998107
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/ProjectTypes/{A0786B88-2ADB-4C21-ABE8-AA2D79766269}.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+ PHP Web Project
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/ProjectTypes/{AB211699-2C6A-4FCC-97FB-F629B1023277}.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/ProjectTypes/{AB211699-2C6A-4FCC-97FB-F629B1023277}.xml
new file mode 100644
index 00000000..8f75f59b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/ProjectTypes/{AB211699-2C6A-4FCC-97FB-F629B1023277}.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+ XML Transformation Project
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/HTMLPage.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/HTMLPage.ico
new file mode 100644
index 00000000..3cced8c5
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/HTMLPage.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/HTMLPage.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/HTMLPage.xml
new file mode 100644
index 00000000..30dff7b1
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/HTMLPage.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+ HTML Page
+ An HTML page that can include client-side code
+
+
+
+ Web Development
+
+
+
+
+
+
+
+
+
+
+
+ $(PageTitle)
+
+
+
+
+
+]]>
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/MasterPage.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/MasterPage.ico
new file mode 100644
index 00000000..3f06aa73
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/MasterPage.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/MasterPage.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/MasterPage.xml
new file mode 100644
index 00000000..127c0c3a
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/MasterPage.xml
@@ -0,0 +1,48 @@
+
+
+
+
+
+ Master Page
+ A Master Page for Web Applications
+
+
+
+ Web Development
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $(PageTitle)
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/TravelRequest.xsn b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/TravelRequest.xsn
new file mode 100644
index 00000000..cc5d9ef7
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/TravelRequest.xsn differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebForm.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebForm.ico
new file mode 100644
index 00000000..d331d7b7
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebForm.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebForm.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebForm.xml
new file mode 100644
index 00000000..eef3918f
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebForm.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+ Web Form
+ A form for Web Applications
+
+
+
+ Web Development
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $(PageTitle)
+
+
+
+
+]]>
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebService.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebService.ico
new file mode 100644
index 00000000..1aa23046
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebService.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebService.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebService.xml
new file mode 100644
index 00000000..8725f44f
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebService.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+ Web Service
+ A visually-designed class for creating a Web Service
+
+
+
+ Web Development
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+using System;
+using System.Collections;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Web;
+using System.Web.Services;
+
+[WebService(Namespace = "$(Namespace)")]
+[WebServiceBinding(ConformsTo = WsiProfiles.$(ConformsTo))]
+// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
+// [System.Web.Script.Services.ScriptService]
+public class WebService1 : System.Web.Services.WebService
+{
+ public WebService1()
+ {
+ //
+ // TODO: Add any constructor code required
+ //
+ }
+
+ // WEB SERVICE EXAMPLE
+ // The HelloWorld() example service returns the string Hello World.
+
+ [WebMethod]
+ public string HelloWorld()
+ {
+ return "Hello World";
+ }
+}
+]]>
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebUserControl.ico b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebUserControl.ico
new file mode 100644
index 00000000..455d76c8
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebUserControl.ico differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebUserControl.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebUserControl.xml
new file mode 100644
index 00000000..9cbba705
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Document/Web/WebUserControl.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+ Web User Control
+ An ASP.NET server control created using the visual designer
+
+
+
+ Web Development
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ASP.NET/IronPython/Images/Website_16x16.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ASP.NET/IronPython/Images/Website_16x16.png
new file mode 100644
index 00000000..3479109a
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ASP.NET/IronPython/Images/Website_16x16.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ASP.NET/IronPython/Images/Website_32x32.png b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ASP.NET/IronPython/Images/Website_32x32.png
new file mode 100644
index 00000000..d0d634f8
Binary files /dev/null and b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ASP.NET/IronPython/Images/Website_32x32.png differ
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ASP.NET/IronPython/IronPython Web Project.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ASP.NET/IronPython/IronPython Web Project.xml
new file mode 100644
index 00000000..89a1010b
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ASP.NET/IronPython/IronPython Web Project.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+ IronPython Web Project
+
+
+ Website Development
+ ASP.NET
+ IronPython
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ColdFusion/ColdFusion Project.xml b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ColdFusion/ColdFusion Project.xml
new file mode 100644
index 00000000..54d486b3
--- /dev/null
+++ b/CSharp/V5/Content/UniversalEditor.Content.PlatformIndependent/Extensions/WebsiteDeveloper/Templates/Project/Website Development/ColdFusion/ColdFusion Project.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+ Basic Project
+
+
+ Website Development
+ ColdFusion
+
+
+
+
+
+
+
+ Hello World
+
+
+ #ucase("hello world")#
+
+