Skip to content

Commit

Permalink
Fix casing in Api template (dotnet#46329)
Browse files Browse the repository at this point in the history
We typically use lower case boolean names. Using upper case looks weird.
  • Loading branch information
eerhardt authored Feb 2, 2023
1 parent 7252e31 commit 9d5477e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<NoDefaultLaunchSettingsFile Condition="'$(ExcludeLaunchSettings)' == 'True'">true</NoDefaultLaunchSettingsFile>
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.WebApplication1</RootNamespace>
<ServerGarbageCollection>False</ServerGarbageCollection>
<ServerGarbageCollection>false</ServerGarbageCollection>
<!--#if (NativeAot) -->
<PublishAot>true</PublishAot>
<!--#endif -->
Expand Down

0 comments on commit 9d5477e

Please sign in to comment.