forked from squid-box/SevenZipSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.nuspec
28 lines (28 loc) · 1.6 KB
/
package.nuspec
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
<?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.2.0</version>
<authors>Joel Ahlgren, Thomas Piart, markhor, Thomas Caudal</authors>
<summary>Managed 7-zip library written in C# (.NET 4.5 and .NET Standard 2.0) 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.</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>Improved support for non-solid extraction of 7z "Copy" file from solid archive using index, thanks to GitHub user Mgamerz.
Fixed issue related to invalid character in directory and file name, thanks to GitHub user Ramkaran Yadav.</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>
</dependencies>
</metadata>
<files>
<file src="Stage\Release\netstandard2.0\SevenZipSharp.dll" target="lib\netstandard2.0" />
<file src="Stage\Release\net45\SevenZipSharp.dll" target="lib\net45" />
<file src="license" />
</files>
</package>