Updated benchmark project to .NET 10 and bumped package versions.#18
Merged
Updated benchmark project to .NET 10 and bumped package versions.#18
Conversation
added 2 commits
January 13, 2026 11:04
Suppressed select compiler warnings and cleaned up namespace usage.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the benchmark project from .NET 8.0 to .NET 10.0, bumps dependency package versions, suppresses specific compiler warnings, and modernizes the namespace declaration to use file-scoped namespaces.
Changes:
- Updated benchmark project target framework from net8.0 to net10.0
- Bumped AltaSoft.DomainPrimitives packages from 7.0.1 to 7.0.2
- Incremented project version from 2.0.0 to 2.0.1
- Modernized namespace declaration to file-scoped syntax and cleaned up unused using directive
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| tests/AltaSoft.Simpra.Benchmark/Program.cs | Converted to file-scoped namespace, removed unused using AltaSoft.Simpra, and changed variable assignment to discard pattern |
| tests/AltaSoft.Simpra.Benchmark/AltaSoft.Simpra.Benchmark.csproj | Updated target framework to net10.0 and added compiler warning suppressions (1701, 1702, 1591) |
| Directory.Packages.props | Bumped AltaSoft.DomainPrimitives packages from version 7.0.1 to 7.0.2 |
| Directory.Build.props | Incremented project version from 2.0.0 to 2.0.1 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -11,7 +11,7 @@ | |||
| <Product>Simpra</Product> | |||
| <Company>ALTA Software llc.</Company> | |||
| <Copyright>Copyright © 2024 ALTA Software llc.</Copyright> | |||
There was a problem hiding this comment.
The copyright year is 2024, but this update is being made in 2026. Consider updating the copyright year to 2026 or using a range like "2024-2026" to reflect the current year.
Suggested change
| <Copyright>Copyright © 2024 ALTA Software llc.</Copyright> | |
| <Copyright>Copyright © 2024-2026 ALTA Software llc.</Copyright> |
This file contains hidden or 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
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.
Suppressed select compiler warnings and cleaned up namespace usage.