Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 471 Bytes

Dev VS Project properties.md

File metadata and controls

12 lines (10 loc) · 471 Bytes

Project properties

Properties

  • Disable implicit using directives: <ImplicitUsings>disable</ImplicitUsings>
  • Enable C# 10 in the project: <LangVersion>10.0</LangVersion>
  • Enable C# 9 in the project: <LangVersion>9.0</LangVersion>
  • Enable nullable: 'enable'
  • Targeting .NET 6: <TargetFramework>net6.0</TargetFramework>