mirror of
https://github.com/prime31/FNA-VSCode-Template.git
synced 2025-10-31 21:50:44 +07:00
build Nez and the current project initially
added launch without building option
This commit is contained in:
parent
01b7180a68
commit
732ab31026
14
.vscode/launch.json
vendored
14
.vscode/launch.json
vendored
@ -17,6 +17,20 @@
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Launch Without Building",
|
||||
"type": "mono",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/Fook/bin/Debug/Fook.exe",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"osx":{
|
||||
"env": {
|
||||
"DYLD_LIBRARY_PATH": "${workspaceFolder}/Fook/bin/Debug/osx/"
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Attach",
|
||||
"type": "mono",
|
||||
|
||||
@ -162,9 +162,9 @@ git submodule update
|
||||
|
||||
command -v pbcopy > /dev/null 2>&1
|
||||
if [ ! $? -eq 0 ]; then
|
||||
printf "\n\nManually run the following command:\n\nnuget restore Nez/Nez.sln && msbuild Nez/Nez.sln && msbuild /t:restore $newProjectName\n\n"
|
||||
printf "\n\nManually run the following command:\n\nnuget restore Nez/Nez.sln && msbuild Nez/Nez.sln && msbuild /t:restore $newProjectName && msbuild $newProjectName.sln\n\n"
|
||||
else
|
||||
echo "nuget restore Nez/Nez.sln && msbuild Nez/Nez.sln && msbuild /t:restore $newProjectName" | pbcopy
|
||||
echo "nuget restore Nez/Nez.sln && msbuild Nez/Nez.sln && msbuild /t:restore $newProjectName && msbuild $newProjectName.sln" | pbcopy
|
||||
echo ""
|
||||
echo "A build command was copied to your clipboard. Paste and run it now."
|
||||
echo ""
|
||||
|
||||
Loading…
Reference in New Issue
Block a user