Skip to content

feat: auto-discover Quick Start projects - #96

Merged
dhhieu113pro merged 7 commits into
masterfrom
feat/auto-discover-quick-start-projects
Sep 6, 2026
Merged

feat: auto-discover Quick Start projects#96
dhhieu113pro merged 7 commits into
masterfrom
feat/auto-discover-quick-start-projects

Conversation

@dhhieu113pro

@dhhieu113pro dhhieu113pro commented Sep 6, 2026

Copy link
Copy Markdown
Owner

Summary

  • auto-discover ASP.NET Core and .NET Worker projects for DevSpace Quick Start
  • auto-discover Angular applications from angular.json and launch them with pnpm/yarn/npm based on workspace files
  • keep manual terminal profiles as same-name overrides and skip generated/vendor directories
  • refresh discovered projects from the Quick Start action

Verification

Store MSIX is a separate workflow and is still running at the time of this update.

@dhhieu113pro
dhhieu113pro marked this pull request as ready for review September 6, 2026 01:52

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: c013233897

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +44 to +46
foreach (var directory in EnumerateWorkspaceDirectories(workspace))
{
DiscoverDotNetProjects(workspace, directory, discovered);

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Move recursive discovery off the UI thread

When opening a large monorepo or a workspace on slow/network storage, this loop walks and probes every non-ignored directory synchronously. DevSpaceDashboard calls it from its constructor, and the refresh click handler also invokes it directly, so the Avalonia UI cannot render or respond until the entire scan completes; run discovery asynchronously with cancellation or otherwise bound the traversal before updating Profiles on the UI thread.

Useful? React with 👍 / 👎.

Comment on lines +251 to +253
Profiles = DevBoard.DevSpaces.DevSpaceProjectDiscovery.Discover(
WorkspacePath,
DevBoard.DevSpaces.DevSpaceProfileSettings.Instance.Profiles);

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Let session rows resolve discovered profile icons

After a user starts any discovered profile, its terminal title includes the generated icon, but DevSpaceDashboardSessionRow.ResolveProfileIcon searches only DevSpaceProfileSettings.Instance.Profiles; discovered profiles exist only in this dashboard snapshot. The active-terminal row therefore reports HasIcon == false, fails to strip the icon from DisplayTitle, and bypasses the dedicated emoji-font element, unlike manually configured profiles. Pass the discovered profile/icon information into session-row resolution or otherwise include Profiles in that lookup.

Useful? React with 👍 / 👎.

@dhhieu113pro
dhhieu113pro merged commit 438c9d6 into master Sep 6, 2026
23 checks passed
@dhhieu113pro
dhhieu113pro deleted the feat/auto-discover-quick-start-projects branch September 6, 2026 02:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant