Address review feedback: fix stderr handling, validation, and editorconfig#14403
Draft
Address review feedback: fix stderr handling, validation, and editorconfig#14403
Conversation
- SKILL.md: Agent instructions for version lookup, changelog review, user confirmation, and pipeline orchestration - migrate-package.sh: Companion script to trigger and monitor the dotnet-migrate-package Azure DevOps pipeline (def 931) - AGENTS.md: Register new skill in Available Skills section
Replace migrate-package.sh with MigratePackage.cs using: - Azure.Identity (AzureCliCredential) for authentication - Azure DevOps .NET SDK (PipelinesHttpClient) for pipeline triggering via RunPipelineAsync and polling via GetRunAsync - Auto-detection of Microsoft corp tenant for token acquisition Add .editorconfig and Directory.Packages.props overrides to allow standalone #:package directives within the repo's CPM.
- Hex1b: 0.48.0 → 0.75.0 - Hex1b.McpServer: 0.48.0 → 0.75.0 - Hex1b.Tool: added at 0.75.0 (new dotnet tool) All three packages imported via dotnet-migrate-package pipeline: - Hex1b: Run 2898644 (succeeded) - Hex1b.McpServer: Run 2898645 (succeeded) - Hex1b.Tool: Run 2898650 (succeeded)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…stderr Co-authored-by: mitchdenny <513398+mitchdenny@users.noreply.github.com>
Co-authored-by: mitchdenny <513398+mitchdenny@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update Hex1b packages to 0.75.0 and add Hex1b.Tool
Address review feedback: fix stderr handling, validation, and editorconfig
Feb 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Addresses unresolved review comments from #14400:
.editorconfig: Removedroot = trueto inherit repo-level formatting rules (whitespace, charset). Follows pattern intools/scripts/.editorconfig,playground/.editorconfig,src/Vendoring/.editorconfig.Directory.Packages.props: Added comment explainingHex1b.Toolis tracked for central version management despite only being referenced in.config/dotnet-tools.json.CLI argument validation: Added bounds checks, replaced
int.Parsewithint.TryParse, validated positive values, surfaced friendly errors:RunProcessAsyncstderr handling: Read stdout/stderr concurrently to prevent deadlocks when child processes write large stderr output. Return stderr content on failure for diagnostics. Await tasks directly instead ofTask.WhenAll+.Result.Checklist
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.