Skip to content

Commit 7e0e50f

Browse files
authored
Merge pull request #19726 from dotnet/prkrishn/merge-5.0-preview2
Merge 5.0-preview2
2 parents 7cf264f + 54d6d72 commit 7e0e50f

18 files changed

+21
-21
lines changed

eng/ProjectReferences.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<ProjectReferenceProvider Include="Microsoft.AspNetCore.Identity.Specification.Tests" ProjectPath="$(RepoRoot)src\Identity\Specification.Tests\src\Microsoft.AspNetCore.Identity.Specification.Tests.csproj" />
1717
<ProjectReferenceProvider Include="Microsoft.AspNetCore.Identity.UI" ProjectPath="$(RepoRoot)src\Identity\UI\src\Microsoft.AspNetCore.Identity.UI.csproj" />
1818
<ProjectReferenceProvider Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" ProjectPath="$(RepoRoot)src\Servers\Kestrel\Transport.Libuv\src\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.csproj" />
19-
<ProjectReferenceProvider Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Quic" ProjectPath="$(RepoRoot)src\Servers\Kestrel\Transport.Quic\src\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj" />
19+
<ProjectReferenceProvider Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic" ProjectPath="$(RepoRoot)src\Servers\Kestrel\Transport.Quic\src\Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.csproj" />
2020
<ProjectReferenceProvider Include="Microsoft.AspNetCore.Authentication.Certificate" ProjectPath="$(RepoRoot)src\Security\Authentication\Certificate\src\Microsoft.AspNetCore.Authentication.Certificate.csproj" />
2121
<ProjectReferenceProvider Include="Microsoft.AspNetCore.Authentication.Facebook" ProjectPath="$(RepoRoot)src\Security\Authentication\Facebook\src\Microsoft.AspNetCore.Authentication.Facebook.csproj" />
2222
<ProjectReferenceProvider Include="Microsoft.AspNetCore.Authentication.Google" ProjectPath="$(RepoRoot)src\Security\Authentication\Google\src\Microsoft.AspNetCore.Authentication.Google.csproj" />

src/Servers/Kestrel/Kestrel.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "http2cat", "samples\http2ca
8686
EndProject
8787
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QuicSampleApp", "samples\QuicSampleApp\QuicSampleApp.csproj", "{53A8634C-DFC5-4A5B-8864-9EF1707E3F18}"
8888
EndProject
89-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic", "Transport.Quic\src\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj", "{62CFF861-807E-43F6-9403-22AA7F06C9A6}"
89+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic", "Transport.Quic\src\Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.csproj", "{62CFF861-807E-43F6-9403-22AA7F06C9A6}"
9090
EndProject
9191
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QuicSampleClient", "samples\QuicSampleClient\QuicSampleClient.csproj", "{F39A942B-85A8-4C1B-A5BC-435555E79F20}"
9292
EndProject

src/Servers/Kestrel/Transport.Quic/src/Internal/FakeTlsConnectionFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Threading.Tasks;
88
using Microsoft.AspNetCore.Http.Features;
99

10-
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal
10+
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.Internal
1111
{
1212
internal class FakeTlsConnectionFeature : ITlsConnectionFeature
1313
{

src/Servers/Kestrel/Transport.Quic/src/Internal/IQuicTrace.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using Microsoft.Extensions.Logging;
66

7-
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal
7+
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.Internal
88
{
99
internal interface IQuicTrace : ILogger
1010
{

src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using Microsoft.AspNetCore.Http.Features;
1111
using Microsoft.Extensions.Logging;
1212

13-
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal
13+
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.Internal
1414
{
1515
internal class QuicConnectionContext : TransportMultiplexedConnection, IProtocolErrorCodeFeature
1616
{

src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using Microsoft.AspNetCore.Http.Features;
1313
using Microsoft.Extensions.Logging;
1414

15-
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal
15+
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.Internal
1616
{
1717
/// <summary>
1818
/// Listens for new Quic Connections.

src/Servers/Kestrel/Transport.Quic/src/Internal/QuicStreamContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using Microsoft.AspNetCore.Http.Features;
1313
using Microsoft.Extensions.Logging;
1414

15-
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal
15+
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.Internal
1616
{
1717
internal class QuicStreamContext : TransportConnection, IStreamDirectionFeature, IProtocolErrorCodeFeature, IStreamIdFeature
1818
{

src/Servers/Kestrel/Transport.Quic/src/Internal/QuicTrace.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using Microsoft.Extensions.Logging;
66

7-
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal
7+
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.Internal
88
{
99
internal class QuicTrace : IQuicTrace
1010
{

src/Servers/Kestrel/Transport.Quic/src/Internal/QuicTransportContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using Microsoft.Extensions.Hosting;
55

6-
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal
6+
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.Internal
77
{
88
internal class QuicTransportContext
99
{

src/Servers/Kestrel/Transport.Quic/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj renamed to src/Servers/Kestrel/Transport.Quic/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<PackageTags>aspnetcore;kestrel</PackageTags>
88
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
99
<NoWarn>CS1591;CS0436;$(NoWarn)</NoWarn><!-- Conflicts between internal and public Quic APIs -->
10-
<IsShippingPackage>false</IsShippingPackage>
10+
<IsPackable>true</IsPackable>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

src/Servers/Kestrel/Transport.Quic/src/QuicConnectionFactory.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
using System.Threading.Tasks;
1111
using Microsoft.AspNetCore.Connections;
1212
using Microsoft.AspNetCore.Http.Features;
13-
using Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal;
13+
using Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.Internal;
1414
using Microsoft.Extensions.Logging;
1515
using Microsoft.Extensions.Options;
1616

17-
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic
17+
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic
1818
{
1919
public class QuicConnectionFactory : IMultiplexedConnectionFactory
2020
{
@@ -27,7 +27,7 @@ public QuicConnectionFactory(IOptions<QuicTransportOptions> options, ILoggerFact
2727
throw new ArgumentNullException(nameof(options));
2828
}
2929

30-
var logger = loggerFactory.CreateLogger("Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Client");
30+
var logger = loggerFactory.CreateLogger("Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.Client");
3131
var trace = new QuicTrace(logger);
3232

3333
_transportContext = new QuicTransportContext(trace, options.Value);

src/Servers/Kestrel/Transport.Quic/src/QuicTransportFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
using System.Threading.Tasks;
88
using Microsoft.AspNetCore.Connections;
99
using Microsoft.AspNetCore.Http.Features;
10-
using Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal;
10+
using Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.Internal;
1111
using Microsoft.Extensions.Logging;
1212
using Microsoft.Extensions.Options;
1313

14-
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic
14+
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic
1515
{
1616
public class QuicTransportFactory : IMultiplexedConnectionListenerFactory
1717
{

src/Servers/Kestrel/Transport.Quic/src/QuicTransportOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Buffers;
66
using System.Security.Cryptography.X509Certificates;
77

8-
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic
8+
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic
99
{
1010
public class QuicTransportOptions
1111
{

src/Servers/Kestrel/Transport.Quic/src/WebHostBuilderMsQuicExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55
using Microsoft.AspNetCore.Connections;
6-
using Microsoft.AspNetCore.Server.Kestrel.Transport.Quic;
6+
using Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic;
77
using Microsoft.Extensions.DependencyInjection;
88

99
namespace Microsoft.AspNetCore.Hosting

src/Servers/Kestrel/samples/Http3SampleApp/Http3SampleApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
1010
<Reference Include="Microsoft.Extensions.Logging.Console" />
1111
<Reference Include="Microsoft.Extensions.Hosting" />
12-
<Reference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Quic" />
12+
<Reference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic" />
1313
</ItemGroup>
1414
<ItemGroup>
1515
<Content Include="msquic.dll" Condition="Exists('msquic.dll')">

src/Servers/Kestrel/samples/QuicSampleApp/QuicSampleApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<ItemGroup>
1111
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
1212
<Reference Include="Microsoft.Extensions.Logging.Console" />
13-
<Reference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Quic" />
13+
<Reference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic" />
1414
</ItemGroup>
1515

1616
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">

src/Servers/Kestrel/samples/QuicSampleClient/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Net;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using Microsoft.AspNetCore.Server.Kestrel.Transport.Quic;
6+
using Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic;
77
using Microsoft.Extensions.Hosting;
88
using Microsoft.AspNetCore.Connections;
99
using Microsoft.Extensions.Logging;

src/Servers/Kestrel/samples/QuicSampleClient/QuicSampleClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<Reference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Quic" />
10+
<Reference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic" />
1111
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
1212
<Reference Include="Microsoft.Extensions.Hosting" />
1313
<Reference Include="Microsoft.Extensions.Logging.Console" />

0 commit comments

Comments
 (0)