From f2fd58d8c42f5ebdc70a7714b1183fbad7ff095d Mon Sep 17 00:00:00 2001 From: Chris R Date: Thu, 19 Jan 2017 13:37:04 -0800 Subject: [PATCH] Fix the social sample port. --- samples/SocialSample/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/SocialSample/Program.cs b/samples/SocialSample/Program.cs index 483feec169..76fb5e59a9 100644 --- a/samples/SocialSample/Program.cs +++ b/samples/SocialSample/Program.cs @@ -19,7 +19,7 @@ namespace SocialSample if (string.IsNullOrEmpty(Environment.GetEnvironmentVariable("ASPNETCORE_PORT"))) { // ANCM is not hosting the process - options.Listen(IPAddress.Loopback, 5000, listenOptions => + options.Listen(IPAddress.Loopback, 44318, listenOptions => { // Configure SSL var serverCertificate = LoadCertificate();