This repository was archived by the owner on Dec 18, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +7098
-33
lines changed
Microsoft.AspNet.Server.Kestrel
test/Microsoft.AspNet.Server.KestrelTests Expand file tree Collapse file tree 9 files changed +7098
-33
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<configuration >
3
3
<packageSources >
4
+ <clear />
4
5
<add key =" NuGet" value =" https://nuget.org/api/v2/" />
5
6
<add key =" AspNetMaster" value =" https://www.myget.org/F/aspnetmaster/api/v2" />
6
7
</packageSources >
Original file line number Diff line number Diff line change @@ -16,13 +16,21 @@ 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
27
35
CALL packages\KoreBuild\build\dnvm use default -runtime CLR -arch x86
28
- packages\Sake\tools\Sake.exe -I build -I packages\KoreBuild\build -f makefile.shade %*
36
+ packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f makefile.shade %*
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 1.0.0-* " ,
2
+ "version" : " 1.0.0-beta4 " ,
3
3
"dependencies" : {
4
- "Kestrel" : " 1.0.0-* "
4
+ "Kestrel" : " 1.0.0-beta4 "
5
5
},
6
6
"frameworks" : {
7
7
"dnx451" : { },
8
8
"dnxcore50" : {
9
9
"dependencies" : {
10
- "System.Console" : " 4.0.0-beta-* "
10
+ "System.Console" : " 4.0.0-beta-22816 "
11
11
}
12
12
}
13
13
},
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 1.0.0-* " ,
2
+ "version" : " 1.0.0-beta4 " ,
3
3
"description" : " ASP.NET 5 cross platform development web server." ,
4
4
"dependencies" : {
5
- "Microsoft.AspNet.Hosting" : " 1.0.0-* " ,
6
- "Microsoft.AspNet.Server.Kestrel" : " 1.0.0-* "
5
+ "Microsoft.AspNet.Hosting" : " 1.0.0-beta4 " ,
6
+ "Microsoft.AspNet.Server.Kestrel" : " 1.0.0-beta4 "
7
7
},
8
8
"frameworks" : {
9
9
"dnx451" : {
10
10
"dependencies" : { }
11
11
},
12
12
"dnxcore50" : {
13
13
"dependencies" : {
14
- "System.Runtime" : " 4.0.20-beta-* "
14
+ "System.Runtime" : " 4.0.20-beta-22816 "
15
15
}
16
16
}
17
17
}
You can’t perform that action at this time.
0 commit comments