diff --git a/CSharp/Applications/UniversalEditor.ConsoleApplication/Program.cs b/CSharp/Applications/UniversalEditor.ConsoleApplication/Program.cs
deleted file mode 100644
index e3fb4383..00000000
--- a/CSharp/Applications/UniversalEditor.ConsoleApplication/Program.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-using UniversalEditor.Accessors;
-
-namespace UniversalEditor.ConsoleApplication
-{
- class Program
- {
- static void Main(string[] args)
- {
- FileAccessor fa = new FileAccessor(@"C:\Temp\TEST.DAT", true, false);
-
- TestObjectModel om = new TestObjectModel();
- // om.Count = 5734213958;
-
- TestDataFormat df = new TestDataFormat();
-
- Document doc = new Document(om, df, fa);
- doc.Load();
- }
- }
-}
diff --git a/CSharp/Applications/UniversalEditor.ConsoleApplication/Properties/AssemblyInfo.cs b/CSharp/Applications/UniversalEditor.ConsoleApplication/Properties/AssemblyInfo.cs
deleted file mode 100644
index 80da2ad9..00000000
--- a/CSharp/Applications/UniversalEditor.ConsoleApplication/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("Universal Editor Console Application")]
-[assembly: AssemblyDescription("")]
-[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("0eae9e6c-4289-4239-841b-7b683290480e")]
-
-// 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/Applications/UniversalEditor.ConsoleApplication/TestDataFormat.cs b/CSharp/Applications/UniversalEditor.ConsoleApplication/TestDataFormat.cs
deleted file mode 100644
index 4abaf6a0..00000000
--- a/CSharp/Applications/UniversalEditor.ConsoleApplication/TestDataFormat.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace UniversalEditor.ConsoleApplication
-{
- public class TestDataFormat : DataFormat
- {
- protected override void LoadInternal(ref ObjectModel objectModel)
- {
- TestObjectModel test = (objectModel as TestObjectModel);
- string DISTAL00 = Accessor.Reader.ReadFixedLengthString(8);
- if (DISTAL00 != "DISTAL00") throw new InvalidDataFormatException();
-
- test.Count = Accessor.Reader.ReadInt64();
- }
- protected override void SaveInternal(ObjectModel objectModel)
- {
- TestObjectModel test = (objectModel as TestObjectModel);
- Accessor.Writer.WriteFixedLengthString("DISTAL00");
- Accessor.Writer.WriteInt64(test.Count);
- }
- }
-}
diff --git a/CSharp/Applications/UniversalEditor.ConsoleApplication/TestObjectModel.cs b/CSharp/Applications/UniversalEditor.ConsoleApplication/TestObjectModel.cs
deleted file mode 100644
index 14fc0ce7..00000000
--- a/CSharp/Applications/UniversalEditor.ConsoleApplication/TestObjectModel.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace UniversalEditor.ConsoleApplication
-{
- public class TestObjectModel : ObjectModel
- {
- private long mvarCount = 0;
- public long Count { get { return mvarCount; } set { mvarCount = value; } }
-
- public override void Clear()
- {
- mvarCount = 0;
- }
-
- public override void CopyTo(ObjectModel where)
- {
- TestObjectModel clone = (where as TestObjectModel);
- clone.Count = mvarCount;
- }
- }
-}
diff --git a/CSharp/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj b/CSharp/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj
deleted file mode 100644
index 1c64da5b..00000000
--- a/CSharp/Applications/UniversalEditor.ConsoleApplication/UniversalEditor.ConsoleApplication.csproj
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 8.0.30703
- 2.0
- {BAC9FDFD-C39E-4A90-B9F8-CF75B551BE10}
- Exe
- Properties
- UniversalEditor.ConsoleApplication
- ueditcli
- v3.5
- 512
-
-
- false
-
-
- true
-
-
- true
- bin\Debug\
- DEBUG;TRACE
- full
- AnyCPU
- prompt
- 4
- false
-
-
- bin\Release\
- TRACE
- true
- pdbonly
- AnyCPU
- prompt
- false
- false
- false
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {2D4737E6-6D95-408A-90DB-8DFF38147E85}
- UniversalEditor.Core
-
-
-
-
-
\ No newline at end of file
diff --git a/CSharp/Applications/UniversalEditor.ConsoleApplication/app.config b/CSharp/Applications/UniversalEditor.ConsoleApplication/app.config
deleted file mode 100644
index e59af44d..00000000
--- a/CSharp/Applications/UniversalEditor.ConsoleApplication/app.config
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
diff --git a/CSharp/UniversalEditor.WindowsForms.sln b/CSharp/UniversalEditor.WindowsForms.sln
index 495a277a..9c97a846 100644
--- a/CSharp/UniversalEditor.WindowsForms.sln
+++ b/CSharp/UniversalEditor.WindowsForms.sln
@@ -1,14 +1,14 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 2012
+# Visual Studio 2013
+VisualStudioVersion = 12.0.21005.1
+MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Libraries", "Libraries", "{15D19291-4200-4C30-A68A-0191B6F83BE1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Core", "Libraries\UniversalEditor.Core\UniversalEditor.Core.csproj", "{2D4737E6-6D95-408A-90DB-8DFF38147E85}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Applications", "Applications", "{A935623A-E98E-43FF-BBE2-DAA61A587345}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.ConsoleApplication", "Applications\UniversalEditor.ConsoleApplication\UniversalEditor.ConsoleApplication.csproj", "{BAC9FDFD-C39E-4A90-B9F8-CF75B551BE10}"
-EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{71CFF024-26F7-4626-A526-B435FDF8D64E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Essential", "Plugins\UniversalEditor.Essential\UniversalEditor.Essential.csproj", "{30467E5C-05BC-4856-AADC-13906EF4CADD}"
@@ -146,10 +146,6 @@ Global
{2D4737E6-6D95-408A-90DB-8DFF38147E85}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2D4737E6-6D95-408A-90DB-8DFF38147E85}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2D4737E6-6D95-408A-90DB-8DFF38147E85}.Release|Any CPU.Build.0 = Release|Any CPU
- {BAC9FDFD-C39E-4A90-B9F8-CF75B551BE10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {BAC9FDFD-C39E-4A90-B9F8-CF75B551BE10}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {BAC9FDFD-C39E-4A90-B9F8-CF75B551BE10}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {BAC9FDFD-C39E-4A90-B9F8-CF75B551BE10}.Release|Any CPU.Build.0 = Release|Any CPU
{30467E5C-05BC-4856-AADC-13906EF4CADD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{30467E5C-05BC-4856-AADC-13906EF4CADD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{30467E5C-05BC-4856-AADC-13906EF4CADD}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -374,7 +370,6 @@ Global
{2D4737E6-6D95-408A-90DB-8DFF38147E85} = {15D19291-4200-4C30-A68A-0191B6F83BE1}
{3F664673-7E22-4486-9AD0-FC81861D0B78} = {15D19291-4200-4C30-A68A-0191B6F83BE1}
{8622EBC4-8E20-476E-B284-33D472081F5C} = {15D19291-4200-4C30-A68A-0191B6F83BE1}
- {BAC9FDFD-C39E-4A90-B9F8-CF75B551BE10} = {A935623A-E98E-43FF-BBE2-DAA61A587345}
{6F0AB1AF-E1A1-4D19-B19C-05BBB15C94B2} = {A935623A-E98E-43FF-BBE2-DAA61A587345}
{62CFC025-B8CF-42AA-880A-92F27377FCAF} = {A935623A-E98E-43FF-BBE2-DAA61A587345}
{30467E5C-05BC-4856-AADC-13906EF4CADD} = {71CFF024-26F7-4626-A526-B435FDF8D64E}