-
Notifications
You must be signed in to change notification settings - Fork 40
Merge and rename packages and components to HttpSys* #286
Conversation
{ | ||
return hostBuilder.ConfigureServices(services => { | ||
services.AddTransient<IConfigureOptions<WebListenerOptions>, WebListenerOptionsSetup>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why isn't this his required?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was used to set up a logger, which can now be passed directly from DI.
@@ -23,6 +23,7 @@ | |||
}, | |||
"net451": { | |||
"frameworkAssemblies": { | |||
"System.DirectoryServices": "", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
???
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The NTLM tests only work on domain.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What APIs are you using that you weren't using before (or did I just miss that).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't new, it's just merged from the other test project.
{ | ||
internal class ResponseStream : Stream | ||
internal class ResponseBody : Stream |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just renaming for fun?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There were two ResponseSteam classes. I may be able to de-duplicate later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are the travis builds broken? Do more tests need to be skipped?
@@ -13,6 +13,7 @@ internal static class Constants | |||
internal const string Close = "close"; | |||
internal const string Zero = "0"; | |||
internal const string SchemeDelimiter = "://"; | |||
internal const int Status101SwitchingProtocols = 101; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be moved to StatusCodes in HttpAbstractions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. Can you add that this week?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kestrel could use it too: https://github.com/aspnet/KestrelHttpServer/search?utf8=%E2%9C%93&q=101
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aspnet/HttpAbstractions#748, any other status codes we want to add?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other than deciding what to do for that one status code and fixing the tests.
32f7298
to
f07e7a5
Compare
@JunTaoLuo Your commit regressed the tests xplat 3b42433. You forgot to make them conditional like all of the others. |
@Tratcher ah I see. Didn't realize those need to be updated. |
#283
Stage 1: merge packages, namespaces, tests, initial renames, reduced object visibility
Future work: