From 3f5e340b9fce299297fe4ff4e250e5cabcfe9832 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Tue, 4 Oct 2016 17:28:21 -0700 Subject: [PATCH] Committed launch settings --- .../Properties/launchSettings.json | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 samples/SocketsSample/Properties/launchSettings.json diff --git a/samples/SocketsSample/Properties/launchSettings.json b/samples/SocketsSample/Properties/launchSettings.json new file mode 100644 index 0000000000..e55b608f83 --- /dev/null +++ b/samples/SocketsSample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:1850/", + "sslPort": 0 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "SocketsSample": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "http://localhost:5000", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} \ No newline at end of file