From 9000769449999d89e15a6e7ea176c18cbe9da495 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Thu, 25 Jan 2018 11:34:56 -0800 Subject: [PATCH] Update tests to only bind to the loopback IP address Prevents dozens of firewall prompts from appearing while running tests --- test/Templates.Test/Helpers/AspNetProcess.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Templates.Test/Helpers/AspNetProcess.cs b/test/Templates.Test/Helpers/AspNetProcess.cs index de24d4aa70..fa4441e5b5 100644 --- a/test/Templates.Test/Helpers/AspNetProcess.cs +++ b/test/Templates.Test/Helpers/AspNetProcess.cs @@ -61,7 +61,7 @@ namespace Templates.Test.Helpers var envVars = new Dictionary { - { "ASPNETCORE_URLS", $"http://localhost:127.0.0.0:0;https://localhost:127.0.0.0:0" } + { "ASPNETCORE_URLS", $"http://127.0.0.1:0;https://127.0.0.1:0" } }; if (!publish)