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-02-28 03:25:08 +0300
committerneuecc <ils@neue.cc>2017-02-28 03:25:08 +0300
commit7cda57b9b4e73e271356dbb276032f90b6783882 (patch)
tree99ad2ef124c17321f5de5800090f261c45fac9bf /nuget
parent45d3d800b6d57ea1086b877c2519594f45665bb1 (diff)
Diffstat (limited to 'nuget')
-rw-r--r--nuget/MessagePack.ImmutableCollection.nuspec (renamed from nuget/MessagePack.ImmutableCollections.nuspec)16
-rw-r--r--nuget/MessagePack.ReactiveProperty.nuspec8
-rw-r--r--nuget/MessagePack.UnityShims.nuspec8
-rw-r--r--nuget/MessagePack.nuspec6
-rw-r--r--nuget/check_mpc.bat1
-rw-r--r--nuget/pack.bat2
-rw-r--r--nuget/push.bat8
7 files changed, 26 insertions, 23 deletions
diff --git a/nuget/MessagePack.ImmutableCollections.nuspec b/nuget/MessagePack.ImmutableCollection.nuspec
index d7435e11..52722e93 100644
--- a/nuget/MessagePack.ImmutableCollections.nuspec
+++ b/nuget/MessagePack.ImmutableCollection.nuspec
@@ -2,14 +2,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>MessagePack.ImmutableCollection</id>
- <version>0.1.0-beta</version>
+ <version>0.2.0-beta</version>
<title>MessagePack for C# Extension Support for ImmutableCollection</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). Extension support for System.Collections.Immutable.</description>
- <releaseNotes>initial alpha.</releaseNotes>
+ <releaseNotes>improve.</releaseNotes>
<tags>MsgPack, MessagePack, Serialization, Formatter, Serializer</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.5" />
@@ -17,19 +17,19 @@
</frameworkAssemblies>
<dependencies>
<group targetFramework=".NETFramework4.5">
- <dependency id="MessagePack" version="0.0.1" />
+ <dependency id="MessagePack" version="0.2.0" />
<dependency id="System.Collections.Immutable" version="1.3.1" />
</group>
<group targetFramework=".NETStandard1.4">
- <dependency id="MessagePack" version="0.0.1" />
+ <dependency id="MessagePack" version="0.2.0" />
<dependency id="System.Collections.Immutable" version="1.3.1" />
</group>
</dependencies>
</metadata>
<files>
- <file src="..\src\MessagePack.ImmutableCollections\bin\Release\netstandard1.4\MessagePack.ImmutableCollections.dll" target="lib\net45" />
- <file src="..\src\MessagePack.ImmutableCollections\bin\Release\netstandard1.4\MessagePack.ImmutableCollections.xml" target="lib\net45" />
- <file src="..\src\MessagePack.ImmutableCollections\bin\Release\netstandard1.4\MessagePack.ImmutableCollections.dll" target="lib\netstandard1.4" />
- <file src="..\src\MessagePack.ImmutableCollections\bin\Release\netstandard1.4\MessagePack.ImmutableCollections.xml" target="lib\netstandard1.4" />
+ <file src="..\src\MessagePack.ImmutableCollection\bin\Release\netstandard1.4\MessagePack.ImmutableCollection.dll" target="lib\net45" />
+ <file src="..\src\MessagePack.ImmutableCollection\bin\Release\netstandard1.4\MessagePack.ImmutableCollection.xml" target="lib\net45" />
+ <file src="..\src\MessagePack.ImmutableCollection\bin\Release\netstandard1.4\MessagePack.ImmutableCollection.dll" target="lib\netstandard1.4" />
+ <file src="..\src\MessagePack.ImmutableCollection\bin\Release\netstandard1.4\MessagePack.ImmutableCollection.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 eebf3a94..e19464db 100644
--- a/nuget/MessagePack.ReactiveProperty.nuspec
+++ b/nuget/MessagePack.ReactiveProperty.nuspec
@@ -2,14 +2,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>MessagePack.ReactiveProperty</id>
- <version>0.1.0-beta</version>
+ <version>0.2.0-beta</version>
<title>MessagePack for C# Extension Support for ReactiveProperty</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). Extension support for ReactiveProperty.</description>
- <releaseNotes>initial alpha.</releaseNotes>
+ <releaseNotes>dependency update.</releaseNotes>
<tags>MsgPack, MessagePack, Serialization, Formatter, Serializer, ReactiveProperty</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.5" />
@@ -17,11 +17,11 @@
</frameworkAssemblies>
<dependencies>
<group targetFramework=".NETFramework4.5">
- <dependency id="MessagePack" version="0.0.1" />
+ <dependency id="MessagePack" version="0.2.0" />
<dependency id="ReactiveProperty" version="3.5.0" />
</group>
<group targetFramework=".NETStandard1.4">
- <dependency id="MessagePack" version="0.0.1" />
+ <dependency id="MessagePack" version="0.2.0" />
<dependency id="ReactiveProperty" version="3.5.0" />
</group>
</dependencies>
diff --git a/nuget/MessagePack.UnityShims.nuspec b/nuget/MessagePack.UnityShims.nuspec
index 165c6b03..a96b909b 100644
--- a/nuget/MessagePack.UnityShims.nuspec
+++ b/nuget/MessagePack.UnityShims.nuspec
@@ -2,14 +2,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>MessagePack.Unity</id>
- <version>0.1.0-beta</version>
+ <version>0.2.0-beta</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>
<projectUrl>https://github.com/neuecc/MessagePack-CSharp/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Extremely Fast MessagePack Serializer for C#(.NET, .NET Core, Unity). Extension support for Unity.</description>
- <releaseNotes>initial alpha.</releaseNotes>
+ <releaseNotes>improve.</releaseNotes>
<tags>MsgPack, MessagePack, Serialization, Formatter, Serializer, ReactiveProperty</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.5" />
@@ -17,10 +17,10 @@
</frameworkAssemblies>
<dependencies>
<group targetFramework=".NETFramework4.5">
- <dependency id="MessagePack" version="0.0.1" />
+ <dependency id="MessagePack" version="0.2.0" />
</group>
<group targetFramework=".NETStandard1.4">
- <dependency id="MessagePack" version="0.0.1" />
+ <dependency id="MessagePack" version="0.2.0" />
</group>
</dependencies>
</metadata>
diff --git a/nuget/MessagePack.nuspec b/nuget/MessagePack.nuspec
index 3f8cb19a..e68090ad 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.1.0-beta</version>
+ <version>0.2.0-beta</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>initial alpha.</releaseNotes>
+ <releaseNotes>improve. add mpc.exe.</releaseNotes>
<tags>MsgPack, MessagePack, Serialization, Formatter, Serializer</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.5" />
@@ -33,5 +33,7 @@
<file src="..\src\MessagePack\bin\Release\netstandard1.4\MessagePack.xml" target="lib\net45" />
<file src="..\src\MessagePack\bin\Release\netstandard1.4\MessagePack.dll" target="lib\netstandard1.4" />
<file src="..\src\MessagePack\bin\Release\netstandard1.4\MessagePack.xml" target="lib\netstandard1.4" />
+ <file src="mpc.exe" target="tools\" />
+ <file src="mpc.exe.config" target="tools\" />
</files>
</package> \ No newline at end of file
diff --git a/nuget/check_mpc.bat b/nuget/check_mpc.bat
new file mode 100644
index 00000000..fe15300c
--- /dev/null
+++ b/nuget/check_mpc.bat
@@ -0,0 +1 @@
+mpc.exe -i "C:\Users\neuecc\Documents\neuecc\MessagePack\sandbox\SharedData\SharedData.csproj" -o "C:\Users\neuecc\Documents\neuecc\MessagePack\sandbox\Sandbox\Generated.cs" \ No newline at end of file
diff --git a/nuget/pack.bat b/nuget/pack.bat
index a60dd7a3..bdb840ea 100644
--- a/nuget/pack.bat
+++ b/nuget/pack.bat
@@ -1,4 +1,4 @@
nuget pack MessagePack.nuspec
-nuget pack MessagePack.ImmutableCollections.nuspec
+nuget pack MessagePack.ImmutableCollection.nuspec
nuget pack MessagePack.ReactiveProperty.nuspec
nuget pack MessagePack.UnityShims.nuspec \ No newline at end of file
diff --git a/nuget/push.bat b/nuget/push.bat
index 57cf9c63..7c279f7b 100644
--- a/nuget/push.bat
+++ b/nuget/push.bat
@@ -1,4 +1,4 @@
-nuget push MessagePack.0.1.0-beta.nupkg -Source https://www.nuget.org/api/v2/package
-nuget push MessagePack.ImmutableCollections.0.1.0-beta.nupkg -Source https://www.nuget.org/api/v2/package
-nuget push MessagePack.ReactiveProperty.0.1.0-beta.nupkg -Source https://www.nuget.org/api/v2/package
-nuget push MessagePack.UnityShims.0.1.0-beta.nupkg -Source https://www.nuget.org/api/v2/package \ No newline at end of file
+nuget push MessagePack.0.2.0-beta.nupkg -Source https://www.nuget.org/api/v2/package
+nuget push MessagePack.ImmutableCollection.0.2.0-beta.nupkg -Source https://www.nuget.org/api/v2/package
+nuget push MessagePack.ReactiveProperty.0.2.0-beta.nupkg -Source https://www.nuget.org/api/v2/package
+nuget push MessagePack.Unity.0.2.0-beta.nupkg -Source https://www.nuget.org/api/v2/package \ No newline at end of file