-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathArcus.Testing.Tests.Unit.csproj
More file actions
80 lines (75 loc) · 4.3 KB
/
Copy pathArcus.Testing.Tests.Unit.csproj
File metadata and controls
80 lines (75 loc) · 4.3 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
<NoWarn>CA2007<!-- unit tests do not have a synchronization context, only sync 'hidden' as async --></NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Bogus" Version="35.*" />
<PackageReference Include="coverlet.collector" Version="6.*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FsCheck" Version="3.*" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="Moq" Version="4.*" />
<PackageReference Include="MSTest.TestFramework" Version="3.*" />
<PackageReference Include="xunit.v3" Version="3.*" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Arcus.Testing.Core\Arcus.Testing.Core.csproj" />
<ProjectReference Include="..\Arcus.Testing.Assert\Arcus.Testing.Assert.csproj" />
<ProjectReference Include="..\Arcus.Testing.Integration.DataFactory\Arcus.Testing.Integration.DataFactory.csproj" />
<ProjectReference Include="..\Arcus.Testing.Logging.TUnit\Arcus.Testing.Logging.TUnit.csproj" />
<ProjectReference Include="..\Arcus.Testing.Logging.Xunit.v3\Arcus.Testing.Logging.Xunit.v3.csproj" Aliases="ArcusXunitV3" />
<ProjectReference Include="..\Arcus.Testing.Logging.Xunit\Arcus.Testing.Logging.Xunit.csproj" Aliases="ArcusXunitV2" />
<ProjectReference Include="..\Arcus.Testing.Logging.NUnit\Arcus.Testing.Logging.NUnit.csproj" />
<ProjectReference Include="..\Arcus.Testing.Logging.MSTest\Arcus.Testing.Logging.MSTest.csproj" />
<ProjectReference Include="..\Arcus.Testing.Messaging.ServiceBus\Arcus.Testing.Messaging.ServiceBus.csproj" />
<ProjectReference Include="..\Arcus.Testing.Storage.Cosmos\Arcus.Testing.Storage.Cosmos.csproj" />
<ProjectReference Include="..\Arcus.Testing.Storage.Blob\Arcus.Testing.Storage.Blob.csproj" />
<ProjectReference Include="..\Arcus.Testing.Storage.Table\Arcus.Testing.Storage.Table.csproj" />
<ProjectReference Include="..\Arcus.Testing.Tests.Core\Arcus.Testing.Tests.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Assert_\Resources\json.ignored.order.objects.in.array.sample.actual.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assert_\Resources\json.ignored.order.objects.in.array.sample.expected.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assert_\Resources\xslt-transform.xml-xml.sample.output.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assert_\Resources\xslt-transform.xml-xml.sample.transformer.xslt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assert_\Resources\xslt-transform.xml-xml.sample.input.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assert_\Resources\xslt-transform.xml-json.sample.input.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assert_\Resources\xslt-transform.xml-csv.sample.input.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assert_\Resources\xslt-transform.xml-json.sample.output.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assert_\Resources\xslt-transform.xml-csv.sample.output.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assert_\Resources\xslt-transform.xml-json.sample.transformer.xslt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assert_\Resources\xslt-transform.xml-csv.sample.transformer.xslt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>