8 references to GetNextPort
IIS.LongTests (1)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
1356
deploymentParameters.ApplicationBaseUriHint = $"http://localhost:{TestPortHelper.
GetNextPort
()}/";
IIS.NewHandler.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
1356
deploymentParameters.ApplicationBaseUriHint = $"http://localhost:{TestPortHelper.
GetNextPort
()}/";
IIS.Tests (1)
Utilities\TestServer.cs (1)
105
_currentPort = _isHttps ? TestPortHelper.GetNextSSLPort() : TestPortHelper.
GetNextPort
();
IISExpress.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
1356
deploymentParameters.ApplicationBaseUriHint = $"http://localhost:{TestPortHelper.
GetNextPort
()}/";
Microsoft.AspNetCore.Server.IntegrationTesting (3)
Common\TestUriHelper.cs (2)
47
return new UriBuilder(scheme, "localhost", TestPortHelper.
GetNextPort
()).Uri;
58
return new UriBuilder(uriHint) { Port = TestPortHelper.
GetNextPort
() }.Uri;
Deployers\NginxDeployer.cs (1)
51
builder.Port = TestPortHelper.
GetNextPort
();
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (1)
IISExpressDeployer.cs (1)
164
port = (uri.Scheme == "https") ? TestPortHelper.GetNextSSLPort() : TestPortHelper.
GetNextPort
();