Conversation
|
🧙 Sourcery has finished reviewing your pull request! Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Pull Request Overview
This PR attempts to enforce UTF-8 encoding for .csproj files by adding a specific section in the .editorconfig file. However, this change is redundant as the charset is already configured globally and .csproj files are already covered by an existing pattern.
- Added a
[*.csproj]section withcharset = utf-8to .editorconfig
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| [*.csproj] | ||
| charset = utf-8 | ||
|
|
There was a problem hiding this comment.
This section is redundant. The charset is already set to utf-8 globally for all files on line 11, and *.csproj files are already covered by the [*.{xml,config,*proj,nuspec,props,resx,targets,yml,tasks}] section on line 74. This additional section doesn't provide any new configuration and can be removed.
| [*.csproj] | |
| charset = utf-8 |
Link issues
fixes #690
Summary By Copilot
Regression?
Risk
Verification
Packaging changes reviewed?
☑️ Self Check before Merge
Summary by Sourcery
Enforce UTF-8 encoding across the project by updating the .editorconfig settings.
Bug Fixes:
Chores: