-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileConversionApi.UnitTests.csproj
More file actions
31 lines (26 loc) · 1.27 KB
/
FileConversionApi.UnitTests.csproj
File metadata and controls
31 lines (26 loc) · 1.27 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="8.8.0" />
<PackageReference Include="Moq" Version="4.20.72" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FileConversionApi.Application\FileConversionApi.Application.csproj" />
<ProjectReference Include="..\..\src\FileConversionApi.Domain\FileConversionApi.Domain.csproj" />
<ProjectReference Include="..\..\src\FileConversionApi.Infrastructure\FileConversionApi.Infrastructure.csproj" />
</ItemGroup>
</Project>