Skip to content

Commit 2d9a696

Browse files
committed
.Net Standard 2.1
1 parent b27f63d commit 2d9a696

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

benchmarks/BinaryTreeBenchmarks/BinaryTreeBenchmarks.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp2.2</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

samples/BinaryTreeConsole/BinaryTreeConsole.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp2.2</TargetFramework>
66
<AssemblyName>BinaryTreeConsole</AssemblyName>
77
<PackageId>BinaryTreeConsole</PackageId>
88
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>

src/BinaryTree/BinaryTree.csproj

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
55
<AssemblyName>BinaryTree</AssemblyName>
66
<PackageId>BinaryTree</PackageId>
77
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
88
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
99
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
1010
<RootNamespace>BinaryTree</RootNamespace>
11-
<Version>5.1.0.0</Version>
11+
<Version>5.2.0</Version>
1212
<Authors>RMarusyk</Authors>
1313
<Description>Simple Binary Tree implementation</Description>
1414
<PackageLicenseUrl>https://github.com/Marusyk/BinaryTree/blob/master/LICENSE</PackageLicenseUrl>
1515
<PackageIconUrl>https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS_N3p8bFpmy0AyoBl_3n3XwSVlnjfnPzLduqRlCI-sS19C810kSQ</PackageIconUrl>
1616
<PackageProjectUrl>https://github.com/Marusyk/BinaryTree</PackageProjectUrl>
1717
<PackageTags>binarytree</PackageTags>
1818
<PackageReleaseNotes>
19+
v.5.2.0
20+
Sopporting .Net Standard 2.1
1921
v5.0.0.0
2022
Depends only from .Net Standard 2.0
2123
v4.0.0.1
@@ -25,8 +27,8 @@ Supporting .Net Core 1.1
2527
v2.0.0
2628
Implemented types of traversal strategy.
2729
</PackageReleaseNotes>
28-
<AssemblyVersion>5.1.0.0</AssemblyVersion>
29-
<FileVersion>5.1.0.0</FileVersion>
30+
<AssemblyVersion>5.2.0.0</AssemblyVersion>
31+
<FileVersion>5.2.0.0</FileVersion>
3032
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
3133
</PropertyGroup>
3234

0 commit comments

Comments
 (0)