Merge pull request #16858 from abpframework/auto-merge/rel-7-2/2004

Merge branch rel-7.3 with rel-7.2
pull/16859/head
maliming 2 years ago committed by GitHub
commit 8f33ba40b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,6 +16,8 @@ Open a command line window in the folder of the project (.csproj file) and type
abp add-package Volo.Abp.BackgroundJobs.Quartz
````
> If you haven't done it yet, you first need to install the [ABP CLI](CLI.md). For other installation options, see [the package description page](https://abp.io/package-detail/Volo.Abp.BackgroundJobs.Quartz).
### Manual Installation
If you want to manually install;

@ -73,9 +73,9 @@ The following commands are for creating MVC UI projects:
_Note that Public Website is only included in PRO templates._
## Blazor
## Blazor WebAssembly
The following commands are for creating Blazor projects:
The following commands are for creating Blazor WASM projects:
* **Entity Framework Core**, no mobile app:

@ -16,6 +16,8 @@ Open a command line window in the folder of the project (.csproj file) and type
abp add-package Volo.Abp.TextTemplating.Razor
````
> If you haven't done it yet, you first need to install the [ABP CLI](CLI.md). For other installation options, see [the package description page](https://abp.io/package-detail/Volo.Abp.TextTemplating.Razor).
### Manual Installation
If you want to manually install;

@ -25,7 +25,6 @@ public class AbpValidateAuthorizedParty : AbpOpenIddictWildcardDomainBase<OpenId
public async override ValueTask HandleAsync(OpenIddictServerEvents.ValidateLogoutRequestContext context)
{
Check.NotNull(context, nameof(context));
Check.NotNull(context.IdentityTokenHintPrincipal, nameof(context.IdentityTokenHintPrincipal));
if (await CheckWildcardDomainAsync(context.PostLogoutRedirectUri))
{

Loading…
Cancel
Save