diff --git a/ClosedXML.sln b/ClosedXML.sln index f87028c..a480099 100644 --- a/ClosedXML.sln +++ b/ClosedXML.sln @@ -9,9 +9,6 @@ ProjectSection(SolutionItems) = preProject ClosedXML.vsmdi = ClosedXML.vsmdi DocumentFormat.OpenXml.dll = DocumentFormat.OpenXml.dll - Ionic.Zip.dll = Ionic.Zip.dll - Local.testsettings = Local.testsettings - TraceAndTestImpact.testsettings = TraceAndTestImpact.testsettings EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClosedXML_Examples", "ClosedXML_Examples\ClosedXML_Examples.csproj", "{03A518D0-1CB7-488E-861C-C4E782B27A46}" @@ -22,8 +19,6 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClosedXML_Tests", "ClosedXML_Tests\ClosedXML_Tests.csproj", "{09B066ED-E4A7-4545-A1A4-FF03DD524BDF}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClosedXML_Package", "ClosedXML_Package\ClosedXML_Package.csproj", "{69B3BDDF-C359-447C-AEB7-EBD8867DE528}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{8018E34C-28E4-4FAF-87DC-A71D6275C567}" ProjectSection(SolutionItems) = preProject .nuget\NuGet.Config = .nuget\NuGet.Config @@ -119,20 +114,6 @@ {09B066ED-E4A7-4545-A1A4-FF03DD524BDF}.Release|Mixed Platforms.Build.0 = Release|Any CPU {09B066ED-E4A7-4545-A1A4-FF03DD524BDF}.Release|x64.ActiveCfg = Release|Any CPU {09B066ED-E4A7-4545-A1A4-FF03DD524BDF}.Release|x86.ActiveCfg = Release|Any CPU - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Debug|Any CPU.ActiveCfg = Debug|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Debug|Any CPU.Build.0 = Debug|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Debug|Mixed Platforms.Build.0 = Debug|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Debug|x64.ActiveCfg = Debug|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Debug|x86.ActiveCfg = Debug|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Debug|x86.Build.0 = Debug|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Release|Any CPU.ActiveCfg = Release|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Release|Any CPU.Build.0 = Release|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Release|Mixed Platforms.ActiveCfg = Release|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Release|Mixed Platforms.Build.0 = Release|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Release|x64.ActiveCfg = Release|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Release|x86.ActiveCfg = Release|x86 - {69B3BDDF-C359-447C-AEB7-EBD8867DE528}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/ClosedXML/ClosedXML.csproj b/ClosedXML/ClosedXML.csproj index 4e430ca..45f5430 100644 --- a/ClosedXML/ClosedXML.csproj +++ b/ClosedXML/ClosedXML.csproj @@ -397,9 +397,6 @@ - - IF EXIST $(SolutionDir)ClosedXML_Package\bin\Release\ClosedXML_Package.exe $(SolutionDir)ClosedXML_Package\bin\Release\ClosedXML_Package.exe $(TargetDir) - diff --git a/ClosedXML_Net3.5/ClosedXML_Net3.5.csproj b/ClosedXML_Net3.5/ClosedXML_Net3.5.csproj index cedc4a3..c5d1888 100644 --- a/ClosedXML_Net3.5/ClosedXML_Net3.5.csproj +++ b/ClosedXML_Net3.5/ClosedXML_Net3.5.csproj @@ -896,9 +896,6 @@ - - IF EXIST $(SolutionDir)ClosedXML_Package\bin\Release\ClosedXML_Package.exe $(SolutionDir)ClosedXML_Package\bin\Release\ClosedXML_Package.exe $(TargetDir) - - \ No newline at end of file diff --git a/ClosedXML_Package/Program.cs b/ClosedXML_Package/Program.cs deleted file mode 100644 index ec8f7c7..0000000 --- a/ClosedXML_Package/Program.cs +++ /dev/null @@ -1,62 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Windows.Forms; -using Ionic.Zip; - -namespace ClosedXML_Package -{ - class Program - { - static void Main(string[] args) - { -#if DEBUG - return; -#endif - try - { - var targetPath = args[0]; - //if (!targetPath.EndsWith("Release")) return; - - var targetDll = String.Format(@"{0}\ClosedXML.dll", targetPath); - var targetXml = String.Format(@"{0}\ClosedXML.XML", targetPath); - - if (!File.Exists(targetDll)) - { - MessageBox.Show("Missing: " + targetDll); - return; - } - if (!File.Exists(targetXml)) - { - MessageBox.Show("Missing: " + targetXml); - return; - } - - Assembly assembly = Assembly.LoadFrom(targetDll); - Version ver = assembly.GetName().Version; - var targetZipPath = String.Format(@"{0}\ClosedXML_v{1}.zip", targetPath, ver); - var targetZipInfo = new FileInfo(targetZipPath); - if (targetZipInfo.Exists) targetZipInfo.Delete(); - - using (ZipFile zip = new ZipFile()) - { - zip.AddFile(targetDll, ""); - zip.AddFile(targetXml, ""); - zip.Save(targetZipPath); - } - } - catch (Exception ex) - { - var strMsg = "->" + ex.Message; - if (ex.InnerException != null) - strMsg += Environment.NewLine + "=>" + ex.InnerException.Message; - MessageBox.Show(strMsg); - } - - } - } -} diff --git a/ClosedXML_Package/Properties/AssemblyInfo.cs b/ClosedXML_Package/Properties/AssemblyInfo.cs deleted file mode 100644 index a7e306e..0000000 --- a/ClosedXML_Package/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("ClosedXML_Package")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("eCollege")] -[assembly: AssemblyProduct("ClosedXML_Package")] -[assembly: AssemblyCopyright("Copyright © eCollege 2012")] -[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("0005e3ad-3c3f-4446-a3ab-89fc837fb20f")] - -// 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/ClosedXML_Package/app.config b/ClosedXML_Package/app.config deleted file mode 100644 index cb2586b..0000000 --- a/ClosedXML_Package/app.config +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/Ionic.Zip.dll b/Ionic.Zip.dll deleted file mode 100644 index 95fa928..0000000 --- a/Ionic.Zip.dll +++ /dev/null Binary files differ