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
Expand Up @@ -3,9 +3,7 @@
<PropertyGroup>
<Description>A command line dotnet tool for generating reports and managing evaluation data.</Description>
<OutputType>Exe</OutputType>
<!-- Building only one TFM due to bug: https://github.com/dotnet/sdk/issues/47696
Once this is fixed, we can go back to building multiple. -->
<TargetFrameworks>$(MinimumSupportedTfmForPackaging)</TargetFrameworks>
<TargetFrameworks>$(NetCoreTargetFrameworks)</TargetFrameworks>
<RootNamespace>Microsoft.Extensions.AI.Evaluation.Console</RootNamespace>
<!-- EA0000: Use source generated logging methods for improved performance. -->
<NoWarn>$(NoWarn);EA0000</NoWarn>
Expand All @@ -22,6 +20,15 @@
<MinMutationScore>0</MinMutationScore>
</PropertyGroup>

<!--
Disable parallel build to work around https://github.com/dotnet/sdk/issues/47696. The problem has been fixed in
https://github.com/dotnet/sdk/pull/47788, however the fix has not yet been back ported to the dotnet 9 SDK. We can
remove this workaround once the fix is available in the dotnet 9 SDK.
-->
<PropertyGroup>
<BuildInParallel>false</BuildInParallel>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Azure.Storage.Files.DataLake" />
Expand Down
Loading