-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAICalendar.ApiService.Tests.csproj
More file actions
33 lines (27 loc) · 1.36 KB
/
Copy pathAICalendar.ApiService.Tests.csproj
File metadata and controls
33 lines (27 loc) · 1.36 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
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetVersion)</TargetFramework>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.AI.Evaluation" Version="10.3.0" />
<PackageReference Include="Microsoft.Extensions.AI.Evaluation.Quality" Version="10.3.0" />
<PackageReference Include="Microsoft.Extensions.AI.Evaluation.Reporting" Version="10.3.0" />
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.3" />
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" Version="18.4.1" />
</ItemGroup>
<ItemGroup>
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
<Content Include="appsettings.json" CopyToOutputDirectory="PreserveNewest" />
<Content Include="appsettings.Development.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AICalendar.ApiService\AICalendar.ApiService.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
</Project>