Migrate to .NET 9 #198

Merged
marco-carvalho merged 13 commits from net90 into master 2024-12-20 00:52:25 +00:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit 2f9f07596e - Show all commits

View File

@ -1,5 +1,6 @@
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
mattzink commented 2024-12-17 06:16:42 +00:00 (Migrated from github.com)
Review

Why are we setting LangVersion? That's only supposed to be used to force downlevel language versions.

Why are we setting LangVersion? That's only supposed to be used to force downlevel language versions.
marco-carvalho commented 2024-12-17 13:05:00 +00:00 (Migrated from github.com)
Review

I'm only centralizing <LangVersion>latest</LangVersion> in the Directory.Build.props, some projects of the solution target to netstandard2.0

I'm only centralizing `<LangVersion>latest</LangVersion>` in the `Directory.Build.props`, some projects of the solution target to `netstandard2.0`
</PropertyGroup>
</Project>

View File

@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<DefaultItemExcludes>$(DefaultItemExcludes);._*</DefaultItemExcludes>
</PropertyGroup>