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

Commit da327d9

Browse files
committed
Updating json files to pin versions and build.cmd to pin KoreBuild and DNX
1 parent f351a08 commit da327d9

File tree

18 files changed

+6160
-91
lines changed

18 files changed

+6160
-91
lines changed

build.cmd

+7-9
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ cd %~dp0
33

44
SETLOCAL
55
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
6-
SET BUILDCMD_KOREBUILD_VERSION=""
7-
SET BUILDCMD_DNX_VERSION=""
86

97
IF EXIST %CACHED_NUGET% goto copynuget
108
echo Downloading latest version of NuGet.exe...
@@ -18,21 +16,21 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul
1816

1917
:restore
2018
IF EXIST packages\KoreBuild goto run
21-
IF %BUILDCMD_KOREBUILD_VERSION%=="" (
22-
.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
2321
) ELSE (
24-
.nuget\NuGet.exe install KoreBuild -version %BUILDCMD_KOREBUILD_VERSION% -ExcludeVersion -o packages -nocache -pre
22+
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
2523
)
2624
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion
2725

2826
IF "%SKIP_DNX_INSTALL%"=="1" goto run
29-
IF %BUILDCMD_DNX_VERSION%=="" (
30-
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
3129
) ELSE (
32-
CALL packages\KoreBuild\build\dnvm install %BUILDCMD_DNX_VERSION% -runtime CLR -arch x86 -a default
30+
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
3331
)
3432
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86
3533

3634
:run
3735
CALL packages\KoreBuild\build\dnvm use default -runtime CLR -arch x86
38-
packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f makefile.shade %*
36+
packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f makefile.shade %*

samples/SampleApp/project.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
"SampleApp": "SampleApp"
44
},
55
"dependencies": {
6-
"Microsoft.Framework.Logging": "1.0.0-*",
7-
"Microsoft.Framework.Logging.Console": "1.0.0-*"
6+
"Microsoft.Framework.Logging": "1.0.0-beta7",
7+
"Microsoft.Framework.Logging.Console": "1.0.0-beta7"
88
},
99
"frameworks": {
1010
"dnx451": {
1111
"dependencies": {
12-
"Microsoft.Framework.Logging.EventLog": "1.0.0-*",
13-
"Microsoft.Framework.Logging.NLog": "1.0.0-*"
12+
"Microsoft.Framework.Logging.EventLog": "1.0.0-beta7",
13+
"Microsoft.Framework.Logging.NLog": "1.0.0-beta7"
1414
}
1515
},
1616
"dnxcore50": {
1717
"dependencies": {
18-
"System.Console": "4.0.0-beta-*"
18+
"System.Console": "4.0.0-beta-23225"
1919
}
2020
}
2121
}
22-
}
22+
}

0 commit comments

Comments
 (0)