-
Notifications
You must be signed in to change notification settings - Fork 47
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
Upgraded to .NET 8 and replaced deprecated NuGet packages #982
Merged
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
Pull Request Test Coverage Report for Build 6918027457
💛 - Coveralls |
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 includes a wide range of changes across multiple files in the project to:
Main functionality changes:
src/DevOpsMetrics.Cmd/Program.cs
: Added conditional logic for configuring Azure Key Vault and updated using statements. [1] [2]src/DevOpsMetrics.Function/NightlyProcessor.cs
: Added conditional logic for configuring Azure Key Vault and updated using statements. [1] [2]src/DevOpsMetrics.Service/Program.cs
: Updated using statements and modified code to load Azure Key Vault URL from the configuration file. [1] [2]Package and framework updates:
src/DevOpsMetrics.Tests/DevOpsMetrics.Tests.csproj
: Modified package versions, added new package references, and updated target framework tonet8.0
. [1] [2]src/DevOpsMetrics.Function/DevOpsMetrics.Function.csproj
: Updated package versions, added new package references, and updated target framework tonet8.0
.src/DevOpsMetrics.Cmd/DevOpsMetrics.Cmd.csproj
: Added new package references and updated target framework. [1] [2]src/DevOpsMetrics.Web/DevOpsMetrics.Web.csproj
: Updated target framework tonet8.0
.src/DevOpsMetrics.Core/DevOpsMetrics.Core.csproj
: Updated target framework versions fromnet6.0;net7.0
tonet6.0;net8.0
.src/DevOpsMetrics.FunctionalTests/DevOpsMetrics.FunctionalTests.csproj
: Updated target framework version fromnet7.0
tonet8.0
.src/DevOpsMetrics.Service/DevOpsMetrics.Service.csproj
: Updated target framework version fromnet7.0
tonet8.0
.Other important changes:
README.md
: Updated various sections of the README file, including project status, badge descriptions, and added links to a demo website and a blog post. [1] [2] [3] [4] [5].github/workflows/dotnetcore.yml
: Updateddotnet-version
and path to chromedriver.exe file in workflow configurations. [1] [2] [3] [4] [5].github/workflows/codeql-analysis.yml
: Updateddotnet-version
in the workflow configuration..github/dependabot.yml
: Removed commented out configuration for updating dependencies.src/DevOpsMetrics.sln
: Removed theDevOpsMetrics.Function
project from the solution file.GitVersion.yml
: Updatednext-version
to'1.10.0'
.src/DevOpsMetrics.Tests/BaseConfiguration.cs
: Added new using statements and updated the TestStartUp method to handle Azure Key Vault configuration. [1] [2]src/DevOpsMetrics.Service/appsettings.json
: Added a new property called "TenantId" to the "AppSettings" section.src/DevOpsMetrics.Tests/appsettings.json
: AddedTenantId
property with value "40244aae-8aee-4af5-b221-b480db24698b".