Skip to content

Commit

Permalink
Merge pull request #218 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 authored Sep 23, 2023
2 parents 57171a7 + b3acbdc commit 19c7f71
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async Task<TOut> Run(
var dialect = session?.Store.Configuration.SqlDialect;
var quotedTableName = dialect?.QuoteForTableName(
_tablePrefix + _type.Name,
session?.Store.Configuration.Schema);
session.Store.Configuration.Schema);

var result = await request(transaction.Connection, transaction, dialect, quotedTableName);
if (doCommit) await transaction.CommitAsync();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="Refit.HttpClientFactory" Version="6.3.2" />
<PackageReference Include="Refit.Newtonsoft.Json" Version="6.3.2" />
<PackageReference Include="Refit.HttpClientFactory" Version="7.0.0" />
<PackageReference Include="Refit.Newtonsoft.Json" Version="7.0.0" />
</ItemGroup>

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

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<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 @@ -145,7 +145,7 @@ public static IEnumerable<object[]> TypedRouteShouldWorkCorrectlyData()
// cache keys. If that were the case, the second of the two usages would fail.
void AddArgumentsTest(int addDays, string expect)
{
var date = new DateTime(1997, 8, 29, 2, 14, 0).AddDays(addDays);
var date = new DateTime(1997, 8, 29, 2, 14, 0, DateTimeKind.Utc).AddDays(addDays);

tests.Add(new object[]
{
Expand Down

0 comments on commit 19c7f71

Please sign in to comment.