From 5aa3993c845278cb07cf8f13e5593b288ca9a393 Mon Sep 17 00:00:00 2001 From: Kendra Havens Date: Wed, 16 Dec 2020 12:23:31 -0800 Subject: [PATCH] Update Dockerfile and launch.json to 5.0 (#494) * Update Docker target to 5 * change launch.json to 5.0 --- .devcontainer/Dockerfile | 2 +- .vscode/launch.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6220d92..d188b1d 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,7 +3,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. #------------------------------------------------------------------------------------------------------------- -FROM mcr.microsoft.com/dotnet/core/sdk:3.1-bionic +FROM mcr.microsoft.com/dotnet/sdk:5.0 # This Dockerfile adds a non-root user with sudo access. Use the "remoteUser" # property in devcontainer.json to use it. On Linux, the container user's GID/UIDs diff --git a/.vscode/launch.json b/.vscode/launch.json index b31d4cd..d375cae 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,7 +10,7 @@ "request": "launch", "preLaunchTask": "build", // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/src/Web/bin/Debug/netcoreapp3.1/Web.dll", + "program": "${workspaceFolder}/src/Web/bin/Debug/net5.0/Web.dll", "args": [], "cwd": "${workspaceFolder}/src/Web", "stopAtEntry": false,