-
Notifications
You must be signed in to change notification settings - Fork 3
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
Update to .NET 9 #334
Merged
Merged
Update to .NET 9 #334
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
Owner
martincostello
commented
Feb 13, 2024
•
edited
Loading
edited
- Update to .NET 9.
- Refactor some puzzles to leverage new APIs in .NET 9/C# 13.
- Fix/suppress new code analysis warnings.
martincostello
added
enhancement
dependencies
Pull requests that update a dependency file
.NET
Pull requests that update .net code
labels
Feb 13, 2024
martincostello
added a commit
that referenced
this pull request
Feb 14, 2024
Fix new code analysis warning identified in #334.
martincostello
added a commit
that referenced
this pull request
Feb 14, 2024
Fix new code analysis warning identified in #334.
martincostello
force-pushed
the
dotnet-vnext
branch
from
February 16, 2024 12:03
114d2e4
to
e738bef
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
March 12, 2024 20:05
e738bef
to
4f6397d
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
March 21, 2024 14:56
7a92f3b
to
fa2853b
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
March 29, 2024 12:47
fa2853b
to
4e6a9e5
Compare
martincostello
added a commit
that referenced
this pull request
Mar 29, 2024
Remove redundant cast identified by .NET 9 in #334.
Merged
martincostello
added a commit
that referenced
this pull request
Mar 29, 2024
Remove redundant cast identified by .NET 9 in #334.
martincostello
force-pushed
the
dotnet-vnext
branch
from
March 29, 2024 13:25
4e6a9e5
to
d31e3f4
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
2 times, most recently
from
April 9, 2024 19:32
084a9cd
to
81fcdb3
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
April 29, 2024 09:28
397aff3
to
4db1456
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
May 14, 2024 17:04
4db1456
to
e8b9459
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
May 28, 2024 21:58
266b00d
to
23b262f
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
June 11, 2024 17:08
9d92c9b
to
a4bcf94
Compare
@costellobot rebase |
martincostello
force-pushed
the
dotnet-vnext
branch
from
June 12, 2024 12:42
be7dfa1
to
526c0fe
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
July 9, 2024 16:39
526c0fe
to
6cbf473
Compare
@costellobot rebase |
martincostello
force-pushed
the
dotnet-vnext
branch
from
July 12, 2024 14:35
52fcca0
to
408970a
Compare
@costellobot rebase |
martincostello
force-pushed
the
dotnet-vnext
branch
from
July 21, 2024 09:44
408970a
to
1a5d75a
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
August 6, 2024 16:34
1a5d75a
to
7924332
Compare
@costellobot rebase |
martincostello
force-pushed
the
dotnet-vnext
branch
from
August 12, 2024 11:44
7924332
to
3e38a04
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
September 24, 2024 16:31
129e106
to
e5c7063
Compare
martincostello
force-pushed
the
dotnet-vnext
branch
from
October 8, 2024 17:04
e5c7063
to
7f4752b
Compare
@costellobot rebase |
martincostello
force-pushed
the
dotnet-vnext
branch
from
October 17, 2024 08:50
b3cb699
to
484ed44
Compare
Update to preview 1 of .NET 9.
Use the new `Index()` method.
Update .NET SDK to version 9.0.100-preview.2.24157.14. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <[email protected]>
Update .NET SDK to version 9.0.100-preview.3.24204.13. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <[email protected]>
Update .NET SDK to version 9.0.100-preview.4.24267.66. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <[email protected]>
Add batch files to launch Visual Studio (Code) with the locally installed .NET SDK version for use with daily builds.
Disable CA1515 in the ruleset file rather than with NoWarn.
Update .NET SDK to version 9.0.100-preview.5.24307.3. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <[email protected]>
Update .NET SDK to version 9.0.100-preview.6.24328.19. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <[email protected]>
Use `System.Threading.Lock` instead of an object to resolve `IDE0330` warning in .NET 9 preview 7.
Update to preview 7 of .NET 9.
Revert back to using the latest version of C# instead of preview.
Update .NET SDK to version 9.0.100-rc.1.24452.12. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <[email protected]>
Remove CS9057 suppression.
Refactor puzzle 59 to operate on spans of characters.
Search for the unique word "Euler" rather than for common words.
Use the `ReadOnlySpan<T>.Split(char)` method to see if that's better than manual coding.
- Remove local method. - Use a single variable.
- Treat some strings as spans and use their `Split()` method. - Use `string.Join(char)`. - Rename variable to theta symbol.
Update .NET SDK to version 9.0.100-rc.2.24474.11. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <[email protected]>
martincostello
force-pushed
the
dotnet-vnext
branch
from
November 12, 2024 19:11
484ed44
to
be413b3
Compare
Update .NET SDK to version 9.0.100. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
enhancement
.NET
Pull requests that update .net code
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.