From 882d1e0b26302570a30bdbb4007b9e31451e6171 Mon Sep 17 00:00:00 2001 From: Justin Baur <136baur@gmail.com> Date: Sun, 26 Jun 2022 10:03:33 -0400 Subject: [PATCH] Fix VSCode Launch file (#2077) * Fix launch.json * Also change pull request template --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .vscode/launch.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index bd1accb03..408b9a168 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -26,7 +26,7 @@ ``` -- [ ] I have checked for formatting errors (`dotnet tool run dotnet-format --check`) (required) +- [ ] I have checked for formatting errors (`dotnet format --verify-no-changes`) (required) - [ ] If making database changes - I have also updated Entity Framework queries and/or migrations - [ ] I have added **unit tests** where it makes sense to do so (encouraged but not required) - [ ] This change requires a **documentation update** (notify the documentation team) diff --git a/.vscode/launch.json b/.vscode/launch.json index d11eb7eab..fdbc654f0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -137,7 +137,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "buildBilling", - "program": "${workspaceFolder}/src/Billing/bin/Debug/net5.0/Billing.dll", + "program": "${workspaceFolder}/src/Billing/bin/Debug/net6.0/Billing.dll", "args": [], "cwd": "${workspaceFolder}/src/Billing", "stopAtEntry": false,