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

Request aborted #335

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
56653a5
Updating NuGet.config
pranavkm Jul 27, 2015
ad7b030
Updating json files to pin versions and build.cmd to pin KoreBuild an…
pranavkm Jul 28, 2015
e7ade98
Add support to cancel HttpContext.RequestAborted by disposing HttpRes…
tmds Aug 18, 2015
2cd343e
Implement PipelineCompleteAsync and fix implementation to pass Client…
tmds Aug 20, 2015
96972bd
Updating NuGet.config
pranavkm Jul 27, 2015
a1743cc
Updating json files to pin versions and build.cmd to pin KoreBuild an…
pranavkm Jul 28, 2015
a12863a
Add support to cancel HttpContext.RequestAborted by disposing HttpRes…
tmds Aug 18, 2015
ba46918
Implement PipelineCompleteAsync and fix implementation to pass Client…
tmds Aug 20, 2015
9afb17e
Update project.json files to match dev
tmds Aug 20, 2015
12d7182
bugfix, assign _pipelinefinished otherwise requestAborted is always c…
tmds Aug 20, 2015
19a9b86
remove project.lock.json files
tmds Aug 20, 2015
fad9dc9
Merge branch 'request_aborted' of https://github.com/tmds/Hosting int…
tmds Aug 20, 2015
17535b8
match dev branch
tmds Aug 20, 2015
696c905
Remove PipelineCompleteAsync
tmds Aug 24, 2015
677a7cb
Remove PipelineCompleteAsync cont.
tmds Aug 24, 2015
72906a9
RequestState can be private again
tmds Aug 24, 2015
e88c503
Code cleanup: reorder usings
tmds Sep 2, 2015
fc4c331
Add ClientCancellationAbortsRequest test, use ThrowsAnyAsync as a der…
tmds Sep 2, 2015
cfd11dc
Code cleanup: remove CancellationToken from RequestState
tmds Sep 2, 2015
9be8be3
ClientCancellationAbortsRequest: Cancel after 500ms
tmds Sep 2, 2015
f4bcdb9
Code cleanup: revert method names
tmds Sep 2, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration>
<packageSources>
<clear />
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetrelease/api/v2" />
<add key="NuGet" value="https://nuget.org/api/v2/" />
<add key="AspNetMaster" value="https://www.myget.org/F/aspnetmaster/api/v2" />
</packageSources>
</configuration>
</configuration>
12 changes: 10 additions & 2 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,19 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul

:restore
IF EXIST packages\KoreBuild goto run
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
IF DEFINED BUILDCMD_RELEASE (
.nuget\NuGet.exe install KoreBuild -version 0.2.1-%BUILDCMD_RELEASE% -ExcludeVersion -o packages -nocache -pre
) ELSE (
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
)
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion

IF "%SKIP_DNX_INSTALL%"=="1" goto run
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
IF DEFINED BUILDCMD_RELEASE (
CALL packages\KoreBuild\build\dnvm install 1.0.0-%BUILDCMD_RELEASE% -runtime CLR -arch x86 -a default
) ELSE (
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
)
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86

:run
Expand Down
11 changes: 7 additions & 4 deletions src/Microsoft.AspNet.Hosting.Abstractions/project.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
"version": "1.0.0-*",
"version": "1.0.0-beta6",
"description": "ASP.NET 5 Hosting abstractions.",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/hosting"
},
"dependencies": {
"Microsoft.AspNet.Http.Abstractions": "1.0.0-*",
"Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-*",
"Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }
"Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please go back to *, we're working on beta8 now.

"Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6",
"Microsoft.Framework.NotNullAttribute.Sources": {
"type": "build",
"version": "1.0.0-beta6"
}
},
"frameworks": {
"dnx451": {},
Expand Down
Loading