-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathBunqSdk.Tests.csproj
executable file
·32 lines (32 loc) · 1.23 KB
/
BunqSdk.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Bunq.Sdk.Tests</RootNamespace>
<LangVersion>default</LangVersion>
<AssemblyName>BunqSdk.Tests.xunit.runner.json</AssemblyName>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\BunqSdk\BunqSdk.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-*" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.2.0-*" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.0.0-beta4" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
<PackageReference Include="xunit.runners" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<Content Include="xunit.runner.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\NotificationUrlJsons" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\chain.cert" />
<None Remove="Resources\bunq-psd2-test.conf" />
</ItemGroup>
</Project>