Skip to content

Commit

Permalink
add net8 launch config
Browse files Browse the repository at this point in the history
  • Loading branch information
ndichiaro committed Jan 4, 2025
1 parent 16475a8 commit 9b15dc4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 22 deletions.
15 changes: 14 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"name": ".NET Core Launch (net9)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
Expand All @@ -17,6 +17,19 @@
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Launch (net8)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/Tools.Net.Mongo/bin/Debug/net8.0/Tools.Net.Mongo.dll",
"args": ["migrate", "up", "-i", "mongodb://localhost:27017/demoDb"],
"cwd": "${workspaceFolder}/tests/Demo.App",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
Expand Down
21 changes: 0 additions & 21 deletions tests/Demo.App/TestDb.cs

This file was deleted.

0 comments on commit 9b15dc4

Please sign in to comment.