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

Commit 3e1a7b6

Browse files
committed
Updating json files to pin versions and build.cmd to pin KoreBuild and DNX
1 parent 8268a10 commit 3e1a7b6

File tree

23 files changed

+21313
-82
lines changed

23 files changed

+21313
-82
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
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-beta6",
33
"repository": {
44
"type": "git",
55
"url": "git://github.com/aspnet/testing"
66
},
77
"dependencies": {
8-
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-*",
9-
"xunit.runner.aspnet": "2.0.0-aspnet-*"
8+
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6",
9+
"xunit.runner.aspnet": "2.0.0-aspnet-beta6"
1010
},
1111
"frameworks": {
1212
"dnx451": {
@@ -18,13 +18,13 @@
1818
},
1919
"dnxcore50": {
2020
"dependencies": {
21-
"System.Runtime": "4.0.20-beta-*",
22-
"System.Runtime.InteropServices": "4.0.20-beta-*",
23-
"System.Globalization": "4.0.10-beta-*",
24-
"System.Threading.Tasks": "4.0.10-beta-*",
25-
"System.Reflection": "4.0.10-beta-*",
26-
"System.Threading.Thread": "4.0.0-beta-*"
21+
"System.Runtime": "4.0.20-beta-23109",
22+
"System.Runtime.InteropServices": "4.0.20-beta-23109",
23+
"System.Globalization": "4.0.10-beta-23109",
24+
"System.Threading.Tasks": "4.0.10-beta-23109",
25+
"System.Reflection": "4.0.10-beta-23109",
26+
"System.Threading.Thread": "4.0.0-beta-23109"
2727
}
2828
}
2929
}
30-
}
30+
}

0 commit comments

Comments
 (0)