You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add back net9.0 version of the aieval dotnet tool (#6396)
In #6148, we disabled net9.0 TFM for the aieval tool to work around the race described in dotnet/sdk#47696. The underlying issue was subsequently fixed in the SDK (via dotnet/sdk#47788). However, this fix has not been backported to the dotnet 9 SDK yet.
The SDK team is working on backporting the fix (see discussion in dotnet/sdk#47788 (comment)). But in the meanwhile, we can add back the net9.0 TFM and continue to work around the race by disabling parallel build.
This would help users of the aieval tool sidestep errors such as the ones described in #6388 when they dont have dotnet8 installed on the machine.
We can remove this workaround, once the backported fix is available in the dotnet 9 SDK.
Fixes#6388
Copy file name to clipboardExpand all lines: src/Libraries/Microsoft.Extensions.AI.Evaluation.Console/Microsoft.Extensions.AI.Evaluation.Console.csproj
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,7 @@
3
3
<PropertyGroup>
4
4
<Description>A command line dotnet tool for generating reports and managing evaluation data.</Description>
5
5
<OutputType>Exe</OutputType>
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. -->
0 commit comments