-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVirtoCommerce.Storefront.Tests.csproj
61 lines (55 loc) · 2.59 KB
/
VirtoCommerce.Storefront.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Bogus" Version="34.0.2" />
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.4" />
<PackageReference Include="FluentValidation" Version="10.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="Moq" Version="4.17.2" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="PagedList.Core" Version="1.17.4" />
<PackageReference Include="Scriban" Version="5.4.4" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.console" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VirtoCommerce.Storefront.Model\VirtoCommerce.Storefront.Model.csproj" />
<ProjectReference Include="..\VirtoCommerce.Storefront\VirtoCommerce.Storefront.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Features\Samples\empty_file.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Features\Samples\empty_data.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Features\Samples\full_data_with_disabled_feature.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Features\Samples\full_data_with_conflicts.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Features\Samples\full_data_without_replaces.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Features\Samples\full_data.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Features\Samples\test_data.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>