V10 Fixup GitHub CodeSpaces / VSCode Remote Container (#12882)

* Remove SQL Server part of the CodeSpace - we have SQLite to use

* Update to use .NET 6 and simplified docker stuff

https://github.com/microsoft/vscode-dev-containers/

* Need to set the SQLite Connection string env variable

* Path to SLN has changed to the root of the repo

* Fix up launch and VSCode tasks
This commit is contained in:
Warren Buckley
2022-08-23 13:12:45 +01:00
committed by GitHub
parent fa8bb3f1da
commit 523aa6c12e
9 changed files with 23 additions and 203 deletions

5
.vscode/launch.json vendored
View File

@@ -9,9 +9,8 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Dotnet build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/Umbraco.Web.UI/bin/Debug/net5.0/Umbraco.Web.UI.dll",
"args": [],
"program": "dotnet",
"args": ["run"],
"cwd": "${workspaceFolder}/src/Umbraco.Web.UI",
"stopAtEntry": false,
"requireExactSource": false,