Skip to content

Commit

Permalink
Updated version to 2.4.0 and added support for .NET 6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dahall committed Dec 28, 2021
1 parent 7c959d1 commit 9ad2d80
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This project has translations for English, Spanish, French, Italian, Russian, Ch

## Installation

This is a standard Visual Studio 2015 solution containing the library as a project and a test harness as another project.
This is a standard Visual Studio 2022 solution containing the library as a project and a test harness as another project.

It is available for inclusion into .NET projects via [NuGet](https://www.nuget.org/packages/TimeSpan2/).

Expand All @@ -20,6 +20,7 @@ For sample code, see the [Documentation](docs\Documentation.md).

## Release History

* 2.4.0 - Added support for .NET 6.0
* 2.3.0 - Added support for .NET Core 3.0 and 3.1
* 2.1.6 - Added Dutch and fixed a bug
* 2.1.5 - Added Danish
Expand Down
4 changes: 2 additions & 2 deletions TestTimeSpan2/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
// Major Version Minor Version Build Number Revision
//
// You can specify all the values or you can default the Build and Revision Numbers by using the '*' as shown below: [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
[assembly: AssemblyVersion("2.4.0.0")]
[assembly: AssemblyFileVersion("2.4.0.0")]
6 changes: 3 additions & 3 deletions TimeSpan2/TimeSpan2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<PropertyGroup>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<TargetFrameworks>net20;net35;net40;net45;netcoreapp3.0;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<TargetFrameworks>net20;net35;net40;net45;netcoreapp3.0;netcoreapp3.1;net5.0-windows;net6.0-windows</TargetFrameworks>
<RootNamespace>System</RootNamespace>
<Version>2.3.1</Version>
<Version>2.4.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/dahall/TimeSpan2</PackageProjectUrl>
<RepositoryUrl>https://github.com/dahall/TimeSpan2</RepositoryUrl>
Expand Down Expand Up @@ -72,6 +72,6 @@
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
</Project>

0 comments on commit 9ad2d80

Please sign in to comment.