-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLili.Shop.Tests.csproj
35 lines (30 loc) · 1.43 KB
/
Lili.Shop.Tests.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="Stripe.net" Version="47.1.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Lili.Shop.API\Lili.Shop.API.csproj" />
<ProjectReference Include="..\Lili.Shop.Core\Lili.Shop.Core.csproj" />
<ProjectReference Include="..\Lili.Shop.DataAccess\Lili.Shop.DataAccess.csproj" />
<ProjectReference Include="..\Lili.Shop.Model\Lili.Shop.Model.csproj" />
<ProjectReference Include="..\Lili.Shop.Service\Lili.Shop.Service.csproj" />
</ItemGroup>
</Project>