-
Notifications
You must be signed in to change notification settings - Fork 0
Develop #59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Develop #59
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
01ddb30
Bump actions/checkout from 4 to 5 in the actions-deps group
dependabot[bot] 3185f6b
Merge pull request #25 from ptr727/dependabot/github_actions/develop/…
ptr727 a143c42
Bump the nuget-deps group with 3 updates
dependabot[bot] 452ec6d
Merge pull request #26 from ptr727/dependabot/nuget/dot-config/develo…
github-actions[bot] 4dabe60
Bump the nuget-deps group with 1 update
dependabot[bot] d23e037
Merge pull request #33 from ptr727/dependabot/nuget/LanguageTagsTests…
github-actions[bot] c75ffc1
Bump the nuget-deps group with 1 update
dependabot[bot] 1414102
Merge pull request #34 from ptr727/dependabot/nuget/LanguageTagsTests…
github-actions[bot] 6367c6a
Bump csharpier and husky
dependabot[bot] 730e85f
Merge pull request #42 from ptr727/dependabot/nuget/dot-config/develo…
github-actions[bot] 11957b6
Bump Serilog.Sinks.Console from 6.0.0 to 6.1.1
dependabot[bot] 8ce67ff
Merge pull request #43 from ptr727/dependabot/nuget/LanguageTagsCreat…
github-actions[bot] c2c21f0
Update dependencies
ptr727 f529cc7
Merge branch 'main' into develop
ptr727 8445356
Bump the nuget-deps group with 1 update
dependabot[bot] ad0758c
Merge pull request #51 from ptr727/dependabot/nuget/dot-config/develo…
github-actions[bot] 25d88c2
Bump the actions-deps group across 1 directory with 3 updates (#48)
dependabot[bot] 5b06813
Bump the nuget-deps group with 1 update
dependabot[bot] f2b330f
Merge pull request #53 from ptr727/dependabot/nuget/dot-config/develo…
github-actions[bot] 4cc1149
Bump the nuget-deps group with 1 update
dependabot[bot] 6738c90
Merge pull request #54 from ptr727/dependabot/nuget/dot-config/develo…
github-actions[bot] 6ff34d6
Add AOT support, document code and add test cases with help from cop…
ptr727 2a79d9f
Add version history
ptr727 e678c95
Merged
ptr727 6ca40cf
readme
ptr727 373bba3
Fix missing `},` and enable docs generation
ptr727 323d210
Merge branch 'main' into develop
ptr727 8f8f604
dotnet 10
ptr727 099dd76
Merge branch 'main' into develop
ptr727 bba6326
install husky
ptr727 a210d32
Merge branch 'main' into develop
ptr727 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Installing Husky Git hooks in a CI workflow appears unnecessary. Husky is designed to install pre-commit hooks for local development, but this workflow:
dotnet csharpier formaton line 39peter-evans/create-pull-requestaction which handles git operations internallyInstalling Git hooks adds unnecessary overhead to the CI pipeline without providing value. Consider removing this line since the explicit CSharpier formatting already accomplishes the goal of ensuring formatted code.