You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add additional launch configurations, dcp logs setting
* add python modules to ide spec, config
* add module example to AspireWithPython
* add file
* make cert serial number generation better
* add AddFlaskApp, add example, get uvicorn debug working
* add uvicorn example, fix flask_app
* add hot reload in development mode for uvicorn
* improve naming
* remove test class
* change 01 -> 00
* instead of AddFlaskApp do AddGunicornApp
* disable vs code gunicorn debug support in prod
* add WithDebugging to note a python resource is debuggable
* fix error
* remove gunicorn stuff, use correct path for Windows python executable
* rename WithVSCodeDebugSupport -> WithDebugSupport
* show errors when resource fails to start
* fix bug where python args were being removed when run within extension but without python extension installed
* add additional tests
* remove ide spec change for now
---------
Co-authored-by: Adam Ratzman <[email protected]>
Copy file name to clipboardExpand all lines: extension/package.nls.json
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
"configuration.aspire.enableSettingsFileCreationPromptOnStartup": "Enable apphost discovery on extension activation and prompt to setup .aspire/settings.json.appHostPath if it does not exist in the workspace.",
19
19
"configuration.aspire.aspireCliExecutablePath": "The path to the Aspire CLI executable. If not set, the extension will attempt to use 'aspire' from the system PATH.",
20
20
"configuration.aspire.enableAspireCliDebugLogging": "Enable console debug logging for Aspire CLI commands executed by the extension.",
21
+
"configuration.aspire.enableAspireDcpDebugLogging": "Enable Developer Control Plane (DCP) debug logging for Aspire applications. Logs will be stored in the workspace's .aspire/dcp/logs-{debugSessionId} folder.",
21
22
"command.runAppHost": "Run Aspire apphost",
22
23
"command.debugAppHost": "Debug Aspire apphost",
23
24
"aspire-vscode.strings.noCsprojFound": "No apphost found in the current workspace.",
@@ -76,5 +77,10 @@
76
77
"aspire-vscode.strings.invalidLaunchConfiguration": "Invalid launch configuration for {0}.",
77
78
"aspire-vscode.strings.noAppHostInWorkspace": "No apphost found in the Aspire settings file.",
78
79
"aspire-vscode.strings.dashboard": "Dashboard",
79
-
"aspire-vscode.strings.codespaces": "Codespaces"
80
+
"aspire-vscode.strings.codespaces": "Codespaces",
81
+
"aspire-vscode.strings.encounteredErrorStartingResource": "Encountered an error starting resource: {0}.",
82
+
"aspire-vscode.strings.invalidOrMissingToken": "Invalid or missing token in Authorization header.",
83
+
"aspire-vscode.strings.invalidTokenLength": "Invalid token length in Authorization header.",
84
+
"aspire-vscode.strings.authorizationHeaderMustStartWithBearer": "Authorization header must start with 'Bearer '.",
85
+
"aspire-vscode.strings.authorizationAndDcpHeadersRequired": "Authorization and Microsoft-Developer-DCP-Instance-ID headers are required."
0 commit comments