From ae3cf96758f3ba1deb31955f26ac8670e749dc42 Mon Sep 17 00:00:00 2001 From: Nathan Crawford Date: Thu, 22 Jan 2009 03:56:40 +0000 Subject: [PATCH] Added shell thumbnail project, bumped version for next release --- PesFile/Properties/AssemblyInfo.cs | 4 +- embroideryReader.sln | 10 +++++ embroideryReader/Properties/AssemblyInfo.cs | 4 +- embroideryThumbs/PESThumbnail.cs | 23 ++++++++++ embroideryThumbs/Properties/AssemblyInfo.cs | 35 +++++++++++++++ embroideryThumbs/embroideryThumbs.csproj | 48 +++++++++++++++++++++ 6 files changed, 120 insertions(+), 4 deletions(-) create mode 100644 embroideryThumbs/PESThumbnail.cs create mode 100644 embroideryThumbs/Properties/AssemblyInfo.cs create mode 100644 embroideryThumbs/embroideryThumbs.csproj diff --git a/PesFile/Properties/AssemblyInfo.cs b/PesFile/Properties/AssemblyInfo.cs index 5df2ef7..02a0616 100644 --- a/PesFile/Properties/AssemblyInfo.cs +++ b/PesFile/Properties/AssemblyInfo.cs @@ -55,5 +55,5 @@ using System.Runtime.InteropServices; // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.1.218")] -[assembly: AssemblyFileVersion("1.0.1.218")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] diff --git a/embroideryReader.sln b/embroideryReader.sln index a025437..68ffc59 100644 --- a/embroideryReader.sln +++ b/embroideryReader.sln @@ -36,6 +36,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{1BA749B5-4 docs\pes0001.html = docs\pes0001.html EndProjectSection EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "embroideryThumbs", "embroideryThumbs\embroideryThumbs.csproj", "{978B855C-C9CD-4A5E-A335-9ED8DD3E001A}" + ProjectSection(WebsiteProperties) = preProject + Debug.AspNetCompiler.Debug = "True" + Release.AspNetCompiler.Debug = "False" + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -58,6 +64,10 @@ Global {66EF662E-F52C-4104-9C15-A14266D8F3B8}.Debug|Any CPU.Build.0 = Debug|Any CPU {66EF662E-F52C-4104-9C15-A14266D8F3B8}.Release|Any CPU.ActiveCfg = Release|Any CPU {66EF662E-F52C-4104-9C15-A14266D8F3B8}.Release|Any CPU.Build.0 = Release|Any CPU + {978B855C-C9CD-4A5E-A335-9ED8DD3E001A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {978B855C-C9CD-4A5E-A335-9ED8DD3E001A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {978B855C-C9CD-4A5E-A335-9ED8DD3E001A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {978B855C-C9CD-4A5E-A335-9ED8DD3E001A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/embroideryReader/Properties/AssemblyInfo.cs b/embroideryReader/Properties/AssemblyInfo.cs index a0adb8d..8c259f9 100644 --- a/embroideryReader/Properties/AssemblyInfo.cs +++ b/embroideryReader/Properties/AssemblyInfo.cs @@ -54,5 +54,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("1.3.0.25")] -[assembly: AssemblyFileVersion("1.3.0.25")] +[assembly: AssemblyVersion("1.4.0.0")] +[assembly: AssemblyFileVersion("1.4.0.0")] diff --git a/embroideryThumbs/PESThumbnail.cs b/embroideryThumbs/PESThumbnail.cs new file mode 100644 index 0000000..cf30a4d --- /dev/null +++ b/embroideryThumbs/PESThumbnail.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace embroideryThumbs +{ + public class PESThumbnail + { + //public HRESULT QueryInterface() + //{ + + //} + //public UInt64 AddRef() + //{ + + //} + //public UInt64 Release() + //{ + + //} + //public HRESULT Extract(HBITMAP + } +} diff --git a/embroideryThumbs/Properties/AssemblyInfo.cs b/embroideryThumbs/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2a418d8 --- /dev/null +++ b/embroideryThumbs/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +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("embroideryThumbs")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("embroideryThumbs")] +[assembly: AssemblyCopyright("Copyright © 2009")] +[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("36115830-3226-4c7d-9abc-937cc8932cf6")] + +// 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 Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/embroideryThumbs/embroideryThumbs.csproj b/embroideryThumbs/embroideryThumbs.csproj new file mode 100644 index 0000000..d48c397 --- /dev/null +++ b/embroideryThumbs/embroideryThumbs.csproj @@ -0,0 +1,48 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {978B855C-C9CD-4A5E-A335-9ED8DD3E001A} + Library + Properties + embroideryThumbs + embroideryThumbs + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + \ No newline at end of file