forked from squid-box/SevenZipSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.regular.nuspec
More file actions
39 lines (39 loc) · 2.13 KB
/
package.regular.nuspec
File metadata and controls
39 lines (39 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Squid-Box.SevenZipSharp</id>
<version>1.0.0</version>
<authors>Joel Ahlgren</authors>
<summary>Managed 7-zip library written in C# that provides data (self-)extraction and compression (all 7-zip formats are supported).</summary>
<description>Wraps 7z.dll or any compatible one and makes use of LZMA SDK, includes self-extraction functionality.</description>
<language>en-US</language>
<license type="expression">LGPL-3.0-only</license>
<projectUrl>https://github.com/squid-box/SevenZipSharp</projectUrl>
<tags>7z sevenzip sevenzipsharp 7-zip</tags>
<releaseNotes>
Added new NuGet package excluding self-extraction functionality (Squid-Box.SevenZipSharp.Lite).
Added .NET Core 3.1 target, to prepare for future fixes.
Fixed issue with custom compression parameters for multithreading.
Fixed issue with exception handling in asynchronous compression and extraction methods, thanks to GitHub user kikijiki.
</releaseNotes>
<dependencies>
<group targetFramework="net45" />
<group targetFramework="netstandard2.0">
<dependency id="System.Configuration.ConfigurationManager" version="4.5.0" />
<dependency id="System.Security.Permissions" version="4.5.0" />
</group>
<group targetFramework="netcoreapp3.1">
<dependency id="System.Configuration.ConfigurationManager" version="4.5.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="Stage\Release\netstandard2.0\SevenZipSharp.dll" target="lib\netstandard2.0" />
<file src="Stage\Release\netstandard2.0\SevenZipSharp.xml" target="lib\netstandard2.0" />
<file src="Stage\Release\netcoreapp3.1\SevenZipSharp.dll" target="lib\netcoreapp3.1" />
<file src="Stage\Release\netcoreapp3.1\SevenZipSharp.xml" target="lib\netcoreapp3.1" />
<file src="Stage\Release\net45\SevenZipSharp.dll" target="lib\net45" />
<file src="Stage\Release\net45\SevenZipSharp.xml" target="lib\net45" />
<file src="license" />
</files>
</package>