update project with ImplicitUsings (#24268)

pull/24269/head
Rick Anderson 2021-12-10 13:00:33 -10:00 committed by GitHub
parent 52bfbd4195
commit 1cf7803700
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

View File

@ -1,7 +1,6 @@
using ConfigSample.Options;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using System.Diagnostics;
namespace ConfigSample.Pages
{