diff options
| author | transtrike <transtrike@gmail.com> | 2021-01-19 13:13:03 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-01-19 13:13:03 +0200 |
| commit | 4836e2f4cc3e1eb53f415d26771c76c84d29c280 (patch) | |
| tree | 2a9cccffc647882d16e259445ed0be236fdffd79 /src/DevHive.Web/Properties/launchSettings.json | |
| parent | b81cdf3b60914e821de6a3ad35dc2af6637bca0c (diff) | |
| download | DevHive-4836e2f4cc3e1eb53f415d26771c76c84d29c280.tar DevHive-4836e2f4cc3e1eb53f415d26771c76c84d29c280.tar.gz DevHive-4836e2f4cc3e1eb53f415d26771c76c84d29c280.zip | |
Configured launch.json to be workspace wide; Fixed GetFriend to GetUser
Diffstat (limited to 'src/DevHive.Web/Properties/launchSettings.json')
| -rw-r--r-- | src/DevHive.Web/Properties/launchSettings.json | 59 |
1 files changed, 28 insertions, 31 deletions
diff --git a/src/DevHive.Web/Properties/launchSettings.json b/src/DevHive.Web/Properties/launchSettings.json index 44d86fc..5deaadb 100644 --- a/src/DevHive.Web/Properties/launchSettings.json +++ b/src/DevHive.Web/Properties/launchSettings.json @@ -1,31 +1,28 @@ -{
- "$schema": "http://json.schemastore.org/launchsettings.json",
- "iisSettings": {
- "windowsAuthentication": false,
- "anonymousAuthentication": true,
- "iisExpress": {
- "applicationUrl": "http://localhost:1955",
- "sslPort": 44326
- }
- },
- "profiles": {
- "IIS Express": {
- "commandName": "IISExpress",
- "launchBrowser": true,
- "launchUrl": "swagger",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
- },
- "DevHive.Web": {
- "commandName": "Project",
- "dotnetRunMessages": "true",
- "launchBrowser": true,
- "launchUrl": "swagger",
- "applicationUrl": "http://localhost:5000",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
- }
- }
-}
+{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:1955", + "sslPort": 44326 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "DevHive.Web": { + "commandName": "Project", + "dotnetRunMessages": "true", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} |
