Skip to content

Unblock build-and-test by normalizing SetupForm whitespace#2

Merged
Liparakis merged 2 commits into
masterfrom
copilot/fix-build-and-test-job
Jul 13, 2026
Merged

Unblock build-and-test by normalizing SetupForm whitespace#2
Liparakis merged 2 commits into
masterfrom
copilot/fix-build-and-test-job

Conversation

Copilot AI commented Jul 13, 2026

Copy link
Copy Markdown
Contributor

Summary

build-and-test was failing at the formatting gate due to whitespace violations in src/Ows.Setup/SetupForm.cs. This PR applies formatter-only edits to that file so CI passes without changing behavior.

  • Root cause
    • dotnet format --verify-no-changes --severity warn reported whitespace issues in object initializer wrapping and lambda-body indentation.
  • Scoped change
    • Whitespace/indentation normalization in SetupForm.cs only.
    • No logic, API, or runtime-path changes.
  • Representative diff
var services = new Button { Text = "Open Windows Services", Location = ContentPoint(0, 210), Size = new Size(160, 30) };

var thread = new Thread(() => {
    try {
        using var dialog = new FolderBrowserDialog();
        // ...
    } catch (Exception exception) {
        completion.SetException(exception);
    }
});

Boundaries

  • Local-first and offline verification remain intact.
  • No LMS, IDE-plugin, surveillance, or automatic misconduct scope was added.
  • Privacy/security documentation was updated if needed.
  • Roadmap and continuity notes were updated if capability changed.

Validation

  • dotnet build OWS.sln -nologo
  • dotnet test OWS.sln -nologo
  • git diff --check

@Liparakis
Liparakis marked this pull request as ready for review July 13, 2026 20:15
Copilot AI changed the title [WIP] Fix failing GitHub Actions job build-and-test Unblock build-and-test by normalizing SetupForm whitespace Jul 13, 2026
Copilot AI requested a review from Liparakis July 13, 2026 20:16
@Liparakis
Liparakis merged commit 248fa62 into master Jul 13, 2026
1 check passed
@Liparakis
Liparakis deleted the copilot/fix-build-and-test-job branch July 13, 2026 20:19
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