Skip to content

Commit ad5cc24

Browse files
authored
Remove unusued using statement (fixes #35840) (#35841)
* Remove unusued using statement (fixes #35840) * Removing newline for EnableOpenAPI not needed
1 parent ec01a2a commit ad5cc24

File tree

1 file changed

+1
-4
lines changed
  • src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-CSharp

1 file changed

+1
-4
lines changed

src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-CSharp/Program.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88
#if (OrganizationalAuth || IndividualB2CAuth)
99
using Microsoft.Identity.Web;
1010
#endif
11-
#if (EnableOpenAPI)
12-
using Microsoft.OpenApi.Models;
13-
#endif
14-
#if (OrganizationalAuth || IndividualB2CAuth || GenerateGraph || EnableOpenAPI)
11+
#if (OrganizationalAuth || IndividualB2CAuth || GenerateGraph)
1512

1613
#endif
1714
var builder = WebApplication.CreateBuilder(args);

0 commit comments

Comments
 (0)