Added lots of stuff

Added stuff to vfs + Dockerized the compilation & added some vscode cfg.
This commit is contained in:
2021-06-20 02:49:56 +01:00
parent 1dca0d18e2
commit bd9fbd2da6
7 changed files with 226 additions and 8 deletions

20
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,20 @@
{
"configurations": [
{
"name":"Run",
"request": "launch",
"type": "coreclr",
"preLaunchTask": "Build",
"program": "VBoxSDL",
"args": [
"--comment",
"Asuro",
"--startvm",
"7d395c96-891c-4139-b77d-9b6b144b0b93"
],
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"internalConsoleOptions": "neverOpen"
}
]
}