-
Notifications
You must be signed in to change notification settings - Fork 84
Conversation
@@ -3,8 +3,7 @@ | |||
<Import Project="..\..\build\common.props" /> | |||
|
|||
<PropertyGroup> | |||
<TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks> | |||
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.0</TargetFrameworks> | |||
<TargetFramework>netcoreapp2.0</TargetFramework> | |||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
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.
you can remove the following 2 elements cc @pranavkm
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 seem to be other files with similar content.
@@ -160,34 +160,7 @@ public override Task WriteAsync(byte[] buffer, int offset, int count, Cancellati | |||
return _innerStream.WriteAsync(buffer, offset, count, cancellationToken); | |||
} | |||
} | |||
#if NET46 |
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.
Keep these APIs
@@ -3,9 +3,7 @@ | |||
|
|||
using System; | |||
using System.Collections.ObjectModel; | |||
#if NETSTANDARD1_3 | |||
using System.Reflection; |
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.
Remove
@@ -137,58 +137,6 @@ public override void Write(byte[] buffer, int offset, int count) | |||
} | |||
} | |||
|
|||
#if NET46 |
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.
Revert
@@ -108,36 +108,6 @@ public void Write_IsPassedToUnderlyingStream_WhenDisableResponseBuffering(bool f | |||
Assert.Equal(File.ReadAllBytes(path), written); | |||
} | |||
|
|||
#if NET46 |
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.
Revert
@@ -570,16 +563,9 @@ public void Options_HttpsDisabledByDefault() | |||
|
|||
var response = await client.SendAsync(request, HttpCompletionOption.ResponseHeadersRead); | |||
|
|||
#if NET46 // Flush not supported, compression disabled |
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.
Does this work?
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.
Flush is supported on core
@pranavkm 🆙📅 |
No description provided.