-
-
Notifications
You must be signed in to change notification settings - Fork 32
Cleanup some code and update nuget packages #471
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,11 +1,11 @@ | ||||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove the hidden BOM character at file start. Line 1 includes a BOM/hidden character before Suggested cleanup-<Project Sdk="Microsoft.NET.Sdk">
+<Project Sdk="Microsoft.NET.Sdk">📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
|
|
||||||
| <PropertyGroup> | ||||||
| <TargetFrameworks>net472;net9.0;net8.0-browser</TargetFrameworks> | ||||||
| </PropertyGroup> | ||||||
|
|
||||||
| <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'"> | ||||||
| <PackageReference Include="TinyCsvParser" Version="3.0.0" /> | ||||||
| <PackageReference Include="TinyCsvParser" Version="3.0.1" /> | ||||||
| </ItemGroup> | ||||||
| <ItemGroup Condition="'$(TargetFramework)' == 'net8.0-browser'"> | ||||||
| <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.*" /> | ||||||
|
|
||||||
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.
Remove the hidden BOM character at file start.
Line 1 contains a BOM/hidden character before
<Project>, which is best removed to avoid unnecessary diff noise.Suggested cleanup
📝 Committable suggestion
🤖 Prompt for AI Agents