Skip to content

Commit d2c76d7

Browse files
authored
Update packages (#155)
1 parent dbc4c80 commit d2c76d7

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ TimeZoneConverter is a lightweight library to convert quickly between IANA, Wind
1313

1414
## Compatibility
1515

16-
As of version 6.0.0, TimeZoneConverter works with all of the following:
16+
As of version 9.0.0, TimeZoneConverter works with all of the following:
1717

18-
- .NET 5 or greater
18+
- .NET 6, .NET 8, .NET 9
1919
- .NET Core 2.0 or greater
2020
- .NET Framework 4.6.2 and greater
2121

global.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"sdk": {
3-
"version": "6.0.300",
4-
"rollForward": "latestMinor",
5-
"allowPrerelease": false
6-
}
2+
"sdk": {
3+
"version": "9.0.100",
4+
"rollForward": "latestMinor",
5+
"allowPrerelease": false
6+
}
77
}

src/TimeZoneConverter.DataBuilder/TimeZoneConverter.DataBuilder.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66
<GenerateDocumentationFile>false</GenerateDocumentationFile>
77
<IsPackable>false</IsPackable>

src/TimeZoneConverter.Posix/TimeZoneConverter.Posix.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;netstandard2.0;net462</TargetFrameworks>
4+
<TargetFrameworks>net6.0;netstandard2.0;net462;net8.0</TargetFrameworks>
55
<Description>Generates a POSIX time zone string from standard time zone identifiers.</Description>
66
<Authors>Matt Johnson-Pint</Authors>
77
<PackageId>TimeZoneConverter.Posix</PackageId>

src/TimeZoneConverter/TimeZoneConverter.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;netstandard2.0;net462</TargetFrameworks>
4+
<TargetFrameworks>net6.0;netstandard2.0;net462;net8.0;net9.0</TargetFrameworks>
55
<Description>Lightweight library to convert quickly between IANA, Windows, and Rails time zone names.</Description>
66
<Authors>Matt Johnson-Pint</Authors>
77
<PackageId>TimeZoneConverter</PackageId>

test/TimeZoneConverter.Posix.Tests/PosixTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class PosixTests
88
[InlineData("America/Havana", "CST5CDT,M3.2.0/0,M11.1.0/1")]
99
[InlineData("Europe/London", "GMT0BST,M3.5.0/1,M10.5.0")]
1010
[InlineData("Australia/Lord_Howe", "<+1030>-10:30<+11>-11,M10.1.0,M4.1.0")]
11-
[InlineData("Pacific/Chatham", "<+1245>-12:45<+1345>,M9.4.0/2:45,M4.1.0/3:45")]
11+
[InlineData("Pacific/Chatham", "<+1245>-12:45<+1345>,M9.5.0/2:45,M4.1.0/3:45")]
1212
[InlineData("Europe/Astrakhan", "<+04>-4")]
1313
public void Test_Posix_From_IANA(string input, string expected)
1414
{

test/TimeZoneConverter.Posix.Tests/TimeZoneConverter.Posix.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;netcoreapp3.1;net462</TargetFrameworks>
4+
<TargetFrameworks>net6.0;netcoreapp3.1;net462;net8.0;net9.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

test/TimeZoneConverter.Tests/TimeZoneConverter.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;netcoreapp3.1;net462</TargetFrameworks>
4+
<TargetFrameworks>net6.0;netcoreapp3.1;net462;net8.0;net9.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

0 commit comments

Comments
 (0)