diff --git a/API/.vscode/launch.json b/API/.vscode/launch.json index 4ff98b3..ebb7a35 100644 --- a/API/.vscode/launch.json +++ b/API/.vscode/launch.json @@ -12,13 +12,15 @@ "stopAtEntry": false, "console": "internalConsole", "env": { - "ASPNETCORE_ENVIRONMENT": "Development" + "ASPNETCORE_ENVIRONMENT": "Development", + "ASPNETCORE_URLS": "http://localhost:5300" }, "serverReadyAction": { - "action": "openUrl", + "action": "openExternally", "pattern": "Now listening on:\\s+(https?://\\S+)", "uriFormat": "%s/swagger/index.html" } } + ] } diff --git a/API/.vscode/tasks.json b/API/.vscode/tasks.json new file mode 100644 index 0000000..2687cf7 --- /dev/null +++ b/API/.vscode/tasks.json @@ -0,0 +1,20 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/FamilyTreeAPI.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + + + }, + + ] +} \ No newline at end of file