fix(vscode): Prompt for azure connector details and start design-time host on new projects#8607
Conversation
🤖 AI PR Validation ReportPR Review ResultsThank you for your submission! Here's detailed feedback on your PR title and body compliance:✅ PR Title
✅ Commit Type
|
| Section | Status | Recommendation |
|---|---|---|
| Title | ✅ | No change needed |
| Commit Type | ✅ | No change needed |
| Risk Level | ✅ | No change needed |
| What & Why | ✅ | No change needed |
| Impact of Change | ✅ | No change needed |
| Test Plan | ✅ | No change needed |
| Contributors | ✅ | No change needed |
| Screenshots/Videos | Optional for this non-visual change |
This PR passes review for title/body compliance. The advised risk level is consistent with the submitter's low assessment.
Last updated: Wed, 01 Jul 2026 19:00:06 GMT
🤖 AI PR Validation ReportPR Review ResultsThank you for your submission! Here's detailed feedback on your PR title and body compliance:✅ PR Title
✅ Commit Type
✅ Risk Level
✅ What & Why
✅ Impact of Change
✅ Test Plan
✅ Contributors
✅ Screenshots/Videos
Summary Table
The PR passes all body and title checks, and the risk level is correct. No changes required. Thank you for maintaining clear, concise documentation in your PR! Last updated: Fri, 21 Nov 2025 19:38:41 GMT |
There was a problem hiding this comment.
Pull request overview
This PR fixes an inconsistency between the "Create new workspace" and "Create new project" flows by adding Azure connector details prompting and design-time host initialization to the project creation process. Previously, these initialization steps were only performed for workspace creation, leaving newly created projects without immediate Azure connector configuration or a running design-time API.
Key changes:
- Added calls to
getAzureConnectorDetailsForLocalProject()andstartDesignTimeApi()at the end of thecreateLogicAppProject()function - Added a blank line formatting improvement in
azureConnectorWizard.ts
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| apps/vs-code-designer/src/app/commands/workflows/azureConnectorWizard.ts | Minor formatting change - added blank line after function definition |
| apps/vs-code-designer/src/app/commands/createNewCodeProject/CodeProjectBase/CreateLogicAppProjects.ts | Added Azure connector details prompting and design-time API initialization calls after project creation, with necessary imports |
…ridge/newProjectDesignTimeFix
…wProjectDesignTimeFix
Fixes #6824
Commit Type
Risk Level
What & Why
Adds the following initialization steps at end of 'Create new project' flow:
Impact of Change
Test Plan
Contributors
@andrew-eldridge