From 7afa5edc34d58048786352aa14fd2095cdef191e Mon Sep 17 00:00:00 2001 From: Mike Harder Date: Wed, 18 Apr 2018 10:21:02 -0700 Subject: [PATCH] Remove unnecessary ApplicationBaseUriHint (#185) - Allows ApplicationDeployer to directly bind to dynamic port 0, which is more reliable than GetNextPort() which is required when ApplicationBaseUriHint is set. - Addresses https://github.com/aspnet/AzureIntegration/issues/184 --- test/ApplicationInsights.HostingStartup.Tests/LoggingTest.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/test/ApplicationInsights.HostingStartup.Tests/LoggingTest.cs b/test/ApplicationInsights.HostingStartup.Tests/LoggingTest.cs index 348e072fd4..22c558dc09 100644 --- a/test/ApplicationInsights.HostingStartup.Tests/LoggingTest.cs +++ b/test/ApplicationInsights.HostingStartup.Tests/LoggingTest.cs @@ -109,7 +109,6 @@ namespace ApplicationInsightsJavaScriptSnippetTest var deploymentParameters = new DeploymentParameters(GetApplicationPath(), ServerType.Kestrel, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64) { - ApplicationBaseUriHint = "http://localhost:0", PublishApplicationBeforeDeployment = true, PreservePublishedApplicationForDebugging = PreservePublishedApplicationForDebugging, TargetFramework = "netcoreapp2.0",