Skip to content

Instantly share code, notes, and snippets.

@exyi
Created August 2, 2017 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save exyi/860821793b617b3ed0c9c9bb91157111 to your computer and use it in GitHub Desktop.
Save exyi/860821793b617b3ed0c9c9bb91157111 to your computer and use it in GitHub Desktop.
dotvvm/src/.vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/DotVVM.Samples.BasicSamples.AspNetCore/bin/Debug/netcoreapp1.0/DotVVM.Samples.BasicSamples.AspNetCore.dll",
"args": [],
"cwd": "${workspaceRoot}/DotVVM.Samples.BasicSamples.AspNetCore/",
"stopAtEntry": false,
"launchBrowser": {
"enabled": true,
"args": "${auto-detect-url}",
"windows": {
"command": "cmd.exe",
"args": "/C start ${auto-detect-url}"
},
"osx": {
"command": "open"
},
"linux": {
"command": "xdg-open"
}
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceRoot}/Views"
}
},
{
"name": "DotVVM CLI on .NET Core Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-cli",
"program": "${workspaceRoot}/DotVVM.CommandLine/bin/Debug/netcoreapp1.0/dotnet-dotvvm.dll",
"args": [ "api", "create-webapi", "../WebApiResearch/swag/bin/Debug/netcoreapp1.1/swag.dll", "MyNS", "./ApiClient3.cs", "./ApiClient3.ts" ],
"cwd": "${workspaceRoot}/DotVVM.CommandLine",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment