Update language ext to v5 #111
Open
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 updates to the .NET version and dependencies across multiple project files, as well as some refactoring in the test files to improve code consistency and functionality.
Updates to .NET version and dependencies:
.github/workflows/ci.yml
: Updateddotnet-version
from6.0.x
to8.0.x
in multiple steps. [1] [2] [3]src/Codehard.Common/Codehard.Common.AspNetCore.Tests/Codehard.Common.AspNetCore.Tests.csproj
: UpdatedTargetFramework
tonet8.0
and various package versions.src/Codehard.Common/Codehard.Common.AspNetCore/Codehard.Common.AspNetCore.csproj
: UpdatedTargetFramework
tonet8.0
,Version
to3.0.0-preview-8
, and several package versions. [1] [2]src/Codehard.Common/Codehard.Common.DomainModel/Codehard.Common.DomainModel.csproj
: UpdatedTargetFramework
tonet8.0
.src/Codehard.Common/Codehard.Common.Tests/Codehard.Common.Tests.csproj
: UpdatedTargetFramework
tonet8.0
and various package versions.src/Codehard.Common/Codehard.Common/Codehard.Common.csproj
: UpdatedTargetFramework
tonet8.0
.src/Codehard.Common/Codehard.DomainModel.Generator.Tests/Codehard.DomainModel.Generator.Tests.csproj
: UpdatedTargetFramework
tonet8.0
and various package versions.src/Codehard.Common/Codehard.DomainModel.Generator/Codehard.DomainModel.Generator.csproj
: UpdatedTargetFramework
tonet8.0
and several package versions. [1] [2]src/Codehard.Functional/CodeHard.Function.FSharp.Tests.Types/CodeHard.Functional.FSharp.Tests.Types.fsproj
: UpdatedTargetFramework
tonet8.0
and various package versions.Code refactoring:
src/Codehard.Common/Codehard.Common/Exceptions/ConfigurationMissingException.cs
: Removed unusedSystem.Runtime.Serialization
using directive and theSerializationInfo
constructor. [1] [2]src/Codehard.Functional/Codehard.Functional.AspNetCore.Tests/AsyncEffectExtensionTests.cs
: Refactored tests to useliftEff
andFailEff
for consistency and improved error handling. [1] [2] [3] [4] [5] [6] [7]