Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<TargetFrameworks>net10.0</TargetFrameworks>
Copy link

Copilot AI Apr 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This project now uses TargetFrameworks with a single TFM. In a few places in this repo, single-target projects that use TargetFrameworks also set TargetFramework to the same value (e.g. src/HotChocolate/Fusion/benchmarks/Fusion.Execution.Benchmarks/Fusion.Execution.Benchmarks.csproj:5-6, src/Mocha/benchmarks/Directory.Build.props:4-5). Consider adding TargetFramework here as well to align with that pattern (or alternatively switch back to TargetFramework and explicitly clear/override any inherited TargetFrameworks).

Suggested change
<TargetFrameworks>net10.0</TargetFrameworks>
<TargetFrameworks>net10.0</TargetFrameworks>
<TargetFramework>net10.0</TargetFramework>

Copilot uses AI. Check for mistakes.
<AssemblyName>HotChocolate.Demo.Catalog.Tests</AssemblyName>
<RootNamespace>HotChocolate.Demo.Catalog.Tests</RootNamespace>
</PropertyGroup>
Expand Down
Loading