Created
August 4, 2016 00:03
-
-
Save alfonsogarciacaro/17b94bb217af6d1a62286b5e91975595 to your computer and use it in GitHub Desktop.
Configuration for test project compilation with Fable in VS Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch Mono", | |
"type": "mono", | |
"request": "launch", | |
"program": "${workspaceRoot}/build/fable/bin/Fable.Client.Node.exe", | |
"args": [ | |
"--projFile", "src/tests/Fable.Tests.fsproj", | |
"--symbols", "MOCHA", "--copyExt", "true", | |
"--refs","Fable.Tests.Clamp=./Another Project", | |
"--refs","Fable.Tests.DllRef=./DllRef", | |
"--plugins","src/plugins/nunit/Fable.Plugins.NUnit.dll" | |
], | |
"cwd": "${workspaceRoot}", | |
"preLaunchTask": "", | |
"runtimeExecutable": null, | |
"env": {}, | |
"externalConsole": false | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment