Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/nuget
diff options
context:
space:
mode:
authorneuecc <ils@neue.cc>2017-03-09 17:38:13 +0300
committerneuecc <ils@neue.cc>2017-03-09 17:38:13 +0300
commitbf5f2dd91bad2948063668de3703259f7562cf73 (patch)
tree83c437131222a2e04db6c1a5a0a222edacb51a25 /nuget
parent23674873e020d8ce96e4bd2b87b3ed2856ce06fa (diff)
completely LZ4 support(0.8.1)
Diffstat (limited to 'nuget')
-rw-r--r--nuget/MessagePack.ImmutableCollection.nuspec6
-rw-r--r--nuget/MessagePack.LZ4.nuspec33
-rw-r--r--nuget/MessagePack.ReactiveProperty.nuspec6
-rw-r--r--nuget/MessagePack.UnityShims.nuspec6
-rw-r--r--nuget/MessagePack.nuspec4
-rw-r--r--nuget/pack.bat1
-rw-r--r--nuget/push.bat9
7 files changed, 50 insertions, 15 deletions
diff --git a/nuget/MessagePack.ImmutableCollection.nuspec b/nuget/MessagePack.ImmutableCollection.nuspec
index 5954215c..b3ff7d80 100644
--- a/nuget/MessagePack.ImmutableCollection.nuspec
+++ b/nuget/MessagePack.ImmutableCollection.nuspec
@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>MessagePack.ImmutableCollection</id>
- <version>0.7.2</version>
+ <version>0.8.1</version>
<title>MessagePack for C# Extension Support for ImmutableCollection</title>
<authors>neuecc</authors>
<owners>neuecc</owners>
@@ -17,11 +17,11 @@
</frameworkAssemblies>
<dependencies>
<group targetFramework=".NETFramework4.5">
- <dependency id="MessagePack" version="0.7.2" />
+ <dependency id="MessagePack" version="0.8.1" />
<dependency id="System.Collections.Immutable" version="1.3.1" />
</group>
<group targetFramework=".NETStandard1.4">
- <dependency id="MessagePack" version="0.7.2" />
+ <dependency id="MessagePack" version="0.8.1" />
<dependency id="System.Collections.Immutable" version="1.3.1" />
</group>
</dependencies>
diff --git a/nuget/MessagePack.LZ4.nuspec b/nuget/MessagePack.LZ4.nuspec
new file mode 100644
index 00000000..fa973a8b
--- /dev/null
+++ b/nuget/MessagePack.LZ4.nuspec
@@ -0,0 +1,33 @@
+<?xml version="1.0"?>
+<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
+ <metadata>
+ <id>MessagePack.LZ4</id>
+ <version>0.8.1</version>
+ <title>MessagePack for C#, LZ4 Compression Support</title>
+ <authors>neuecc</authors>
+ <owners>neuecc</owners>
+ <projectUrl>https://github.com/neuecc/MessagePack-CSharp/</projectUrl>
+ <requireLicenseAcceptance>false</requireLicenseAcceptance>
+ <description>Extremely Fast MessagePack Serializer for C#(.NET, .NET Core, Unity), LZ4 Compression Support.</description>
+ <releaseNotes>Initial LZ4 Extension.</releaseNotes>
+ <tags>MsgPack, MessagePack, Serialization, Formatter, Serializer, LZ4, Compression</tags>
+ <frameworkAssemblies>
+ <frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.5" />
+ <frameworkAssembly assemblyName="System.Core" targetFramework=".NETFramework4.5" />
+ </frameworkAssemblies>
+ <dependencies>
+ <group targetFramework=".NETFramework4.5">
+ <dependency id="MessagePack" version="0.8.1" />
+ </group>
+ <group targetFramework=".NETStandard1.4">
+ <dependency id="MessagePack" version="0.8.1" />
+ </group>
+ </dependencies>
+ </metadata>
+ <files>
+ <file src="..\src\MessagePack.LZ4\bin\Release\netstandard1.4\MessagePack.LZ4.dll" target="lib\net45" />
+ <file src="..\src\MessagePack.LZ4\bin\Release\netstandard1.4\MessagePack.LZ4.xml" target="lib\net45" />
+ <file src="..\src\MessagePack.LZ4\bin\Release\netstandard1.4\MessagePack.LZ4.dll" target="lib\netstandard1.4" />
+ <file src="..\src\MessagePack.LZ4\bin\Release\netstandard1.4\MessagePack.LZ4.xml" target="lib\netstandard1.4" />
+ </files>
+</package> \ No newline at end of file
diff --git a/nuget/MessagePack.ReactiveProperty.nuspec b/nuget/MessagePack.ReactiveProperty.nuspec
index 0ecd0c69..2be27e12 100644
--- a/nuget/MessagePack.ReactiveProperty.nuspec
+++ b/nuget/MessagePack.ReactiveProperty.nuspec
@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>MessagePack.ReactiveProperty</id>
- <version>0.7.2</version>
+ <version>0.8.1</version>
<title>MessagePack for C# Extension Support for ReactiveProperty</title>
<authors>neuecc</authors>
<owners>neuecc</owners>
@@ -17,11 +17,11 @@
</frameworkAssemblies>
<dependencies>
<group targetFramework=".NETFramework4.5">
- <dependency id="MessagePack" version="0.7.2" />
+ <dependency id="MessagePack" version="0.8.1" />
<dependency id="ReactiveProperty" version="3.5.1" />
</group>
<group targetFramework=".NETStandard1.4">
- <dependency id="MessagePack" version="0.7.2" />
+ <dependency id="MessagePack" version="0.8.1" />
<dependency id="ReactiveProperty" version="3.5.1" />
</group>
</dependencies>
diff --git a/nuget/MessagePack.UnityShims.nuspec b/nuget/MessagePack.UnityShims.nuspec
index d74d19b5..4e2276c9 100644
--- a/nuget/MessagePack.UnityShims.nuspec
+++ b/nuget/MessagePack.UnityShims.nuspec
@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>MessagePack.UnityShims</id>
- <version>0.7.2</version>
+ <version>0.8.1</version>
<title>MessagePack for C# Extension Support for Unity(add pseudo Vector type and fast Vectory[] extension formatter)</title>
<authors>neuecc</authors>
<owners>neuecc</owners>
@@ -17,10 +17,10 @@
</frameworkAssemblies>
<dependencies>
<group targetFramework=".NETFramework4.5">
- <dependency id="MessagePack" version="0.7.2" />
+ <dependency id="MessagePack" version="0.8.1" />
</group>
<group targetFramework=".NETStandard1.4">
- <dependency id="MessagePack" version="0.7.2" />
+ <dependency id="MessagePack" version="0.8.1" />
</group>
</dependencies>
</metadata>
diff --git a/nuget/MessagePack.nuspec b/nuget/MessagePack.nuspec
index 2bd8ba7b..9821bc2e 100644
--- a/nuget/MessagePack.nuspec
+++ b/nuget/MessagePack.nuspec
@@ -2,14 +2,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>MessagePack</id>
- <version>0.7.2</version>
+ <version>0.8.1</version>
<title>MessagePack for C#</title>
<authors>neuecc</authors>
<owners>neuecc</owners>
<projectUrl>https://github.com/neuecc/MessagePack-CSharp/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Extremely Fast MessagePack Serializer for C#(.NET, .NET Core, Unity).</description>
- <releaseNotes>improve code generator.</releaseNotes>
+ <releaseNotes>for supports LZ4.</releaseNotes>
<tags>MsgPack, MessagePack, Serialization, Formatter, Serializer</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.5" />
diff --git a/nuget/pack.bat b/nuget/pack.bat
index 5ae86756..3721e261 100644
--- a/nuget/pack.bat
+++ b/nuget/pack.bat
@@ -2,4 +2,5 @@ nuget pack MessagePack.nuspec
nuget pack MessagePack.ImmutableCollection.nuspec
nuget pack MessagePack.ReactiveProperty.nuspec
nuget pack MessagePack.UnityShims.nuspec
+nuget pack MessagePack.LZ4.nuspec
nuget pack MessagePackAnalyzer.nuspec \ No newline at end of file
diff --git a/nuget/push.bat b/nuget/push.bat
index 42279f43..297dd468 100644
--- a/nuget/push.bat
+++ b/nuget/push.bat
@@ -1,5 +1,6 @@
-nuget push MessagePack.0.7.2.nupkg -Source https://www.nuget.org/api/v2/package
-nuget push MessagePack.ImmutableCollection.0.7.2.nupkg -Source https://www.nuget.org/api/v2/package
-nuget push MessagePack.ReactiveProperty.0.7.2.nupkg -Source https://www.nuget.org/api/v2/package
-nuget push MessagePack.UnityShims.0.7.2.nupkg -Source https://www.nuget.org/api/v2/package
+nuget push MessagePack.0.8.1.nupkg -Source https://www.nuget.org/api/v2/package
+nuget push MessagePack.ImmutableCollection.0.8.1.nupkg -Source https://www.nuget.org/api/v2/package
+nuget push MessagePack.ReactiveProperty.0.8.1.nupkg -Source https://www.nuget.org/api/v2/package
+nuget push MessagePack.UnityShims.0.8.1.nupkg -Source https://www.nuget.org/api/v2/package
+nuget push MessagePack.LZ4.0.8.1.nupkg -Source https://www.nuget.org/api/v2/package
REM nuget push MessagePackAnalyzer.1.3.0.nupkg -Source https://www.nuget.org/api/v2/package \ No newline at end of file