a few tweaks

main
cosmonaut 2021-04-04 14:04:55 -07:00
parent 9cf53a4924
commit 9ac7a3b218
2 changed files with 9 additions and 15 deletions

20
.vscode/launch.json vendored
View File

@ -6,9 +6,9 @@
"type": "clr",
"request": "launch",
"preLaunchTask": "Build: Framework Debug",
"program": "${workspaceFolder}/ProjectName/bin/Debug/x64/net472/ProjectName.exe",
"program": "${workspaceFolder}/ProjectName/bin/x64/Debug/net472/ProjectName.exe",
"args": [],
"cwd": "${workspaceFolder}/ProjectName/bin/Debug/x64/net472",
"cwd": "${workspaceFolder}/ProjectName/bin/x64/Debug/net472",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
@ -17,13 +17,9 @@
"type": "mono",
"request": "launch",
"preLaunchTask": "Build: Mono Debug",
"program": "${workspaceFolder}/ProjectName/bin/Debug/x64/net472/ProjectName.exe",
"program": "${workspaceFolder}/ProjectName/bin/x64/Debug/net472/ProjectName.exe",
"args": [],
"env": {
"LD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/x64/Debug/net472/lib64",
"DYLD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/x64/Debug/net472/osx"
},
"cwd": "${workspaceFolder}/ProjectName/bin/Debug/x64/net472",
"cwd": "${workspaceFolder}/ProjectName/bin/x64/Debug/net472",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
@ -32,13 +28,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build: .NET 5 Debug",
"program": "${workspaceFolder}/ProjectName/bin/Debug/net5.0/ProjectName.dll",
"program": "${workspaceFolder}/ProjectName/bin/x64/Debug/net5.0/ProjectName.dll",
"args": [],
"env": {
"LD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/net5.0/lib64",
"DYLD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/net5.0/osx"
},
"cwd": "${workspaceFolder}/ProjectName/bin/Debug/net5.0",
"cwd": "${workspaceFolder}/ProjectName/bin/x64/Debug/net5.0",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}

View File

@ -4,6 +4,8 @@ Template and build tasks for developing a cross-platform multi-target .NET Frame
The generated solution file will also work in regular Visual Studio.
NOTE: OSX is broken right now because I need to set up MoltenVK.
## Features
- Includes project boilerplate code
@ -35,7 +37,7 @@ The generated solution file will also work in regular Visual Studio.
- Press Ctrl-Shift-B to open the build tasks menu
- `Framework` tasks use .NET Framework to build and run (Windows only)
- `Mono` tasks use Mono to build and run
- `5` tasks use .NET 5 to build and run
- `.NET 5` tasks use .NET 5 to build and run
- Press F5 to build and debug
## Acknowledgments