Skip to content

Instantly share code, notes, and snippets.

@mhowlett
Created January 16, 2017 18:50
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 mhowlett/7426ef3f9dce960e3bceffba35517b30 to your computer and use it in GitHub Desktop.
Save mhowlett/7426ef3f9dce960e3bceffba35517b30 to your computer and use it in GitHub Desktop.
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "SimpleProducer",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/examples/SimpleProducer/bin/Debug/netcoreapp1.0/SimpleProducer.dll",
"args": ["localhost:9092", "mytt"],
"cwd": "${workspaceRoot}",
"externalConsole": false,
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "AdvancedConsumer",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/examples/AdvancedConsumer/bin/Debug/netcoreapp1.0/AdvancedConsumer.dll",
"args": ["poll", "localhost:9092", "mytt"],
"cwd": "${workspaceRoot}",
"externalConsole": false,
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "SimpleConsumer",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/examples/SimpleConsumer/bin/Debug/netcoreapp1.0/SimpleConsumer.dll",
"args": ["localhost:9092", "mytt"],
"cwd": "${workspaceRoot}",
"externalConsole": false,
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "IntegrationTests",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/test/Confluent.Kafka.IntegrationTests/bin/Debug/netcoreapp1.0/Confluent.Kafka.IntegrationTests.dll",
"args": ["localhost:9092", "integration-test-topic", "SimpleProduceConsume"],
"cwd": "${workspaceRoot}",
"externalConsole": false,
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"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