Update target frameworks and enable latest C# features
Updated the project to target .NET 8.0 alongside .NET Framework 4.6.2. Added `<LangVersion>` property set to `latest` to enable the use of the latest C# language features. Existing `<ImplicitUsings>` and `<Nullable>` properties remain unchanged. No changes were made to the `MediatR` package reference.
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
<TargetFrameworks>net462;net8.0</TargetFrameworks>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user