-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathClient.Core.Test.csproj
37 lines (29 loc) · 1.39 KB
/
Client.Core.Test.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;netcoreapp5.0;netcoreapp6.0</TargetFrameworks>
<LangVersion>8</LangVersion>
<IsPackable>false</IsPackable>
<AssemblyName>InfluxDB.Client.Core.Test</AssemblyName>
<RootNamespace>InfluxDB.Client.Core.Test</RootNamespace>
<AssemblyOriginatorKeyFile>../Keys/Key.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="WireMock.Net" Version="1.5.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Client.Core\Client.Core.csproj" />
</ItemGroup>
<PropertyGroup>
<NetCore5PlusFrameworks>|netcoreapp5.0|netcoreapp6.0|</NetCore5PlusFrameworks>
</PropertyGroup>
<ItemGroup Condition="$(NetCore5PlusFrameworks.Contains('|$(TargetFramework)|'))">
<PackageReference Include="coverlet.collector" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>