Skip to content

Commit 720cb95

Browse files
authored
Enable AOT Analyzer for Fusion (#7614)
1 parent decc621 commit 720cb95

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/HotChocolate/Fusion/src/Fusion.Execution/HotChocolate.Fusion.Execution.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

9+
<PropertyGroup>
10+
<IsAotCompatible>true</IsAotCompatible>
11+
</PropertyGroup>
12+
913
<ItemGroup>
1014
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
1115
<PackageReference Include="Microsoft.Extensions.Http" />

src/HotChocolate/Fusion/src/Fusion.Execution/Types/CompositeSchema.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ public CompositeSchema(
6464
/// <summary>
6565
/// Gets a type by its name and kind.
6666
/// </summary>
67-
/// <typeparam name="T">The expected type kind.</typeparam>
6867
/// <param name="typeName">The name of the type.</param>
6968
/// <returns>The type.</returns>
7069
/// <exception cref="ArgumentException">

src/HotChocolate/Skimmed/src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<NoWarn>$(NoWarn);CA1812</NoWarn>
77
</PropertyGroup>
88

9-
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">
9+
<PropertyGroup>
1010
<IsAotCompatible>true</IsAotCompatible>
1111
</PropertyGroup>
1212

0 commit comments

Comments
 (0)