Skip to content

Commit

Permalink
Merge pull request #151 from Lombiq/issue/OSOE-683
Browse files Browse the repository at this point in the history
OSOE-683: Update all NuGet dependencies
  • Loading branch information
sarahelsaig committed Sep 23, 2023
2 parents 9fd5526 + f0c0cb8 commit 51095b8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Lombiq.DataTables/Lombiq.DataTables.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="ClosedXML" Version="0.102.0" />
<PackageReference Include="ClosedXML" Version="0.102.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Nito.AsyncEx.Tasks" Version="5.1.2" />
<PackageReference Include="OrchardCore.Contents" Version="1.7.0" />
Expand Down
2 changes: 1 addition & 1 deletion Lombiq.DataTables/Services/DataTableDataProviderBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public string GetActionsColumn(string columnName = nameof(ContentItem.ContentIte
if (_hca?.HttpContext != null)
{
var returnUrl = _linkGenerator.GetPathByAction(
_hca?.HttpContext,
_hca.HttpContext,
nameof(TableController.Get),
typeof(TableController).ControllerName(),
new { providerName = GetType().Name });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static class TestCaseUITestContextExtensions
"Junior Technical Author",
"San Francisco",
"66",
new DateTime(2009, 1, 12, 12, 0, 0),
new DateTime(2009, 1, 12, 12, 0, 0, DateTimeKind.Utc),
"$86,000",
};

Expand All @@ -28,7 +28,7 @@ public static class TestCaseUITestContextExtensions
"Accountant",
"Tokyo",
"33",
new DateTime(2008, 11, 28, 12, 0, 0),
new DateTime(2008, 11, 28, 12, 0, 0, DateTimeKind.Utc),
"$162,700",
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="OrchardCore.Liquid" Version="1.7.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ public static IEnumerable<object[]> Data()
0,
};

var date1 = new DateTime(2020, 11, 26, 23, 42, 01);
var date2 = new DateTime(2020, 11, 26, 13, 42, 01);
var date3 = new DateTime(2020, 11, 26, 1, 42, 01);
var date1 = new DateTime(2020, 11, 26, 23, 42, 01, DateTimeKind.Utc);
var date2 = new DateTime(2020, 11, 26, 13, 42, 01, DateTimeKind.Utc);
var date3 = new DateTime(2020, 11, 26, 1, 42, 01, DateTimeKind.Utc);

// The date value should be the same, only the formatting changes.
yield return new object[]
Expand Down

0 comments on commit 51095b8

Please sign in to comment.