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

Commit 0cfe3fb

Browse files
committed
Updating json files to pin versions and build.cmd to pin KoreBuild and DNX
1 parent b6e55eb commit 0cfe3fb

File tree

17 files changed

+7681
-37
lines changed

17 files changed

+7681
-37
lines changed

build.cmd

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,19 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul
1616

1717
:restore
1818
IF EXIST packages\KoreBuild goto run
19-
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
19+
IF DEFINED BUILDCMD_RELEASE (
20+
.nuget\NuGet.exe install KoreBuild -version 0.2.1-%BUILDCMD_RELEASE% -ExcludeVersion -o packages -nocache -pre
21+
) ELSE (
22+
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
23+
)
2024
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion
2125

2226
IF "%SKIP_DNX_INSTALL%"=="1" goto run
23-
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
27+
IF DEFINED BUILDCMD_RELEASE (
28+
CALL packages\KoreBuild\build\dnvm install 1.0.0-%BUILDCMD_RELEASE% -runtime CLR -arch x86 -a default
29+
) ELSE (
30+
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
31+
)
2432
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86
2533

2634
:run

src/Microsoft.AspNet.WebSockets.Client/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-beta5",
33
"description": "Client for communicating over web sockets.",
44
"dependencies": {
5-
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*"
5+
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta5"
66
},
77
"frameworks": {
88
"net45": { }
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"locked": true,
3+
"version": -9996,
4+
"targets": {
5+
".NETFramework,Version=v4.5": {}
6+
},
7+
"libraries": {},
8+
"projectFileDependencyGroups": {
9+
"": [
10+
"Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta5"
11+
],
12+
".NETFramework,Version=v4.5": []
13+
}
14+
}

src/Microsoft.AspNet.WebSockets.Protocol/project.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-beta5",
33
"description": "Managed web socket protocol parser.",
44
"frameworks": {
55
"net45": { },
66
"dnxcore50": {
77
"dependencies": {
8-
"System.Diagnostics.Contracts": "4.0.0-beta-*",
9-
"System.IO": "4.0.10-beta-*",
10-
"System.Linq": "4.0.0-beta-*",
11-
"System.Net.WebSockets": "4.0.0-beta-*",
12-
"System.Runtime": "4.0.20-beta-*",
13-
"System.Runtime.InteropServices": "4.0.20-beta-*",
14-
"System.Runtime.Extensions": "4.0.10-beta-*",
15-
"System.Security.Cryptography.Encryption": "4.0.0-beta-*",
16-
"System.Security.Cryptography.Hashing": "4.0.0-beta-*",
17-
"System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-*",
18-
"System.Text.Encoding.Extensions": "4.0.10-beta-*",
19-
"System.Threading": "4.0.10-beta-*",
20-
"System.Threading.Tasks": "4.0.10-beta-*",
21-
"System.Threading.Timer": "4.0.0-beta-*"
8+
"System.Diagnostics.Contracts": "4.0.0-beta-23019",
9+
"System.IO": "4.0.10-beta-23019",
10+
"System.Linq": "4.0.0-beta-23019",
11+
"System.Net.WebSockets": "4.0.0-beta-23019",
12+
"System.Runtime": "4.0.20-beta-23019",
13+
"System.Runtime.InteropServices": "4.0.20-beta-23019",
14+
"System.Runtime.Extensions": "4.0.10-beta-23019",
15+
"System.Security.Cryptography.Encryption": "4.0.0-beta-23019",
16+
"System.Security.Cryptography.Hashing": "4.0.0-beta-23019",
17+
"System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019",
18+
"System.Text.Encoding.Extensions": "4.0.10-beta-23019",
19+
"System.Threading": "4.0.10-beta-23019",
20+
"System.Threading.Tasks": "4.0.10-beta-23019",
21+
"System.Threading.Timer": "4.0.0-beta-23019"
2222
}
2323
}
2424
}

0 commit comments

Comments
 (0)