We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd0cc4a commit 874fb8bCopy full SHA for 874fb8b
PackAll.bat
@@ -0,0 +1,6 @@
1
+@echo off
2
+call PackXamarin.bat
3
+pause
4
+call Pack.bat
5
6
+:: Rename .latest manually and upload it with .nuget\nuget.exe
PackXamarin.bat
@@ -0,0 +1 @@
+@powershell .\packxamarin.ps1 %1
PackXamarin.ps1
@@ -0,0 +1,18 @@
+param([Switch]$Rebuild)
+
+[string]$temp = '.\nugettmp'
+[string]$builder = "$env:windir\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe"
+[string]$sln = 'MsgPack.Xamarin.sln'
7
8
+[string]$nuspec = 'MsgPack.nuspec'
9
10
+$buildOptions = @()
11
+if( $Rebuild )
12
+{
13
+ $buildOptions += '/t:Rebuild'
14
+}
15
16
+$buildOptions += '/p:Configuration=Release'
17
+# build
18
+&$builder $sln $buildOptions
0 commit comments