Skip to content

Fix launch bug#574

Merged
ErikEJ merged 1 commit into
masterfrom
launch-bug
Jun 16, 2026
Merged

Fix launch bug#574
ErikEJ merged 1 commit into
masterfrom
launch-bug

Conversation

@ErikEJ

@ErikEJ ErikEJ commented Jun 16, 2026

Copy link
Copy Markdown
Owner

No description provided.

Copilot AI review requested due to automatic review settings June 16, 2026 11:39
@ErikEJ ErikEJ merged commit 14fc648 into master Jun 16, 2026
1 check passed
@ErikEJ ErikEJ deleted the launch-bug branch June 16, 2026 11:39

Copilot AI 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.

Pull request overview

This PR updates how the VSIX extension launches the SQL analyzer process, aiming to fix process startup issues by invoking analyzer commands through cmd /c with simplified argument quoting.

Changes:

  • Route VS 2026+ analyzer launch through cmd /c dnx ... instead of invoking dnx directly.
  • Simplify cmd /c tsqlanalyze ... argument quoting for older VS versions to avoid malformed command lines.

Comment on lines 83 to +85
// Use dnx syntax for VS 2026 (version 18) or later
fileName = "dnx";
args = "ErikEJ.DacFX.TSQLAnalyzer.Cli --yes -- -n -i" +
fileName = "cmd";
args = "/c dnx ErikEJ.DacFX.TSQLAnalyzer.Cli --yes -- -n -i" +
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.

2 participants