forked from force-net/Crc32.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Crc32.NET.nuspec
38 lines (38 loc) · 1.75 KB
/
Crc32.NET.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
<?xml version="1.0"?>
<package >
<metadata>
<id>Crc32.NET</id>
<title>Crc32 for .NET</title>
<version>1.2.0</version>
<authors>force</authors>
<owners>force</owners>
<licenseUrl>https://github.com/force-net/Crc32.NET/blob/develop/LICENSE</licenseUrl>
<projectUrl>https://github.com/force-net/Crc32.NET</projectUrl>
<iconUrl>http://files.force-net.com/crc32-nuget-ico.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Fast version of Crc32 & Crc32C algorithms for .NET and .NET Core. It is up to 3x-5x times better than other "fast" implemenations. Code based on Crc32C.NET library.</description>
<releaseNotes>
Added helper methods for computing and validating Crc32 (can be convenient sometimes)
Added support for .NET Standard 2.0
</releaseNotes>
<copyright>Copyright by Force 2016-2017</copyright>
<tags>crc32 crc-32 crc crc32c .NET</tags>
<dependencies>
<group targetFramework="net20">
</group>
<group targetFramework=".NETStandard1.3">
<dependency id="NETStandard.Library" version="[1.6.0, )" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="NETStandard.Library" version="[2.0.0, )" />
</group>
</dependencies>
</metadata>
<files>
<file src="Crc32.NET\bin\Build\Crc32.NET.*" target="lib\net20" />
<file src="Crc32.NET\bin\BuildCore\netstandard1.3\Crc32.NET.dll" target="lib\netstandard1.3" />
<file src="Crc32.NET\bin\BuildCore\netstandard1.3\Crc32.NET.xml" target="lib\netstandard1.3" />
<file src="Crc32.NET\bin\BuildCore\netstandard2.0\Crc32.NET.dll" target="lib\netstandard2.0" />
<file src="Crc32.NET\bin\BuildCore\netstandard2.0\Crc32.NET.xml" target="lib\netstandard2.0" />
</files>
</package>