Skip to content

Instantly share code, notes, and snippets.

@rezanid
Created September 18, 2023 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rezanid/e7d1a17250eb1a5811f9d9501dab4466 to your computer and use it in GitHub Desktop.
Save rezanid/e7d1a17250eb1a5811f9d9501dab4466 to your computer and use it in GitHub Desktop.
Upgrade C# language version for .NET Framework 4.x
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<LangVersion>11</LangVersion>
<Nullable>disable</Nullable>
</PropertyGroup>
<PropertyGroup>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment