forked from dotnet/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.Extensions.AI.Evaluation.Reporting.Azure.csproj
More file actions
32 lines (26 loc) · 1.25 KB
/
Copy pathMicrosoft.Extensions.AI.Evaluation.Reporting.Azure.csproj
File metadata and controls
32 lines (26 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A library that supports the Microsoft.Extensions.AI.Evaluation.Reporting library with an implementation for caching LLM responses and storing the evaluation results in an Azure Storage container.</Description>
<TargetFrameworks>$(TargetFrameworks);netstandard2.0</TargetFrameworks>
<RootNamespace>Microsoft.Extensions.AI.Evaluation.Reporting</RootNamespace>
<!-- EA0002: Use System.TimeProvider to make the code easier to test. -->
<NoWarn>$(NoWarn);EA0002</NoWarn>
</PropertyGroup>
<PropertyGroup>
<Workstream>AIEval</Workstream>
<Stage>preview</Stage>
<ForceLatestDotnetVersions>true</ForceLatestDotnetVersions>
<EnablePackageValidation>false</EnablePackageValidation>
<MinCodeCoverage>88</MinCodeCoverage>
<MinMutationScore>0</MinMutationScore>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Storage.Files.DataLake" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Extensions.AI.Evaluation.Reporting\CSharp\Microsoft.Extensions.AI.Evaluation.Reporting.csproj" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleToTest Include="Microsoft.Extensions.AI.Evaluation.Reporting.Tests" />
</ItemGroup>
</Project>