File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 11
11
</PropertyGroup >
12
12
13
13
<ItemGroup >
14
- <PackageReference Include =" Roslynator.Analyzers" Version =" 4.1.1 " PrivateAssets =" All" />
14
+ <PackageReference Include =" Roslynator.Analyzers" Version =" 4.2.0 " PrivateAssets =" All" />
15
15
<PackageReference Include =" Nullable" Version =" 1.3.1" PrivateAssets =" All" />
16
16
</ItemGroup >
17
17
Original file line number Diff line number Diff line change 13
13
</ItemGroup >
14
14
15
15
<ItemGroup >
16
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.3.2 " />
17
- <PackageReference Include =" Verify.Xunit" Version =" 18.1 .1" />
16
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.5.0 " />
17
+ <PackageReference Include =" Verify.Xunit" Version =" 19.11 .1" />
18
18
<PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.5" >
19
19
<PrivateAssets >all</PrivateAssets >
20
20
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
21
21
</PackageReference >
22
- <PackageReference Include =" NodaTime" Version =" 3.1.5" />
23
22
<PackageReference Include =" xunit" Version =" 2.4.2" />
24
23
<PackageReference Include =" Xunit.SkippableFact" Version =" 1.4.13" />
24
+ <PackageReference Include =" Microsoft.TestPlatform.ObjectModel" Version =" 17.5.0" Condition =" '$(TargetFramework)' == 'net48'" />
25
25
</ItemGroup >
26
26
27
27
<ItemGroup Condition =" '$(GITHUB_ACTIONS)' == 'true'" >
Original file line number Diff line number Diff line change 1
- using NodaTime ;
2
- using TimeZoneConverter ;
1
+ using TimeZoneConverter ;
3
2
using Xunit . Abstractions ;
4
3
5
4
namespace TimeZoneNames . Tests ;
@@ -285,7 +284,7 @@ public void Can_Get_English_Names_For_All_Windows_Timezones()
285
284
public void Can_Get_English_Names_For_All_IANA_Timezones ( )
286
285
{
287
286
var errors = new List < string > ( ) ;
288
- foreach ( var tzid in DateTimeZoneProviders . Tzdb . Ids . OrderBy ( x => x ) )
287
+ foreach ( var tzid in TZConvert . KnownIanaTimeZoneNames . OrderBy ( x => x ) )
289
288
{
290
289
try
291
290
{
You can’t perform that action at this time.
0 commit comments