-
Notifications
You must be signed in to change notification settings - Fork 1
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
Enhanced the text cursor #363
Merged
Merged
Conversation
This file contains 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
Closed
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.
Copilot reviewed 41 out of 56 changed files in this pull request and generated no suggestions.
Files not reviewed (15)
- .config/dotnet-tools.json: Language not supported
- .editorconfig: Language not supported
- Directory.Packages.props: Language not supported
- OffDotNet.sln: Language not supported
- OffDotNet.slnx: Language not supported
- src/Directory.Build.props: Language not supported
- src/OffDotNet.CodeAnalysis.Pdf/OffDotNet.CodeAnalysis.Pdf.csproj: Language not supported
- src/GlobalUsings.cs: Evaluated as low risk
- src/OffDotNet.CodeAnalysis.Pdf/Syntax/RawSyntaxToken.cs: Evaluated as low risk
- src/OffDotNet.CodeAnalysis.Pdf/Diagnostics/DiagnosticCode.cs: Evaluated as low risk
- src/OffDotNet.CodeAnalysis.Pdf/Syntax/RawSyntaxTrivia.cs: Evaluated as low risk
- src/OffDotNet.CodeAnalysis.Pdf/Diagnostics/MessageProvider.cs: Evaluated as low risk
- src/OffDotNet.CodeAnalysis.Pdf/Syntax/SyntaxKind.cs: Evaluated as low risk
- src/OffDotNet.CodeAnalysis.Pdf/Lexer/Lexer.cs: Evaluated as low risk
- src/OffDotNet.CodeAnalysis.Pdf/Syntax/RawSyntaxNode.cs: Evaluated as low risk
victor-pogor
force-pushed
the
339-implement-lexer
branch
from
November 19, 2024 09:43
0a05521
to
86ba750
Compare
Quality Gate passedIssues Measures |
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.
This pull request includes several updates and additions to the project, focusing primarily on dependency updates, configuration changes, and the addition of new projects and files. Below is a summary of the most important changes:
Dependency Updates:
Directory.Packages.props
, includingMicrosoft.Extensions.ObjectPool
,Microsoft.NET.Test.Sdk
, andxunit
. [1] [2]Configuration Changes:
.config/dotnet-tools.json
to newer versions of tools and added therollForward
option..editorconfig
forSA1503
andSA1500
rules. [1] [2]Project Additions:
OffDotNet.CodeAnalysis.Pdf
andOffDotNet.CodeAnalysis.Pdf.Tests
to the solution fileOffDotNet.sln
. [1] [2] [3]New Files:
OffDotNet.slnx
with structured project and folder organization.src/OffDotNet.CodeAnalysis.Pdf
, includingDiagnosticOptions.cs
,RootConfigurations.cs
,Dependencies.cs
,DiagnosticCode.cs
,MessageProvider.cs
,Lexer.cs
, andRawSyntaxNode.cs
. [1] [2] [3] [4] [5] [6] [7]These changes collectively enhance the project's dependency management, configuration, and structure, while also introducing new functionality through the addition of new projects and files.