From efd40862f0cca01a676f1787f2de1c849fa35844 Mon Sep 17 00:00:00 2001 From: Chris R Date: Tue, 1 Dec 2015 12:37:20 -0800 Subject: [PATCH] Add tooling sample configuration. --- .../Properties/launchSettings.json | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 samples/StaticFileSample/Properties/launchSettings.json diff --git a/samples/StaticFileSample/Properties/launchSettings.json b/samples/StaticFileSample/Properties/launchSettings.json new file mode 100644 index 0000000000..721764884e --- /dev/null +++ b/samples/StaticFileSample/Properties/launchSettings.json @@ -0,0 +1,25 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:35192/", + "sslPort": 0 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "Hosting:Environment": "Development" + } + }, + "web": { + "commandName": "web", + "environmentVariables": { + "Hosting:Environment": "Development" + } + } + } +} \ No newline at end of file