Add CLI tool for generating DSL sample configuration#2
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR refactors DSL default constants into a shared static class and introduces a command-line tool for generating DSL configuration files. The analyzer constants (DefaultDslFileName and DefaultDslXml) are extracted from DslTerminologyAnalyzer into a new DslDefaults class, which is then reused by both the analyzer and a newly created console application.
Key changes:
- Extracted DSL defaults to a shared
DslDefaultsclass for reusability - Added
BlueDotBrigade.Analyzers.Toolconsole application with agenerate-dslcommand - Updated documentation with usage examples for the command-line tool
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| DslDefaults.cs | New shared class containing default DSL filename and XML content constants |
| DslTerminologyAnalyzer.cs | Refactored to use DslDefaults instead of local constants |
| Program.cs | New command-line tool for generating DSL configuration files |
| BlueDotBrigade.Analyzers.Tool.csproj | Project file for the new tool, linking to DslDefaults.cs |
| README.md | Added documentation for the command-line helper tool |
| Analyzers_v1.sln | Added new tool project with build configurations |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Summary
generate-dslcommand for emitting the sample fileTesting
dotnet build(dotnet CLI not installed in environment)Codex Task