Created
May 2, 2023 22:47
-
-
Save adamdriscoll/3dc911cd2d9548ff7d9abd54c44489c6 to your computer and use it in GitHub Desktop.
Test Config - PSU
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": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Start Universal (Test Config)", | |
"command": "${workspaceFolder}/src/output/Universal.Server.exe", | |
"type": "process", | |
"args": [ | |
"--appsettings", | |
"${workspaceFolder}\\test-configs\\${input:testConfig}" | |
], | |
"problemMatcher": [] | |
}, | |
], | |
"inputs": [ | |
{ | |
"id": "testConfig", | |
"description": "Test Config", | |
"type": "pickString", | |
"options": [ | |
"baseurl.appsettings.json", | |
"invalid.appsettings.json", | |
"https.appsettings.json", | |
"github.external.appsettings.json", | |
"github.appsettings.blank.json", | |
"github.sql.appsettings.json", | |
"github.appsettings.json", | |
"nodename.appsettings.json", | |
"oidc.appsettings.json", | |
"profiler.json", | |
"sql.appsettings.json", | |
"sql.nomigrations.appsettings.json", | |
"windows.appsettings.json" | |
] | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment