Skip to content

Commit

Permalink
Ensure that you can opt-out of implicit usings in Directory.props (#7070
Browse files Browse the repository at this point in the history
)
  • Loading branch information
michaelstaib authored Apr 22, 2024
1 parent 2bab78e commit 4cd6618
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<!--HotChocolateImplicitUsings: default|disable|enable-->
<HotChocolateImplicitUsings>default</HotChocolateImplicitUsings>
<HotChocolateImplicitUsings Condition="'$(HotChocolateImplicitUsings)' == ''>default</HotChocolateImplicitUsings>
</PropertyGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<!--HotChocolateImplicitUsings: default|disable|enable-->
<HotChocolateImplicitUsings>default</HotChocolateImplicitUsings>
<HotChocolateImplicitUsings Condition="'$(HotChocolateImplicitUsings)' == ''>default</HotChocolateImplicitUsings>
</PropertyGroup>
</Project>
</Project>
4 changes: 2 additions & 2 deletions src/HotChocolate/Data/src/MSBuild/HotChocolate.Data.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<!--HotChocolateImplicitUsings: default|disable|enable-->
<HotChocolateImplicitUsings>default</HotChocolateImplicitUsings>
<HotChocolateImplicitUsings Condition="'$(HotChocolateImplicitUsings)' == ''>default</HotChocolateImplicitUsings>
</PropertyGroup>
</Project>
</Project>

0 comments on commit 4cd6618

Please sign in to comment.