Skip to content

Commit

Permalink
-Build
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNK committed Apr 12, 2017
1 parent 7cfdd51 commit ed8a4fe
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
22 changes: 22 additions & 0 deletions Build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -324,4 +324,26 @@ function Edit-XmlNodes {
}
}
}
}

function Execute-Command($command) {
$currentRetry = 0
$success = $false
do {
try
{
& $command
$success = $true
}
catch [System.Exception]
{
if ($currentRetry -gt 5) {
throw $_.Exception.ToString()
} else {
write-host "Retry $currentRetry"
Start-Sleep -s 1
}
$currentRetry = $currentRetry + 1
}
} while (!$success)
}
Binary file removed Build/nuget.exe
Binary file not shown.
13 changes: 8 additions & 5 deletions Doc/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,17 @@ Versions:

Json.NET Schema has different libraries for the various .NET Framework versions.

-Net45:
-net45:
.NET latest (4.5)

-Net40:
-net40:
.NET 4.0

-Net35:
-net35:
.NET 3.5

-Portable:
.NET 4.5, Windows Phone 8, Windows 8 Store, .NET Core, Xamarin
-portable-net45+win8+wpa81+wp8:
.NET 4.5, Windows Phone 8, Windows 8 Store, Xamarin

-netstandard1.3:
.NET Standard 1.3

0 comments on commit ed8a4fe

Please sign in to comment.