Skip to content

Commit c1fcca2

Browse files
authoredMar 18, 2025··
Use only a single TFM for M.E.AI.Eval.Reporting.Console (#6148)
* Use only a single TFM for M.E.AI.Eval.Reporting.Console * Add comment noting the bug,
1 parent 8eb39af commit c1fcca2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/Libraries/Microsoft.Extensions.AI.Evaluation.Console/Microsoft.Extensions.AI.Evaluation.Console.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
<PropertyGroup>
44
<Description>A dotnet tool for managing the evaluation data and generating reports.</Description>
55
<OutputType>Exe</OutputType>
6-
<TargetFrameworks>$(NetCoreTargetFrameworks)</TargetFrameworks>
6+
<!-- Building only one TFM due to bug: https://github.com/dotnet/sdk/issues/47696
7+
Once this is fixed, we can go back to building multiple. -->
8+
<TargetFrameworks>$(MinimumSupportedTfmForPackaging)</TargetFrameworks>
79
<RootNamespace>Microsoft.Extensions.AI.Evaluation.Console</RootNamespace>
810
<!-- EA0000: Use source generated logging methods for improved performance. -->
911
<NoWarn>$(NoWarn);EA0000</NoWarn>

0 commit comments

Comments
 (0)
Please sign in to comment.