This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
forked from tomap/SevenZipSharp
-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.regular.nuspec
44 lines (44 loc) · 2.7 KB
/
package.regular.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?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>
<readme>docs\readme.md</readme>
<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>
Ensuring streams provided are at the beginning of the file, thanks to GitHub user fgimian.
Fixed an issues where SFX archives would not be correctly detected, thanks to GitHub user fgimian.
Added support for APFS format, thanks to GitHub user elihwyma.
Added support for Wim format, thanks to GitHub user pysj.
</releaseNotes>
<dependencies>
<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="net472" />
<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\netstandard2.0\SevenZipSharp.pdb" target="lib\netstandard2.0" />
<file src="Stage\Release\net472\SevenZipSharp.dll" target="lib\net472" />
<file src="Stage\Release\net472\SevenZipSharp.xml" target="lib\net472" />
<file src="Stage\Release\net472\SevenZipSharp.pdb" target="lib\net472" />
<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\netcoreapp3.1\SevenZipSharp.pdb" target="lib\netcoreapp3.1" />
<file src="license" />
<file src="readme.md" target="docs\" />
</files>
</package>