-
Notifications
You must be signed in to change notification settings - Fork 2
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
Upgrade to .NET 8 #143
Merged
Merged
Upgrade to .NET 8 #143
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
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.
This pull request to
DotNetCensus
updates the support status of various .NET versions, adds a new .NET version, and increases the total number of frameworks. It also updates the project to use .NET 8.0 framework, updates theSystem.Text.Json
version to 8.0.0, and adds a new console application written in .NET 9.0. Additionally, it updates the test project file, workflow files, and GitVersion configuration file to reflect the changes.Main interface changes:
src/DotNetCensus.Tests/DirectoryDataAccessTests.cs
: Updates the support status of various .NET versions, adds a new .NET version, and increases the total number of frameworks. (Faecf684)src/DotNetCensus.Tests/RepoDataAccessTests.cs
: Updates the target framework of two projects from .NET 7.0 to .NET 8.0, updates the support status of two projects from "in preview" to "supported", and adds support for a new .NET version. [1] [2] [3]src/DotNetCensus.Tests/SampleDataUnitTests.cs
: Updates the expected counts of programming languages and frameworks. [1] [2] [3] [4]src/DotNetCensus.Tests/ConsoleAppRepoTests.cs
: Increases expected number of results inAggregateSampleFrameworksNoTotalTest()
test.src/DotNetCensus/DotNetCensus.csproj
: Updates the project to use .NET 8.0 framework and updates theSystem.Text.Json
version to 8.0.0. [1] [2]src/DotNetCensus.Core/DotNetCensus.Core.csproj
: Updates ConsoleTables package version and adds .NET 8.0 framework to the project. [1] [2]samples/Sample.Net9.ConsoleApp/Program.cs
: Adds a new console application written in .NET 9.0.samples/Sample.Net9.ConsoleApp/Sample.Net9.ConsoleApp.csproj
: Adds support for .NET 9.0 in the sample console app project file.Configuration improvements:
src/DotNetCensus.Tests/DotNetCensus.Tests.csproj
: Updates the .NET version and theMicrosoft.NET.Test.Sdk
version in the test project file. [1] [2].github/workflows/workflow.yml
: Updates the .NET version from 7.0 to 8.0 in the workflow files. [1] [2]GitVersion.yml
: Updates GitVersion configuration file to use version 1.7.0 instead of 1.6.0..github/workflows/codeql-analysis.yml
: Updates .NET version from 7.0 to 8.0 in the CodeQL analysis workflow file.src/DotNetCensus.Core/Projects/ProjectClassification.cs
: Adds support for .NET 7.0 and 9.0 frameworks and marks .NET 7.0 as end-of-life on May 14, 2024. [1] [2]README.md
: Updates the support status of a .NET version, withSample.Net7.ConsoleApp.csproj
now marked as EOL and two new .NET versions added.