few extra conflicts
This commit is contained in:
parent
e6d547a923
commit
dabd3463ba
|
|
@ -22,9 +22,6 @@ namespace Microsoft.AspNetCore.Routing
|
|||
private IDisposable _disposable;
|
||||
private bool _disposed;
|
||||
|
||||
private IDisposable _disposable;
|
||||
private bool _disposed;
|
||||
|
||||
public DataSourceDependentCache(EndpointDataSource dataSource, Func<IReadOnlyList<Endpoint>, T> initialize)
|
||||
{
|
||||
if (dataSource == null)
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||
<IsSampleProject>false</IsSampleProject>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
|
|
|
|||
|
|
@ -739,12 +739,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Tests
|
|||
Assert.True(originalToken.WaitHandle.WaitOne(TestConstants.DefaultTimeout));
|
||||
Assert.True(_http1Connection.RequestAborted.WaitHandle.WaitOne(TestConstants.DefaultTimeout));
|
||||
|
||||
#if NETCOREAPP2_2
|
||||
Assert.Equal(originalToken, originalRegistration.Token);
|
||||
#elif NET461
|
||||
#else
|
||||
#error Target framework needs to be updated
|
||||
#endif
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
|
|
|||
Loading…
Reference in New Issue