-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSTIL.ServiceClient.Tests.csproj
More file actions
56 lines (48 loc) · 2.27 KB
/
STIL.ServiceClient.Tests.csproj
File metadata and controls
56 lines (48 loc) · 2.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
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<NoWarn>$(NoWarn);SYSLIB0026</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Remove="Samples\HentOptagedePladser_ErrorResponse_400.xml" />
<None Remove="Samples\HentOptagedePladser_ValidResponse.xml" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
<Using Include="Moq" />
<Using Include="FluentAssertions" />
<Using Include="System.DateTime" Alias="DT" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Samples\HentOptagedePladser_ErrorResponse_400.xml" />
<EmbeddedResource Include="Samples\HentOptagedePladser_ValidResponse.xml" />
<EmbeddedResource Include="Samples\HentTilmeldingerVeuInteressenter_ValidResponse.xml" />
<EmbeddedResource Include="Samples\HentTilmeldingerVeuInteressenter_ErrorResponse_400.xml" />
<EmbeddedResource Include="Samples\HentUdbud_ErrorResponse_500.xml" />
<EmbeddedResource Include="Samples\HentUdbud_ValidResponse.xml" />
<EmbeddedResource Include="Samples\HentUdbud_ErrorResponse_400.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Moq" Version="4.20.69" />
<PackageReference Include="System.ServiceModel.Primitives" Version="4.10.3" />
<PackageReference Include="xunit" Version="2.6.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\STIL.ServiceClient\STIL.ServiceClient.csproj" />
</ItemGroup>
</Project>