This repository was archived by the owner on Nov 22, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +10013
-18
lines changed
src/Microsoft.AspNet.StaticFiles
test/Microsoft.AspNet.StaticFiles.Tests Expand file tree Collapse file tree 7 files changed +10013
-18
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,19 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul
16
16
17
17
:restore
18
18
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
+ )
20
24
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion
21
25
22
26
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
+ )
24
32
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86
25
33
26
34
:run
Original file line number Diff line number Diff line change 3
3
"web" : " Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.Urls http://localhost:12345/"
4
4
},
5
5
"dependencies" : {
6
- "Kestrel" : " 1.0.0-* " ,
7
- "Microsoft.AspNet.Server.IIS" : " 1.0.0-* " ,
8
- "Microsoft.AspNet.Server.WebListener" : " 1.0.0-* " ,
9
- "Microsoft.AspNet.StaticFiles" : " 1.0.0-* " ,
10
- "Microsoft.Framework.Logging.Console" : " 1.0.0-* "
6
+ "Kestrel" : " 1.0.0-beta5 " ,
7
+ "Microsoft.AspNet.Server.IIS" : " 1.0.0-beta5 " ,
8
+ "Microsoft.AspNet.Server.WebListener" : " 1.0.0-beta5 " ,
9
+ "Microsoft.AspNet.StaticFiles" : " 1.0.0-beta5 " ,
10
+ "Microsoft.Framework.Logging.Console" : " 1.0.0-beta5 "
11
11
},
12
12
"frameworks" : {
13
13
"dnx451" : {},
You can’t perform that action at this time.
0 commit comments