Skip to content

Commit

Permalink
fix(ci): nuget demands a nuspec
Browse files Browse the repository at this point in the history
  • Loading branch information
ProbablePrime committed Nov 11, 2023
1 parent b3dbb1f commit ff5e739
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 23 deletions.
15 changes: 15 additions & 0 deletions src/LZ4.net2/LZ4.net2.nuspec
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>
46 changes: 23 additions & 23 deletions src/LZ4.net2/Properties/AssemblyInfo.cs
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")]

0 comments on commit ff5e739

Please sign in to comment.