forked from MiloszKrajewski/lz4net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3dbb1f
commit ff5e739
Showing
2 changed files
with
38 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>YellowDogMan.LZ4</id> | ||
<version>0.1.0</version> | ||
<authors>Milosz Krajewski</authors> | ||
<owners>Milosz Krajewski</owners> | ||
<summary>LZ4 - ultra fast compression algorithm - for all .NET platforms</summary> | ||
<description> | ||
LZ4 is lossless compression algorithm, sacrificing compression ratio for compression/decompression speed. Its compression speed is ~400 MB/s per core while decompression speed reaches ~2 GB/s, not far from RAM speed limits. | ||
|
||
LZ4net brings LZ4 to all (most?) .NET platforms: .NET 2.0+, .NET Core, Mono, Windows Phone, Xamarin.iOS, Xamarin.Android and Silverlight | ||
</description> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
using System.Reflection; | ||
using System.Resources; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
//[assembly: AssemblyTitle("LZ4")] | ||
[assembly: AssemblyDescription("Fork of LZ4 compression integrator (.NET2)")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("Milosz Krajewski")] | ||
//[assembly: AssemblyProduct("LZ4")] | ||
[assembly: AssemblyCopyright("Copyright (c) 2015, Milosz Krajewski")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
[assembly: NeutralResourcesLanguage("en")] | ||
// // General Information about an assembly is controlled through the following | ||
// // set of attributes. Change these attribute values to modify the information | ||
// // associated with an assembly. | ||
// //[assembly: AssemblyTitle("LZ4")] | ||
// [assembly: AssemblyDescription("Fork of LZ4 compression integrator (.NET2)")] | ||
// [assembly: AssemblyConfiguration("")] | ||
// [assembly: AssemblyCompany("Milosz Krajewski")] | ||
// //[assembly: AssemblyProduct("LZ4")] | ||
// [assembly: AssemblyCopyright("Copyright (c) 2015, Milosz Krajewski")] | ||
// [assembly: AssemblyTrademark("")] | ||
// [assembly: AssemblyCulture("")] | ||
// [assembly: NeutralResourcesLanguage("en")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.15.93")] | ||
// // Version information for an assembly consists of the following four values: | ||
// // | ||
// // Major Version | ||
// // Minor Version | ||
// // Build Number | ||
// // Revision | ||
// // | ||
// // You can specify all the values or you can default the Build and Revision Numbers | ||
// // by using the '*' as shown below: | ||
// // [assembly: AssemblyVersion("1.0.*")] | ||
// [assembly: AssemblyVersion("1.0.15.93")] | ||
[assembly: AssemblyFileVersion("1.0.15.93")] |