From daabf4a93d3a138dab31b654011ca4e498cdfdfb Mon Sep 17 00:00:00 2001 From: alcexhim Date: Mon, 23 Jun 2014 10:14:40 -0400 Subject: [PATCH] Fixed duplicate TARGETS warning --- ...niversalEditor.Plugins.Multimedia3D.csproj | 3 +- CSharp/TestAppForLZRW1Decompressor/Program.cs | 27 ++++ .../Properties/AssemblyInfo.cs | 36 ++++++ .../Properties/Resources.Designer.cs | 71 +++++++++++ .../Properties/Resources.resx | 117 ++++++++++++++++++ .../Properties/Settings.Designer.cs | 30 +++++ .../Properties/Settings.settings | 7 ++ .../TestAppForLZRW1Decompressor.csproj | 84 +++++++++++++ CSharp/UniversalEditor.WindowsForms.sln | 4 +- 9 files changed, 375 insertions(+), 4 deletions(-) create mode 100644 CSharp/TestAppForLZRW1Decompressor/Program.cs create mode 100644 CSharp/TestAppForLZRW1Decompressor/Properties/AssemblyInfo.cs create mode 100644 CSharp/TestAppForLZRW1Decompressor/Properties/Resources.Designer.cs create mode 100644 CSharp/TestAppForLZRW1Decompressor/Properties/Resources.resx create mode 100644 CSharp/TestAppForLZRW1Decompressor/Properties/Settings.Designer.cs create mode 100644 CSharp/TestAppForLZRW1Decompressor/Properties/Settings.settings create mode 100644 CSharp/TestAppForLZRW1Decompressor/TestAppForLZRW1Decompressor.csproj diff --git a/CSharp/Plugins/UniversalEditor.Plugins.Multimedia3D/UniversalEditor.Plugins.Multimedia3D.csproj b/CSharp/Plugins/UniversalEditor.Plugins.Multimedia3D/UniversalEditor.Plugins.Multimedia3D.csproj index 81420b66..b1cfe614 100644 --- a/CSharp/Plugins/UniversalEditor.Plugins.Multimedia3D/UniversalEditor.Plugins.Multimedia3D.csproj +++ b/CSharp/Plugins/UniversalEditor.Plugins.Multimedia3D/UniversalEditor.Plugins.Multimedia3D.csproj @@ -1,4 +1,4 @@ - + {4FD9DB1D-76AA-48D1-8446-95376C4A2BC2} @@ -205,5 +205,4 @@ - \ No newline at end of file diff --git a/CSharp/TestAppForLZRW1Decompressor/Program.cs b/CSharp/TestAppForLZRW1Decompressor/Program.cs new file mode 100644 index 00000000..9fbf0dbd --- /dev/null +++ b/CSharp/TestAppForLZRW1Decompressor/Program.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace TestAppForLZRW1Decompressor +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + + byte[] input = System.IO.File.ReadAllBytes(@"C:\Temp\lzrw1.dat"); + System.IO.MemoryStream msi = new System.IO.MemoryStream(input); + System.IO.MemoryStream mso = new System.IO.MemoryStream(); + + UniversalEditor.Compression.Modules.LZRW1.LZRW1CompressionModule module = new UniversalEditor.Compression.Modules.LZRW1.LZRW1CompressionModule(); + module.Decompress(msi, mso); + + System.IO.File.WriteAllBytes(@"C:\Temp\lzrw1.txt", mso.ToArray()); + } + } +} diff --git a/CSharp/TestAppForLZRW1Decompressor/Properties/AssemblyInfo.cs b/CSharp/TestAppForLZRW1Decompressor/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..a8689365 --- /dev/null +++ b/CSharp/TestAppForLZRW1Decompressor/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("TestAppForLZRW1Decompressor")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("City of Orlando")] +[assembly: AssemblyProduct("TestAppForLZRW1Decompressor")] +[assembly: AssemblyCopyright("Copyright © City of Orlando 2014")] +[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("7340f500-c969-4681-983d-fff835d141c5")] + +// 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/TestAppForLZRW1Decompressor/Properties/Resources.Designer.cs b/CSharp/TestAppForLZRW1Decompressor/Properties/Resources.Designer.cs new file mode 100644 index 00000000..3a732f3a --- /dev/null +++ b/CSharp/TestAppForLZRW1Decompressor/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.18444 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace TestAppForLZRW1Decompressor.Properties +{ + + + /// + /// 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 ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TestAppForLZRW1Decompressor.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/TestAppForLZRW1Decompressor/Properties/Resources.resx b/CSharp/TestAppForLZRW1Decompressor/Properties/Resources.resx new file mode 100644 index 00000000..af7dbebb --- /dev/null +++ b/CSharp/TestAppForLZRW1Decompressor/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/TestAppForLZRW1Decompressor/Properties/Settings.Designer.cs b/CSharp/TestAppForLZRW1Decompressor/Properties/Settings.Designer.cs new file mode 100644 index 00000000..20e081f3 --- /dev/null +++ b/CSharp/TestAppForLZRW1Decompressor/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.18444 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace TestAppForLZRW1Decompressor.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/TestAppForLZRW1Decompressor/Properties/Settings.settings b/CSharp/TestAppForLZRW1Decompressor/Properties/Settings.settings new file mode 100644 index 00000000..39645652 --- /dev/null +++ b/CSharp/TestAppForLZRW1Decompressor/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/CSharp/TestAppForLZRW1Decompressor/TestAppForLZRW1Decompressor.csproj b/CSharp/TestAppForLZRW1Decompressor/TestAppForLZRW1Decompressor.csproj new file mode 100644 index 00000000..0047cef1 --- /dev/null +++ b/CSharp/TestAppForLZRW1Decompressor/TestAppForLZRW1Decompressor.csproj @@ -0,0 +1,84 @@ + + + + + Debug + AnyCPU + {34A71303-2EC6-46B8-81AA-8509FF64C1EA} + WinExe + Properties + TestAppForLZRW1Decompressor + TestAppForLZRW1Decompressor + v3.5 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + {3f664673-7e22-4486-9ad0-fc81861d0b78} + UniversalEditor.Compression + + + {2d4737e6-6d95-408a-90db-8dff38147e85} + UniversalEditor.Core + + + {30467e5c-05bc-4856-aadc-13906ef4cadd} + UniversalEditor.Essential + + + + + \ No newline at end of file diff --git a/CSharp/UniversalEditor.WindowsForms.sln b/CSharp/UniversalEditor.WindowsForms.sln index 32648d57..565e1eba 100644 --- a/CSharp/UniversalEditor.WindowsForms.sln +++ b/CSharp/UniversalEditor.WindowsForms.sln @@ -1,6 +1,6 @@  -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 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}"