Skip to content
This repository has been archived by the owner on Oct 18, 2018. It is now read-only.

Commit

Permalink
Updating json files to pin versions and build files to pin KoreBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavkm committed May 17, 2016
1 parent 4823974 commit 8f72e55
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ cd $PSScriptRoot
$repoFolder = $PSScriptRoot
$env:REPO_FOLDER = $repoFolder

$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0-rc2.zip"
if ($env:KOREBUILD_ZIP)
{
$koreBuildZip=$env:KOREBUILD_ZIP
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $repoFolder

koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0-rc2.zip"
if [ ! -z $KOREBUILD_ZIP ]; then
koreBuildZip=$KOREBUILD_ZIP
fi
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.WebSockets.Client/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.WebSockets.Protocol": "0.1.0-*"
"Microsoft.AspNetCore.WebSockets.Protocol": "0.1.0-rc2-final"
},
"frameworks": {
"net451": {}
Expand Down
28 changes: 14 additions & 14 deletions src/Microsoft.AspNetCore.WebSockets.Protocol/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1.0-*",
"version": "0.1.0-rc2-final",
"description": "Managed web socket protocol parser.",
"packOptions": {
"repository": {
Expand All @@ -19,19 +19,19 @@
"net451": {},
"netstandard1.3": {
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1-*",
"System.Globalization": "4.0.11-*",
"System.IO": "4.1.0-*",
"System.Linq": "4.1.0-*",
"System.Net.WebSockets": "4.0.0-*",
"System.Resources.ResourceManager": "4.0.1-*",
"System.Runtime.InteropServices": "4.1.0-*",
"System.Runtime.Extensions": "4.1.0-*",
"System.Security.Cryptography.Algorithms": "4.1.0-*",
"System.Text.Encoding.Extensions": "4.0.11-*",
"System.Threading": "4.0.11-*",
"System.Threading.Tasks": "4.0.11-*",
"System.Threading.Timer": "4.0.1-*"
"System.Diagnostics.Contracts": "4.0.1-rc2-24027",
"System.Globalization": "4.0.11-rc2-24027",
"System.IO": "4.1.0-rc2-24027",
"System.Linq": "4.1.0-rc2-24027",
"System.Net.WebSockets": "4.0.0-rc2-24027",
"System.Resources.ResourceManager": "4.0.1-rc2-24027",
"System.Runtime.InteropServices": "4.1.0-rc2-24027",
"System.Runtime.Extensions": "4.1.0-rc2-24027",
"System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027",
"System.Text.Encoding.Extensions": "4.0.11-rc2-24027",
"System.Threading": "4.0.11-rc2-24027",
"System.Threading.Tasks": "4.0.11-rc2-24027",
"System.Threading.Timer": "4.0.1-rc2-24027"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.AspNetCore.WebSockets.Server/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1.0-*",
"version": "0.1.0-rc2-final",
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
Expand All @@ -16,9 +16,9 @@
}
},
"dependencies": {
"Microsoft.AspNetCore.Http.Extensions": "1.0.0-*",
"Microsoft.AspNetCore.WebSockets.Protocol": "0.1.0-*",
"Microsoft.Extensions.Options": "1.0.0-*"
"Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final",
"Microsoft.AspNetCore.WebSockets.Protocol": "0.1.0-rc2-final",
"Microsoft.Extensions.Options": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {},
Expand Down
2 changes: 1 addition & 1 deletion test/AutobahnTestClient/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.WebSockets.Client": "0.1.0-*"
},
"frameworks": {
Expand Down
10 changes: 5 additions & 5 deletions test/AutobahnTestServer/project.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"exclude": "wwwroot/**/*",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.WebSockets.Server": "0.1.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*"
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.WebSockets.Server": "0.1.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final"
},
"buildOptions": {
"emitEntryPoint": true
Expand All @@ -12,11 +12,11 @@
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
},
"dotnet-test-xunit": "1.0.0-*",
"System.Diagnostics.Process": "4.1.0-*"
"System.Diagnostics.Process": "4.1.0-rc2-24027"
},
"imports": [
"dnxcore50",
Expand Down
6 changes: 3 additions & 3 deletions test/Microsoft.AspNetCore.WebSockets.Client.Test/project.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.WebSockets.Client": "0.1.0-*",
"Microsoft.AspNetCore.WebSockets.Server": "0.1.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNetCore.WebSockets.Server": "0.1.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Testing": "1.0.0-*",
"xunit": "2.1.0"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.WebSockets.Protocol": "0.1.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.WebSockets.Protocol": "0.1.0-rc2-final",
"xunit": "2.1.0"
},
"testRunner": "xunit",
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
},
"System.Diagnostics.Process": "4.1.0-*"
"System.Diagnostics.Process": "4.1.0-rc2-24027"
},
"imports": [
"dnxcore50",
Expand Down
2 changes: 1 addition & 1 deletion test/TestClient/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"dependencies": {
"Microsoft.AspNetCore.WebSockets.Protocol": "0.1.0-*",
"Microsoft.AspNetCore.WebSockets.Protocol": "0.1.0-rc2-final",
"Microsoft.AspNetCore.WebSockets.Client": "0.1.0-*"
},
"frameworks": {
Expand Down

0 comments on commit 8f72e55

Please sign in to comment.