Skip to content

Commit b41f6ed

Browse files
author
Bianco Veigel
committed
- update references
- drop net461
1 parent fcd12e1 commit b41f6ed

File tree

4 files changed

+11
-24
lines changed

4 files changed

+11
-24
lines changed

Graphite.Test/Graphite.Test.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp2.1;net461</TargetFrameworks>
4+
<TargetFramework>netcoreapp2.1</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<RootNamespace>ahd.Graphite.Test</RootNamespace>
77
<AssemblyName>ahd.Graphite.Test</AssemblyName>
@@ -18,9 +18,12 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
22-
<PackageReference Include="xunit" Version="2.3.1" />
23-
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
21+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
22+
<PackageReference Include="xunit" Version="2.4.1" />
23+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
24+
<PrivateAssets>all</PrivateAssets>
25+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
26+
</PackageReference>
2427
</ItemGroup>
2528

2629
<ItemGroup>

Graphite.Test/GraphiteClientTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
using Newtonsoft.Json;
1111
using Razorvine.Pickle;
1212
using Xunit;
13-
using Xunit.Sdk;
1413

1514
namespace ahd.Graphite.Test
1615
{

Graphite.Test/packages.config

Lines changed: 0 additions & 7 deletions
This file was deleted.

Graphite/Graphite.csproj

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>ahd.Graphite</RootNamespace>
66
<AssemblyName>ahd.Graphite</AssemblyName>
77
<Title>Graphite client</Title>
8-
<Version>2.1.1</Version>
8+
<Version>2.2.0</Version>
99
<Authors>ahd GmbH &amp; Co. KG</Authors>
1010
<Company>ahd GmbH &amp; Co. KG</Company>
1111
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
@@ -32,16 +32,8 @@
3232
</PropertyGroup>
3333

3434
<ItemGroup>
35-
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
36-
</ItemGroup>
37-
38-
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
39-
<PackageReference Include="Razorvine.Pyrolite" Version="4.21.0" />
40-
</ItemGroup>
41-
42-
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
43-
<PackageReference Include="Razorvine.Pyrolite" Version="4.19.0" />
44-
<Reference Include="System.Net.Http"/>
35+
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
36+
<PackageReference Include="Razorvine.Pyrolite" Version="4.31.0" />
4537
</ItemGroup>
4638

4739
</Project>

0 commit comments

Comments
 (0)