From 8d80356d2bea196056cca6d68e6759ceddaeae65 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Wed, 1 Dec 2021 21:48:36 +0100 Subject: [PATCH] Fix .NET 6 implicit usings annotation in `.csproj` --- DotNet/C#/C#.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DotNet/C#/C#.md b/DotNet/C#/C#.md index d7c3a9e..c6c5bf1 100644 --- a/DotNet/C#/C#.md +++ b/DotNet/C#/C#.md @@ -72,10 +72,10 @@ namespace Namespace // namespace declaration } ``` -To disable .NET 6/C# 10 **implicit namespace imports**: +To enable .NET 6/C# 10 **implicit namespace imports**: ```xml -true +enable ``` ### Top Level Statements/Programs (C# 9)