-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProxytrace.Application.Tests.csproj
More file actions
42 lines (36 loc) · 1.83 KB
/
Copy pathProxytrace.Application.Tests.csproj
File metadata and controls
42 lines (36 loc) · 1.83 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
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<NoWarn>$(NoWarn);MSTEST0001</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="10.0.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="10.7.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.9" />
<PackageReference Include="MSTest" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<None Include="appsettings.local.json" Condition="Exists('appsettings.local.json')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Proxytrace.Application\Proxytrace.Application.csproj" />
<ProjectReference Include="..\Proxytrace.Infrastructure\Proxytrace.Infrastructure.csproj" />
<ProjectReference Include="..\Proxytrace.Serialization\Proxytrace.Serialization.csproj" />
<ProjectReference Include="..\Proxytrace.Storage\Proxytrace.Storage.csproj" />
<ProjectReference Include="..\Proxytrace.Testing\Proxytrace.Testing.csproj" />
</ItemGroup>
</Project>