Skip to content

Commit

Permalink
Merge pull request #28 from Lombiq/issue/OSOE-751
Browse files Browse the repository at this point in the history
OSOE-751: Upgrade to Orchard Core 1.8
  • Loading branch information
Psichorex authored Feb 21, 2024
2 parents 84879f7 + 9e437a9 commit 12bdbfe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions Apis/Context/AuthenticationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,8 @@ internal sealed class AlwaysLoggedInApiAuthenticationHandler : AuthenticationHan
public AlwaysLoggedInApiAuthenticationHandler(
IOptionsMonitor<ApiAuthorizationOptions> options,
ILoggerFactory logger,
UrlEncoder encoder,
ISystemClock clock)
: base(options, logger, encoder, clock) { }
UrlEncoder encoder)
: base(options, logger, encoder) { }

protected override Task<AuthenticateResult> HandleAuthenticateAsync() =>
Task.FromResult(
Expand Down
6 changes: 3 additions & 3 deletions Lombiq.SetupExtensions.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<DefaultItemExcludes>$(DefaultItemExcludes);.git*;node_modules\**</DefaultItemExcludes>
</PropertyGroup>

Expand Down Expand Up @@ -32,8 +32,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OrchardCore.Abstractions" Version="1.7.0" />
<PackageReference Include="OrchardCore.Infrastructure" Version="1.7.0" />
<PackageReference Include="OrchardCore.Abstractions" Version="1.8.2" />
<PackageReference Include="OrchardCore.Infrastructure" Version="1.8.2" />
</ItemGroup>

</Project>

0 comments on commit 12bdbfe

Please sign in to comment.