Upgrade target framework to resolve package compatibility issues (resolves #42) #98
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.
Summary
This PR addresses issue #42 by upgrading the target framework and fixing API compatibility issues with the latest Platform.Data.Doublets packages.
Changes:
net6tonet8.0Background
Issue #42 originally requested upgrading from
netcoreapp3.0tonetcoreapp3.1, but the project has since evolved through multiple framework upgrades (netcoreapp3.0→net5→net6→net8.0). The main challenge was updating the code to work with breaking changes in the Platform.Data.Doublets API between versions.API Changes Fixed
Updated code to work with the latest Platform.Data.Doublets packages:
Namespace migrations:
Platform.Data.Doublets.Unicode→Platform.Data.Doublets.Sequences.UnicodePlatform.Data.Doublets.Time→Platform.Data.Doublets.Sequences.TimePlatform.Data.Doublets.Numbers.Raw→ remains in core packagePlatform.Data.Doublets.Sequences.Numbers.Rawfor number convertersPlatform.Data.Doublets.Memory.Split.Specific→Platform.Data.Doublets.Memory.Split.GenericType updates:
UInt32SplitMemoryLinkswith genericSplitMemoryLinks<TLinkAddress>UInt32Linksdecorator (no longer needed in new API)CriterionMatchersnamespace forTargetMatcherConstructor signature changes:
unicodeSequenceMarkerparameter toUnicodeSequenceToStringConverterTest Results
Warnings (non-blocking)
The build produces some warnings related to nullable reference types and obsolete BenchmarkDotNet methods. These are pre-existing issues and don't affect functionality.
🤖 Generated with Claude Code
Resolves #42