diff --git a/ClosedXML.sln b/ClosedXML.sln index cd1cd87..c0bd8ee 100644 --- a/ClosedXML.sln +++ b/ClosedXML.sln @@ -26,23 +26,32 @@ Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Release.Signed|Any CPU = Release.Signed|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {38B882F0-E6F2-45C5-9BE9-CDC27FBEB4AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {38B882F0-E6F2-45C5-9BE9-CDC27FBEB4AB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {38B882F0-E6F2-45C5-9BE9-CDC27FBEB4AB}.Release.Signed|Any CPU.ActiveCfg = Release.Signed|Any CPU + {38B882F0-E6F2-45C5-9BE9-CDC27FBEB4AB}.Release.Signed|Any CPU.Build.0 = Release.Signed|Any CPU {38B882F0-E6F2-45C5-9BE9-CDC27FBEB4AB}.Release|Any CPU.ActiveCfg = Release|Any CPU {38B882F0-E6F2-45C5-9BE9-CDC27FBEB4AB}.Release|Any CPU.Build.0 = Release|Any CPU {03A518D0-1CB7-488E-861C-C4E782B27A46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {03A518D0-1CB7-488E-861C-C4E782B27A46}.Debug|Any CPU.Build.0 = Debug|Any CPU + {03A518D0-1CB7-488E-861C-C4E782B27A46}.Release.Signed|Any CPU.ActiveCfg = Release.Signed|Any CPU + {03A518D0-1CB7-488E-861C-C4E782B27A46}.Release.Signed|Any CPU.Build.0 = Release.Signed|Any CPU {03A518D0-1CB7-488E-861C-C4E782B27A46}.Release|Any CPU.ActiveCfg = Release|Any CPU {03A518D0-1CB7-488E-861C-C4E782B27A46}.Release|Any CPU.Build.0 = Release|Any CPU {BD5E6BFE-E837-4A35-BCA9-39667D873A20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BD5E6BFE-E837-4A35-BCA9-39667D873A20}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BD5E6BFE-E837-4A35-BCA9-39667D873A20}.Release.Signed|Any CPU.ActiveCfg = Release.Signed|Any CPU + {BD5E6BFE-E837-4A35-BCA9-39667D873A20}.Release.Signed|Any CPU.Build.0 = Release.Signed|Any CPU {BD5E6BFE-E837-4A35-BCA9-39667D873A20}.Release|Any CPU.ActiveCfg = Release|Any CPU {BD5E6BFE-E837-4A35-BCA9-39667D873A20}.Release|Any CPU.Build.0 = Release|Any CPU {09B066ED-E4A7-4545-A1A4-FF03DD524BDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {09B066ED-E4A7-4545-A1A4-FF03DD524BDF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {09B066ED-E4A7-4545-A1A4-FF03DD524BDF}.Release.Signed|Any CPU.ActiveCfg = Release.Signed|Any CPU + {09B066ED-E4A7-4545-A1A4-FF03DD524BDF}.Release.Signed|Any CPU.Build.0 = Release.Signed|Any CPU {09B066ED-E4A7-4545-A1A4-FF03DD524BDF}.Release|Any CPU.ActiveCfg = Release|Any CPU {09B066ED-E4A7-4545-A1A4-FF03DD524BDF}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection diff --git a/ClosedXML/ClosedXML.csproj b/ClosedXML/ClosedXML.csproj index 76984c8..b9e5568 100644 --- a/ClosedXML/ClosedXML.csproj +++ b/ClosedXML/ClosedXML.csproj @@ -3,22 +3,36 @@ netstandard2.0;net40;net46 7.2 + ClosedXML + ClosedXML 0.93.0 - Manuel de Leon, Amir Ghezelbash, Francois Botha + Manuel de Leon, Amir Ghezelbash, Francois Botha, Aleksei Pankratev - + ClosedXML + See https://github.com/ClosedXML/ClosedXML/releases/tag/$(productVersion) ClosedXML makes it easier for developers to create Excel 2007+ (.xlsx, .xlsm, etc) files. It provides a nice object oriented way to manipulate the files (similar to VBA) without dealing with the hassles of XML Documents. It can be used by any .NET language like C# and VisualBasic.NET. MIT https://github.com/ClosedXML/ClosedXML/blob/master/LICENSE https://github.com/ClosedXML/ClosedXML https://github.com/ClosedXML/ClosedXML - true - ClosedXML.snk true $(NoWarn);NU1605;CS1591 true + Debug;Release;Release.Signed + + bin\Release.Signed\ + true + true + ClosedXML.snk + $(DefineConstants);STRONGNAME + + + + true + + $(DefineConstants);_NETSTANDARD_;_NETSTANDARD2_0_ diff --git a/ClosedXML/ClosedXML.nuspec b/ClosedXML/ClosedXML.nuspec index e2c588f..07006ea 100644 --- a/ClosedXML/ClosedXML.nuspec +++ b/ClosedXML/ClosedXML.nuspec @@ -1,34 +1,17 @@  - ClosedXML + $id$ $version$ - ClosedXML - Manuel De Leon,Francois Botha,Aleksei Pankratev - Manuel De Leon,Francois Botha,Aleksei Pankratev + $title$ + $author$ + $author$ ClosedXML makes it easier for developers to create Excel 2007+ (.xlsx, .xlsm, etc) files. It provides a nice object oriented way to manipulate the files (similar to VBA) without dealing with the hassles of XML Documents. It can be used by any .NET language like C# and VisualBasic.NET. https://github.com/ClosedXML/ClosedXML/blob/master/LICENSE https://github.com/ClosedXML/ClosedXML false - - - - - - - - - - - - - - - - - - - + @ClosedXML + ClosedXML diff --git a/ClosedXML/Properties/AssemblyInfo.cs b/ClosedXML/Properties/AssemblyInfo.cs index ddf1df5..4c21750 100644 --- a/ClosedXML/Properties/AssemblyInfo.cs +++ b/ClosedXML/Properties/AssemblyInfo.cs @@ -1 +1,5 @@ -[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ClosedXML_Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100a1fb8ba59167fe734d64128ca73d32c45cb8a117246d09c95c8769db88fe332b0a3396bedd0ea48ee42b0e5796fec0798ca5cb628a9a6de80d35d6c67b936ca1670347b3d4f2b769c8ce2ddcf959dbac6bcd88e6c08751ea1fffa0522de3507193e7035305a8aa008d6c88cca1341b3120fa9c347ab3f97e2d772e2709277da5")] +#if STRONGNAME +[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ClosedXML_Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100a1fb8ba59167fe734d64128ca73d32c45cb8a117246d09c95c8769db88fe332b0a3396bedd0ea48ee42b0e5796fec0798ca5cb628a9a6de80d35d6c67b936ca1670347b3d4f2b769c8ce2ddcf959dbac6bcd88e6c08751ea1fffa0522de3507193e7035305a8aa008d6c88cca1341b3120fa9c347ab3f97e2d772e2709277da5")] +#else +[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ClosedXML_Tests")] +#endif diff --git a/ClosedXML_Examples/ClosedXML_Examples.csproj b/ClosedXML_Examples/ClosedXML_Examples.csproj index c0db642..a614307 100644 --- a/ClosedXML_Examples/ClosedXML_Examples.csproj +++ b/ClosedXML_Examples/ClosedXML_Examples.csproj @@ -5,9 +5,15 @@ 7.2 Exe 0.93.0 + $(NoWarn);NU1605 + Debug;Release;Release.Signed + + + + bin\Release.Signed\ true ClosedXML.snk - $(NoWarn);NU1605 + $(DefineConstants);STRONGNAME diff --git a/ClosedXML_Sandbox/ClosedXML_Sandbox.csproj b/ClosedXML_Sandbox/ClosedXML_Sandbox.csproj index a7e6204..ebdbf14 100644 --- a/ClosedXML_Sandbox/ClosedXML_Sandbox.csproj +++ b/ClosedXML_Sandbox/ClosedXML_Sandbox.csproj @@ -6,6 +6,7 @@ 7.2 0.93.0 $(NoWarn);NU1605 + Debug;Release;Release.Signed diff --git a/ClosedXML_Tests/ClosedXML_Tests.csproj b/ClosedXML_Tests/ClosedXML_Tests.csproj index 4f2ab7a..7ad6697 100644 --- a/ClosedXML_Tests/ClosedXML_Tests.csproj +++ b/ClosedXML_Tests/ClosedXML_Tests.csproj @@ -6,12 +6,18 @@ 0.93.0 false $(NoWarn);NU1605 + Debug;Release;Release.Signed $(AppVeyor) + + + + bin\Release.Signed\ true ClosedXML.snk + $(DefineConstants);STRONGNAME