mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Fix .NET 6 implicit usings annotation in .csproj
This commit is contained in:
parent
2beb560067
commit
8d80356d2b
1 changed files with 2 additions and 2 deletions
|
@ -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
|
```xml
|
||||||
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
```
|
```
|
||||||
|
|
||||||
### Top Level Statements/Programs (C# 9)
|
### Top Level Statements/Programs (C# 9)
|
||||||
|
|
Loading…
Add table
Reference in a new issue