diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 696d401fed..0bfa3e0711 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-dotnet@master with: - dotnet-version: 8.0.100 + dotnet-version: 9.0.100-rc.1.24452.12 - name: chown run: | diff --git a/Directory.Packages.props b/Directory.Packages.props index 8f741e93b8..f6db56e778 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -51,69 +51,70 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + @@ -127,7 +128,7 @@ - + @@ -154,17 +155,17 @@ - + - + - - - + + + @@ -174,5 +175,6 @@ + diff --git a/abp_io/AbpIoLocalization/AbpIoLocalization/AbpIoLocalization.csproj b/abp_io/AbpIoLocalization/AbpIoLocalization/AbpIoLocalization.csproj index 267ace87f2..6e7bbc184e 100644 --- a/abp_io/AbpIoLocalization/AbpIoLocalization/AbpIoLocalization.csproj +++ b/abp_io/AbpIoLocalization/AbpIoLocalization/AbpIoLocalization.csproj @@ -1,7 +1,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/abp_io/AbpIoLocalization/AbpIoLocalization/Base/Localization/Resources/en.json b/abp_io/AbpIoLocalization/AbpIoLocalization/Base/Localization/Resources/en.json index 82aabed272..ed7781b476 100644 --- a/abp_io/AbpIoLocalization/AbpIoLocalization/Base/Localization/Resources/en.json +++ b/abp_io/AbpIoLocalization/AbpIoLocalization/Base/Localization/Resources/en.json @@ -251,6 +251,7 @@ "VideoCourses": "Essential Videos", "DoYouAgreePrivacyPolicy": "By clicking Subscribe button you agree to the Terms & Conditions and Privacy Policy.", "AbpConferenceDescription": "ABP Conference is a virtual event for .NET developers to learn and connect with the community.", - "Mobile": "Mobile" + "Mobile": "Mobile", + "MetaTwitterCard": "summary_large_image" } } \ No newline at end of file diff --git a/docs/en/Community-Articles/2023-11-16-Upgrading-Your-Existing-Projects-to-NET8/POST.md b/docs/en/Community-Articles/2023-11-16-Upgrading-Your-Existing-Projects-to-NET8/POST.md index c0bf748876..3ed34680c1 100644 --- a/docs/en/Community-Articles/2023-11-16-Upgrading-Your-Existing-Projects-to-NET8/POST.md +++ b/docs/en/Community-Articles/2023-11-16-Upgrading-Your-Existing-Projects-to-NET8/POST.md @@ -52,7 +52,7 @@ For example, you can update the ASP.NET Core image as follows: ```diff - FROM mcr.microsoft.com/dotnet/aspnet:7.0-bullseye-slim AS base -+ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ++ FROM mcr.microsoft.com/dotnet/aspnet:9.0 ``` You can check the related images from Docker Hub and update them accordingly: diff --git a/docs/en/Community-Articles/2024-10-01-SignalR-9-New-Features/Post.md b/docs/en/Community-Articles/2024-10-01-SignalR-9-New-Features/Post.md new file mode 100644 index 0000000000..c004d45eba --- /dev/null +++ b/docs/en/Community-Articles/2024-10-01-SignalR-9-New-Features/Post.md @@ -0,0 +1,99 @@ +### ASP.NET Core SignalR New Features — Summary + +In this article, I’ll highlight the latest .**NET 9 SignalR updates** for ASP.NET Core 9.0. + +![Cover](cover.png) + + + +### SignalR Hub Accepts Base Classes + +SignalR `Hub` class can now get a base class of a polymorphic class. As you see in the example below, I can send `Animal` to `Process` method. Before .NET 9, we could only pass the derived classes: `Cat` and `Dog`. + +```csharp +/*** My Base Class is Animal ***/ +[JsonPolymorphic] +[JsonDerivedType(typeof(Cat), nameof(Cat))] +[JsonDerivedType(typeof(Dog), nameof(Dog))] +private class Animal +{ + public string Name { get; set; } +} + +/*** CAT derived from Animal ***/ +private class Cat : Animal +{ + public CatTypes CatType { get; set; } +} + +/*** DOG derived from Animal ***/ +private class Dog : Animal +{ + public DogTypes DogType { get; set; } +} + + +public class MyHub : Hub +{ + /*** We can use the base type Animal here ***/ + public void Process(Animal animal) + { + if (animal is Cat) { ... } + else if (animal is Dog) { ... } + } +} + +``` + + + +### Better Diagnostics and Telemetry + +Microsoft focuses mainly on .NET Aspire nowadays. That’s why SignalR now integrates more deeply with the .NET Activity API, which is commonly used for distributed tracing. The enhancement is implemented for better monitoring in [.NET Aspire Dashboard](https://learn.microsoft.com/en-us/dotnet/aspire/fundamentals/dashboard/overview?tabs=bash#using-the-dashboard-with-net-aspire-projects). To support this feature: + +1- Add these packages to your`csproj`: + +```xml + + + +``` + +2- Add the following startup code to your host project: + +```csharp +builder.Services.AddSignalR(); +/* After AddSignalR use AddOpenTelemetry() */ +builder + .Services + .AddOpenTelemetry() + .WithTracing(tracing => + { + if (builder.Environment.IsDevelopment()) + { + tracing.SetSampler(new AlwaysOnSampler()); //for dev env monitor all traces + } + + tracing.AddAspNetCoreInstrumentation(); + tracing.AddSource("Microsoft.AspNetCore.SignalR.Server"); + }); + +builder.Services.ConfigureOpenTelemetryTracerProvider(tracing => tracing.AddOtlpExporter()); +``` + +Finally, you’ll see the **SignalR Hub** events on the [Aspire Dashboard](https://learn.microsoft.com/en-us/dotnet/aspire/fundamentals/dashboard/overview): + +![.NET Aspire Activity Dashboard](signalr-activity-dashboard.png) + + + +### Trimming and Native AOT Support + +With .NET 9, **trimming** and **native** **Ahead Of Time** compilation are **supported**. This will improve our application performance. To support AOT, your SignalR object serialization needs to be JSON, and you must use the `System.Text.Json` s[ource generator](https://learn.microsoft.com/en-us/dotnet/standard/serialization/system-text-json/source-generation). Also on the server side, [you shouldn't use](https://github.com/dotnet/aspnetcore/issues/56179) `IAsyncEnumerable` and `ChannelReader` where `T` is a ValueType (`struct`) for Hub method arguments. One more limitation; [Strongly typed hubs](https://learn.microsoft.com/en-us/aspnet/core/signalr/hubs?view=aspnetcore-8.0#strongly-typed-hubs) aren't supported with Native AOT (`PublishAot`). And you should use only `Task`, `Task`, `ValueTask`, `ValueTask` for `async` return types. + + + +--- + +That's all the new features coming to SignalR in .NET 9! +Happy coding 🧑🏽‍💻 diff --git a/docs/en/Community-Articles/2024-10-01-SignalR-9-New-Features/cover.png b/docs/en/Community-Articles/2024-10-01-SignalR-9-New-Features/cover.png new file mode 100644 index 0000000000..d5e783520a Binary files /dev/null and b/docs/en/Community-Articles/2024-10-01-SignalR-9-New-Features/cover.png differ diff --git a/docs/en/Community-Articles/2024-10-01-SignalR-9-New-Features/signalr-activity-dashboard.png b/docs/en/Community-Articles/2024-10-01-SignalR-9-New-Features/signalr-activity-dashboard.png new file mode 100644 index 0000000000..44f167c603 Binary files /dev/null and b/docs/en/Community-Articles/2024-10-01-SignalR-9-New-Features/signalr-activity-dashboard.png differ diff --git a/docs/en/deployment/ssl.md b/docs/en/deployment/ssl.md index e1f463dba8..152bc1d5a2 100644 --- a/docs/en/deployment/ssl.md +++ b/docs/en/deployment/ssl.md @@ -2,9 +2,11 @@ A website needs an SSL certificate in order to keep user data secure, verify ownership of the website, prevent attackers from creating a fake version of the site, and gain user trust. -This document introduces how to get and use SSL certificate(HTTPS) for your application. +This document introduces how to get and use an SSL certificate(HTTPS) for your application. -## Get a SSL Certificate from a Certificate Authority + + +## Get an SSL Certificate from a Certificate Authority You can get a SSL certificate from a certificate authority (CA) such as [Let's Encrypt](https://letsencrypt.org/) or [Cloudflare](https://www.cloudflare.com/learning/ssl/what-is-an-ssl-certificate/) and so on. @@ -14,21 +16,137 @@ Once you have a certificate, you need to configure your web server to use it. Th * [Host ASP.NET Core on Linux with Nginx: HTTPS configuration](https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-nginx) * [How to Set Up SSL on IIS 7 or later](https://learn.microsoft.com/en-us/iis/manage/configuring-security/how-to-set-up-ssl-on-iis) -## Create a Self-Signed Certificate -You can create a self-signed certificate for testing purposes or internal use. -There is an article about [how to create a self-signed certificate](https://learn.microsoft.com/en-us/dotnet/core/additional-tools/self-signed-certificates-guide), If you are using IIS, you can use the following this document to [obtain a Certificate](https://learn.microsoft.com/en-us/iis/manage/configuring-security/how-to-set-up-ssl-on-iis#obtain-a-certificate) +### How to get a free SSL certificate from Let's Encrypt? + +Let's Encrypt is **a free, automated, and open certificate authority (CA)**. It gives the digital certificates to enable HTTPS (SSL/TLS) for websites. To get a free SSL certificate, we will use [acme.sh](https://github.com/acmesh-official/acme.sh) and Cloudflare DNS API to get a free SSL certificate from [Let's Encrypt](https://letsencrypt.org/). + +> If you have any problem with the following steps, you can read the [acme.sh](https://github.com/acmesh-official/acme.sh/wiki/dnsapi) tutorial. + + + +#### Install [acme.sh](https://github.com/acmesh-official/acme.sh) + +Ensure that you have `curl` command in your terminal. And run the following command on your terminal: + +```bash +curl https://get.acme.sh | sh -s email=my@example.com +``` + + + +#### [Cloudflare DNS API token](https://dash.cloudflare.com/profile/api-tokens) + + +You will need to create an API token which either: + +(i) has permission to edit a single specific DNS zone; or +(ii) has permission to edit multiple DNS zones. + +You can do this via your Cloudflare profile page under the API Tokens section. When you create the token, under Permissions, select Zone > DNS > Edit, and under Zone Resources, only include the specific DNS zones within which you need to perform ACME DNS challenges. + +The API token is a 40-character string that may contain uppercase letters, lowercase letters, numbers, and underscores. You must provide it to acme.sh by setting the environment variable CF_Token to its value, e.g. run export CF_Token="Y_jpG9AnfQmuX5Ss9M_qaNab6SQwme3HWXNDzRWs". + +**(i) Single DNS zone** +You must give acme.sh the zone ID of the DNS zone it needs to edit. This is a 32-character hexadecimal string (e.g. 763eac4f1bcebd8b5c95e9fc50d010b4), and should not be confused with the zone name (e.g. example.com). This zone ID can be found via the Cloudflare dashboard on the zone's Overview page in the right-hand sidebar. + +You provide this info by setting the environment variable CF_Zone_ID to this zone ID, e.g. run export CF_Zone_ID="763eac4f1bcebd8b5c95e9fc50d010b4". + +**(ii) Multiple DNS zones** +You must give acme.sh the account ID of the Cloudflare account to which the relevant DNS zones belong. This is a 32-character hexadecimal string, and should not be confused with other account identifiers, such as the account email address (e.g. alice@example.com) or global API key (which is also a 32-character hexadecimal string). This account ID can be found via the Cloudflare dashboard, as the end of the URL when logged in, or on the Overview page of any of your zones, in the right-hand sidebar, beneath the zone ID. + +You provide this info by setting the environment variable CF_Account_ID to this account ID, e.g. run export CF_Account_ID="763eac4f1bcebd8b5c95e9fc50d010b4". + + + +#### Issue a certificate + +```bash +> export CF_Token='your_token' +> export CF_Account_ID='your_account_id' +> export CF_Zone_ID='your_zone_id' +> acme.sh --issue --dns dns_cf -d getabp.net + +[Info] Domains have changed. +[Info] Using CA: https://acme.zerossl.com/v2/DV90 +[Info] Single domain='getabp.net' +[Info] Getting webroot for domain='getabp.net' +[Info] Adding TXT value: 1uEeVFfmwXM7N21Wi9PitgEnhJbl4W4dHeRkapGkRSs for domain: _acme-challenge.getabp.net +[Info] Adding record +[Info] Added, OK +[Info] The TXT record has been successfully added. +[Info] Let's check each DNS record now. Sleeping for 20 seconds first. +[Info] You can use '--dnssleep' to disable public dns checks. +[Info] See: https://github.com/acmesh-official/acme.sh/wiki/dnscheck +[Info] Checking getabp.net for _acme-challenge.getabp.net +[Info] Success for domain getabp.net '_acme-challenge.getabp.net'. +[Info] All checks succeeded +[Info] Verifying: getabp.net +[Info] Processing. The CA is processing your order, please wait. (1/30) +[Info] Success +[Info] Removing DNS records. +[Info] Removing txt: 1uEeVFfmwXM7N21Wi9PitgEnhJbl4W4dHeRkapGkRSs for domain: _acme-challenge.getabp.net +[Info] Successfully removed +[Info] Verification finished, beginning signing. +[Info] Let's finalize the order. +[Info] Le_OrderFinalize='https://acme.zerossl.com/v2/DV90/order/1AP31vqE7rzxCmvpDsDgvA/finalize' +[Info] Order status is 'processing', let's sleep and retry. +[Info] Sleeping for 15 seconds then retrying +[Info] Polling order status: https://acme.zerossl.com/v2/DV90/order/1AP31vqE7rzxCmvpDsDgvA +[Info] Downloading cert. +[Info] Le_LinkCert='https://acme.zerossl.com/v2/DV90/cert/o1jBkRs8LVVBiEZShd4Yow' +[Info] Cert success. +-----BEGIN CERTIFICATE----- +MIID9jCCA3ygAwIBAgIQbJr7iNOSnkMXJjkwngvQRzAKBggqhkjOPQQDAzBLMQsw +CQYDVQQGEwJBVDEQMA4GA1UEChMHWmVyb1NTTDEqMCgGA1UEAxMhWmVyb1NTTCBF +Q0MgRG9tYWluIFNlY3VyZSBTaXRlIENBMB4XDTI0MDkyODAwMDAwMFoXDTI0MTIy +NzIzNTk1OVowFTETMBEGA1UEAxMKZ2V0YWJwLm5ldDBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABJ.....io0Kq3W2o0eAgXDVXw2QJ6RlZKi0RGha/D92u/OAqvjX0I4 +YEPRRgAm6l2oLg== +-----END CERTIFICATE----- +[Info] Your cert is in: getabp.net.cer +[Info] Your cert key is in: getabp.net.key +[Info] The intermediate CA cert is in: ca.cer +[Info] And the full-chain cert is in: fullchain.cer +``` + +#### Convert the certificate to PFX format(IIS format) + +```bash +openssl pkcs12 -export \ + -in getabp.net.cer \ + -inkey getabp.net.key \ + -out getabp.net.pfx \ + -passout pass: +``` + +If you want to set a password for the PFX file, you can set the password with `-passout pass:your_password`. + + + +## Common Exceptions + +If you encounter the following exceptions, it means your **certificate is not trusted by the client or the certificate is not valid**. +You will may see the following SSL certificate errors in your browser when you try to access the website. + +```cs +---> System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception. +---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch +``` -## Common Problems +```cs +---> System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception. +---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid because of errors in the certificate chain: UntrustedRoot +``` -### The remote certificate is invalid because of errors in the certificate chain: UntrustedRoot -This error may occur when using IIS. You need to trust your certificate by `Manage computer certificates`. ## References * [ABP IIS Deployment](./index.md) +* [acme.sh](https://github.com/acmesh-official/acme.sh) +* [acme.sh DNS API](https://github.com/acmesh-official/acme.sh/wiki/dnsapi#dns_cf) * [HTTPS in ASP.NET Core](https://learn.microsoft.com/en-us/aspnet/core/security/enforcing-ssl) * [Let's Encrypt](https://letsencrypt.org/getting-started) -* [Cloudflare's Free SSL / TLS](https://www.cloudflare.com/application-services/products/ssl/) \ No newline at end of file +* [Cloudflare's Free SSL / TLS](https://www.cloudflare.com/application-services/products/ssl/) diff --git a/docs/en/framework/architecture/modularity/basics.md b/docs/en/framework/architecture/modularity/basics.md index 481c1e192a..f92e6edc3b 100644 --- a/docs/en/framework/architecture/modularity/basics.md +++ b/docs/en/framework/architecture/modularity/basics.md @@ -7,7 +7,7 @@ ABP was designed to support to build fully modular applications and systems wher * This document introduces the basics of the module system. * [Module development best practice guide](../best-practices) explains some **best practices** to develop **re-usable application modules** based on **DDD** principles and layers. A module designed based on this guide will be **database independent** and can be deployed as a **microservice** if needed. * [Pre-built application modules](../../../modules) are **ready to use** in any kind of application. -* [Module startup template](../../../solution-templates/layered-web-application) is a jump start way to **create a new module**. +* [Module startup template](../../../solution-templates/application-module) is a jump start way to **create a new module**. * [ABP CLI](../../../cli/index.md) has commands to support modular development. * All other framework features are compatible to the modularity system. diff --git a/docs/en/framework/fundamentals/dynamic-claims.md b/docs/en/framework/fundamentals/dynamic-claims.md index 44bebd2aea..f326ac444d 100644 --- a/docs/en/framework/fundamentals/dynamic-claims.md +++ b/docs/en/framework/fundamentals/dynamic-claims.md @@ -1,8 +1,8 @@ # Dynamic Claims -When a client authenticates and obtains an access token or an authentication cookie, the claims in that token or cookie are not changed unless it re-authenticates. For most of the claims, that may not be a problem since claims are not frequently changing values. However, some claims may be changed and these changes should be reflected to the current session immediately. For example, we can revoke a role from a user and that should be immediately effective, otherwise user will continue to use that role's permissions until re-login to the application. +When a client authenticates and obtains an access token or an authentication cookie, the claims in that token or cookie are not changed unless it re-authenticates. That is not a problem for most claims since the claim values do not frequently change. However, for some claims, it may be required to immediately see the impact after the claim values change in the current session. For example, if a role is revoked from a user, you want to see its effect in the next request. Otherwise, the user will continue to use that role's permissions until re-login to the application. -ABP's dynamic claims feature is used to automatically and dynamically override the configured claim values in the client's authentication token/cookie by the latest values of these claims. +ABP's dynamic claims feature dynamically overrides the configured claim values in the client's authentication token/cookie with the latest values of these claims. ## How to Use @@ -10,7 +10,7 @@ This feature is disabled by default. You should enable it for your application a > **Beginning from the v8.0, all the [startup templates](../../solution-templates) are pre-configured and the dynamic claims feature is enabled by default. So, if you have created a solution with v8.0 and above, you don't need to make any configuration. Follow the instructions only if you've upgraded from a version lower than 8.0.** -### Enabling the Dynamic Claims +### Enabling / Disabling the Dynamic Claims You can enable it by the following code: @@ -19,7 +19,7 @@ public override void ConfigureServices(ServiceConfigurationContext context) { context.Services.Configure(options => { - options.IsDynamicClaimsEnabled = true; + options.IsDynamicClaimsEnabled = true; //set it "true" to enable "Dynamic Claims" or "false" to disable it. }); } ```` diff --git a/docs/en/framework/ui/blazor/branding.md b/docs/en/framework/ui/blazor/branding.md index 9fea655eb4..81b4244c25 100644 --- a/docs/en/framework/ui/blazor/branding.md +++ b/docs/en/framework/ui/blazor/branding.md @@ -24,8 +24,6 @@ namespace MyCompanyName.MyProjectName.Blazor } ```` -> Currently, setting the `AppName` is only applicable to the [Basic Theme](./basic-theme.md), it does not have any effect on the other [official themes](../../../ui-themes). - The result will be like shown below: ![branding-appname](../../../images/branding-appname.png) diff --git a/docs/en/framework/ui/mvc-razor-pages/branding.md b/docs/en/framework/ui/mvc-razor-pages/branding.md index 53d499031c..46c05d7d7e 100644 --- a/docs/en/framework/ui/mvc-razor-pages/branding.md +++ b/docs/en/framework/ui/mvc-razor-pages/branding.md @@ -26,8 +26,6 @@ namespace MyProject.Web } ```` -> Currently, setting the `AppName` is only applicable to the [Basic Theme](./basic-theme.md), it does not have any effect on the other [official themes](../../../ui-themes). - The result will be like shown below: ![bookstore-added-logo](../../../images/bookstore-added-logo.png) diff --git a/docs/en/get-started/console.md b/docs/en/get-started/console.md index df06fc33de..6a17784380 100644 --- a/docs/en/get-started/console.md +++ b/docs/en/get-started/console.md @@ -10,12 +10,14 @@ First, install the [ABP CLI](../cli) if you haven't installed before: dotnet tool install -g Volo.Abp.Studio.Cli ```` -Then use the `abp new` command in an empty folder to create a new solution: +Then use the `abp new` command in an empty folder to create a new solution (with the `--old` parameter at the end of the command): ````bash -abp new Acme.MyConsoleApp -t console +abp new Acme.MyConsoleApp -t console --old ```` +> **Note**: Since this startup template is not provided by the new ABP Studio Templates yet, you need to pass the `--old` parameter at the end of the command to use the old CLI & templating system for this startup template. + `Acme.MyConsoleApp` is the solution name, like *YourCompany.YourProduct*. You can use single level, two-levels or three-levels naming. ## Solution Structure diff --git a/docs/en/get-started/wpf.md b/docs/en/get-started/wpf.md index 8ccaeac181..287119986e 100644 --- a/docs/en/get-started/wpf.md +++ b/docs/en/get-started/wpf.md @@ -10,12 +10,14 @@ First, install the [ABP CLI](../cli) if you haven't installed before: dotnet tool install -g Volo.Abp.Studio.Cli ```` -Then use the `abp new` command in an empty folder to create a new solution: +Then use the `abp new` command in an empty folder to create a new solution (with the `--old` parameter at the end of the command): ````bash -abp new Acme.MyWpfApp -t wpf +abp new Acme.MyWpfApp -t wpf --old ```` +> **Note**: Since this startup template is not provided by the new ABP Studio Templates yet, you need to pass the `--old` parameter at the end of the command to use the old CLI & templating system for this startup template. + `Acme.MyWpfApp` is the solution name, like *YourCompany.YourProduct*. You can use single level, two-levels or three-levels naming. ## Solution Structure diff --git a/docs/en/guides/ms-multi-tenant-domain-resolving.md b/docs/en/guides/ms-multi-tenant-domain-resolving.md index 7a7aface92..cb48a63905 100644 --- a/docs/en/guides/ms-multi-tenant-domain-resolving.md +++ b/docs/en/guides/ms-multi-tenant-domain-resolving.md @@ -270,6 +270,7 @@ Your request from the browser to the subdomain will be accepted by the ingress-c Update your charts ingress.yaml files. Ex for **administration-ingress.yaml**: +{%{ ```yaml spec: tls: @@ -303,6 +304,7 @@ spec: port: number: 80 ``` +}%} **Update all the application, gateway and microservice ingress.yaml files.** Eventually, when deploy the application, you will be seeing: ![updated-ingress](../images/updated-ingress.png) @@ -311,6 +313,7 @@ spec: Navigate to applications, gateways and microservices' **x-deployment.yaml** file and override the newly introduced `TenantDomain` key: +{%{ ```yaml ... Removed for brevity - name: "TenantDomain" # Add this key @@ -319,11 +322,13 @@ Navigate to applications, gateways and microservices' **x-deployment.yaml** file value: "{{ .Values.config.authServer.authority }}" ... ``` +}%} > **Update all the application, gateway and microservice deployment.yaml files.** **For AuthServer, also add the WildCardDomains that is used to handle subdomain *redirect* and *post_logout redirect* URIs to the authserver-deployment.yaml file:** +{%{ ```yaml ... Removed for brevity - name: "TenantDomain" @@ -348,6 +353,7 @@ Navigate to applications, gateways and microservices' **x-deployment.yaml** file value: "{{ .Values.wildCardDomains.productService }}" ... ``` +}%} Afterwards, update the **values.yaml** file for all the sub-charts (administration, authserver etc): @@ -383,7 +389,7 @@ wildCardDomains: After updating the **deployment.yaml** and **values.yaml** files of all the application, gateway and microservices' navigate to the **mystore chart values.yaml** file located under the k8s/Mystore/values.yaml that overrides all the sub-charts: **AuthServer:** - +{%{ ```yaml # auth-server sub-chart override authserver: @@ -402,11 +408,13 @@ authserver: saasService: "https://{0}.saas.mystore.dev" productService: "https://{0}.product.mystore.dev" ``` +}%} You may also get CORS error when authenticating SwaggerUI of your gateways or microservices. Add Override the AuthServer CORS values with the subdomain to solve this problem: **identityService:** +{%{ ```yaml # identity-service sub-chart override identity: @@ -416,9 +424,10 @@ identity: ... Removed for brevity tenantDomain: "https://{0}.identity.mystore.dev" ``` +}%} **administrationService:** - +{%{ ```yaml # administration-service sub-chart override administration: @@ -428,9 +437,11 @@ administration: ... Removed for brevity tenantDomain: "https://{0}.administration.mystore.dev" ``` +}%} **saasService:** +{%{ ```yaml # saas-service sub-chart override saas: @@ -440,9 +451,9 @@ saas: ... Removed for brevity tenantDomain: "https://{0}.saas.mystore.dev" ``` - +}%} **productService:** - +{%{ ```yaml # product-service sub-chart override product: @@ -452,9 +463,10 @@ product: ... Removed for brevity tenantDomain: "https://{0}.product.mystore.dev" ``` +}%} **gateway-web:** - +{%{ ```yaml # saas-service sub-chart override gateway-web: @@ -464,9 +476,10 @@ gateway-web: ... Removed for brevity tenantDomain: "https://{0}.gateway-web.mystore.dev" ``` +}%} **gateway-web-public:** - +{%{ ```yaml # gateway-web-public sub-chart override gateway-web-public: @@ -476,9 +489,10 @@ gateway-web-public: ... Removed for brevity tenantDomain: "https://{0}.gateway-public.mystore.dev" ``` +}%} **publicweb:** - +{%{ ```yaml # Public Web application sub-chart override publicweb: @@ -489,9 +503,10 @@ publicweb: ... Removed for brevity tenantDomain: "https://{0}.mystore.dev" ``` +}%} **angular:** - +{%{ ```yaml # Angular back-office application sub-chart override angular: @@ -505,6 +520,7 @@ angular: strictDiscoveryDocumentValidation: false skipIssuerCheck: true ``` +}%} > If you are using Web or BlazorServer application for back-office, it is similar configuration with the public-web application diff --git a/docs/en/images/pen-test-alert-list-8.3.png b/docs/en/images/pen-test-alert-list-8.3.png new file mode 100644 index 0000000000..d0584bde22 Binary files /dev/null and b/docs/en/images/pen-test-alert-list-8.3.png differ diff --git a/docs/en/modules/docs.md b/docs/en/modules/docs.md index 6ab4f566c0..dc04339e78 100644 --- a/docs/en/modules/docs.md +++ b/docs/en/modules/docs.md @@ -367,7 +367,7 @@ You can use [ABP](https://github.com/abpframework/abp/) GitHub documents to conf For `SQL` databases, you can use the below `T-SQL` command to insert the specified sample into your `DocsProjects` table: ```mssql -INSERT [dbo].[DocsProjects] ([Id], [Name], [ShortName], [Format], [DefaultDocumentName], [NavigationDocumentName], [MinimumVersion], [DocumentStoreType], [ExtraProperties], [MainWebsiteUrl], [LatestVersionBranchName], [ParametersDocumentName], [ConcurrencyStamp]) VALUES (N'12f21123-e08e-4f15-bedb-ae0b2d939659', N'ABP (FileSystem)', N'abp', N'md', N'Index', N'docs-nav.json', NULL, N'FileSystem', N'{"Path":"C:\\Github\\abp\\docs"}', N'/', NULL, N'', N'12f21123e08e4f15bedbae0b2d939659') +INSERT [dbo].[DocsProjects] ([Id], [Name], [ShortName], [Format], [DefaultDocumentName], [NavigationDocumentName], [MinimumVersion], [DocumentStoreType], [ExtraProperties], [MainWebsiteUrl], [LatestVersionBranchName], [ParametersDocumentName], [ConcurrencyStamp]) VALUES (N'12f21123-e08e-4f15-bedb-ae0b2d939659', N'ABP (GitHub)', N'abp', N'md', N'Index', N'docs-nav.json', NULL, N'GitHub', N'{"GitHubRootUrl":"https://github.com/abpframework/abp/tree/{version}/docs","GitHubAccessToken":"","GitHubUserAgent":""}', N'/', N'dev', N'', N'12f21123e08e4f15bedbae0b2d939659') ``` Be aware that `GitHubAccessToken` is masked. It's a private token and you must get your own token and replace the `***` string. @@ -407,7 +407,7 @@ You can use [ABP](https://github.com/abpframework/abp/) GitHub documents to conf For `SQL` databases, you can use the below `T-SQL` command to insert the specified sample into your `DocsProjects` table: ```mssql -INSERT [dbo].[DocsProjects] ([Id], [Name], [ShortName], [Format], [DefaultDocumentName], [NavigationDocumentName], [MinimumVersion], [DocumentStoreType], [ExtraProperties], [MainWebsiteUrl], [LatestVersionBranchName], [ParametersDocumentName]) VALUES (N'12f21123-e08e-4f15-bedb-ae0b2d939659', N'ABP (FileSystem)', N'abp', N'md', N'Index', N'docs-nav.json', NULL, N'FileSystem', N'{"Path":"C:\\Github\\abp\\docs"}', N'/', NULL, N'') +INSERT [dbo].[DocsProjects] ([Id], [Name], [ShortName], [Format], [DefaultDocumentName], [NavigationDocumentName], [MinimumVersion], [DocumentStoreType], [ExtraProperties], [MainWebsiteUrl], [LatestVersionBranchName], [ParametersDocumentName], [ConcurrencyStamp]) VALUES (N'12f21123-e08e-4f15-bedb-ae0b2d939659', N'ABP (FileSystem)', N'abp', N'md', N'Index', N'docs-nav.json', NULL, N'FileSystem', N'{"Path":"C:\\Github\\abp\\docs"}', N'/', NULL, N'', N'12f21123e08e4f15bedbae0b2d939659') ``` Add one of the sample projects above and run the application. In the menu you will see `Documents` link, click the menu link to open the documents page. diff --git a/docs/en/others/penetration-test-report.md b/docs/en/others/penetration-test-report.md index 524f3fc9a7..c092a856ea 100644 --- a/docs/en/others/penetration-test-report.md +++ b/docs/en/others/penetration-test-report.md @@ -1,6 +1,6 @@ # ABP Penetration Test Report -The ABP Commercial MVC `v8.2.0` application template has been tested against security vulnerabilities by the [OWASP ZAP v2.14.0](https://www.zaproxy.org/) tool. The demo web application was started on the `https://localhost:44349` address. The below alerts have been reported by the pentest tool. These alerts are sorted by the risk level as high, medium, and low. The informational alerts are not mentioned in this document. +The ABP Commercial MVC `v8.3.0` application template has been tested against security vulnerabilities by the [OWASP ZAP v2.14.0](https://www.zaproxy.org/) tool. The demo web application was started on the `https://localhost:44349` address. The below alerts have been reported by the pentest tool. These alerts are sorted by the risk level as high, medium, and low. The informational alerts are not mentioned in this document. Many of these alerts are **false-positive**, meaning the vulnerability scanner detected these issues, but they are not exploitable. It's clearly explained for each false-positive alert why this alert is a false-positive. @@ -10,14 +10,15 @@ In the next sections, you will find the affected URLs, attack parameters (reques There are high _(red flag)_, medium _(orange flag)_, low _(yellow flag)_, and informational _(blue flag)_ alerts. -![penetration-test-8.2.0](../images/pen-test-alert-list-8.2.png) -w +![penetration-test-8.3.0](../images/pen-test-alert-list-8.3.png) + > The informational alerts are not mentioned in this document. These alerts are not raising any risks on your application and they are optional. ### Path Traversal [Risk: High] - False Positive - *[GET] - https://localhost:44349/api/audit-logging/audit-logs?startTime=&endTime=&url=&userName=&applicationName=&clientIpAddress=&correlationId=&httpMethod=audit-logs&httpStatusCode=&maxExecutionDuration=&minExecutionDuration=&hasException=true&sorting=executionTime+desc&skipCount=0&maxResultCount=10* (attack: **httpMethod=audit-logs**) - *[POST] - https://localhost:44349/Account/Login* (attack: **\Login**) +- *[POST] - https://localhost:44349/Account/Register* (attack: **\Register**) - *[POST] - https://localhost:44349/Account/SecurityLogs* (attack: **\SecurityLogs**) - *[POST] - https://localhost:44349/Identity/SecurityLogs* (attack: **\SecurityLogs**) @@ -49,6 +50,18 @@ SQL injection may be possible. SQL injection is a web security vulnerability tha ABP uses Entity Framework Core and LINQ. **It's safe against SQL Injection because it passes all data to the database via SQL parameters.** LINQ queries are not composed by using string manipulation or concatenation, that's why they are not susceptible to traditional SQL injection attacks. Therefore, this is a **false-positive** alert. +### SQL Injection - Authentication Bypass [Risk: High] - False Positive + +* *[POST] — https://localhost:44349/Account/Login* (attack: **false AND 1=1 --**) + +**Description**: + +SQL injection may be possible on a login page, potentially allowing the application's authentication mechanism to be bypassed. + +**Solution**: + +This alert indicates that we must not trust client side input (even if there is client side validation in place) and check all data on the server side. ABP Framework already does that and makes server-side validations while authenticating a user. Therefore this is a **false-positive** alert. + ### Absence of Anti-CSRF Tokens [Risk: Medium] — False Positive * *[GET] - https://localhost:44349/Account/LinkUsers/LinkUsersModal?returnUrl=/SettingManagement* @@ -113,8 +126,8 @@ Configure(options => ### Format String Error [Risk: Medium] - False Positive -- *[GET] — https://localhost:44349/Abp/Languages/Switch?culture=ZAP%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%0A&returnUrl=%2F&uiCulture=ar* -- *[GET] — https://localhost:44349/Abp/ApplicationLocalizationScript?cultureName=ZAP%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%0A* +- *[GET] — https://localhost:44349/Abp/Languages/Switch?culture=ZAP%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%0A&returnUrl=%2F&uiCulture=ar* (with combination of different parameters) +- *[GET] — https://localhost:44349/Abp/ApplicationLocalizationScript?cultureName=ZAP%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%25n%25s%0A* (with combination of different parameters) **Description:** @@ -148,19 +161,21 @@ Injection using XSL transformations may be possible and may allow an attacker to **Explanation**: -This is a **false-positive** alert. v8.2.0 uses .NET 8 and the XSLT transformation is not possible on .NET5 or higher. +This is a **false-positive** alert. v8.3.0 uses .NET 8 and the XSLT transformation is not possible on .NET5 or higher. ### Application Error Disclosure [Risk: Low] — False Positive - *[POST] — https://localhost:44349/Account/ImpersonateUser* +- *[POST] — https://localhost:44349/Saas/Host/Editions* +- *[POST] — https://localhost:44349/Saas/Host/Tenants* **Description:** -The reported page contains an error/warning message that may disclose sensitive information like the location of the file that produced the unhandled exception. This information can be used to launch further attacks against the web application. The alert could be a false positive if the error message is found inside a documentation page. +The reported pages contain an error/warning message that may disclose sensitive information like the location of the file that produced the unhandled exception. This information can be used to launch further attacks against the web application. The alert could be a false positive if the error message is found inside a documentation page. **Explanation:** -This vulnerability was reported as a **positive** alert because the application ran in `Development` mode. ABP Framework throws exceptions for developers in the `Development` environment. We set the environment to `Production` and re-run the test, then the server sent a *500-Internal Error* without the error disclosed. Therefore this alert is **false-positive**. Further information can be found in the following issue: [github.com/abpframework/abp/issues/14177](https://github.com/abpframework/abp/issues/14177#issuecomment-1268206947). +This vulnerability was reported as a **positive** alert because the application ran in `Development` mode. ABP throws exceptions for developers in the `Development` environment. We set the environment to `Production` and re-run the test, then the server sent a *500-Internal Error* without the error disclosed. Therefore this alert is **false-positive**. Further information can be found in the following issue: [github.com/abpframework/abp/issues/14177](https://github.com/abpframework/abp/issues/14177#issuecomment-1268206947). ### Cookie No `HttpOnly` Flag [Risk: Low] — Positive (No need for a fix) @@ -326,89 +341,10 @@ The `X-Content-Type-Options` header allows you to avoid MIME type sniffing by sa You can add the [ABP's Security Header Middleware](../framework/ui/mvc-razor-pages/security-headers.md#security-headers-middleware) into the request pipeline to set the `X-Content-Type-Options` as *no-sniff*. Also, this middleware adds other pre-defined security headers to your application, including `X-XSS-Protection`, `X-Frame-Options` and `Content-Security-Policy` (if it's enabled). Read [Security Headers](../framework/ui/mvc-razor-pages/security-headers.md) documentation for more info. -## Other Alerts - -The following alerts are reported by the community or our customers in v8.1+. - -### Disclosed Microsoft Client Secret [Risk: Medium] - Positive (No need for a fix) - -* *[GET] — https://localhost:44349/setting-management* - -**Description**: - -Secrets shall never be exposed to unauthorized parties. This exposure can result from improper storage, insecure transmission, or inadequate access controls. In this specific case the owner of the user account is authorized to read and modify the secret. In case of administrative accounts, it could lead to further damages, by performing lateral movements, by using the credentials to access other services. - -**Explanation**: - -The endpoint `/setting-management/` requires permission to be visited and can only be accessed via authorized users. It is the setting page to configure the application settings including the *default localization language*, *timezone*, *layout type*, *password settings* and more... - -### Incorrect Session Handling – Insufficient Session Termination [Risk: Low] - Positive - -* *[GET] — https://localhost:44349/Account/Logout* - -**Description**: - -Application logout functionality does not terminate the user's session. This increases the risk of unauthorized application access via successful session hijacking attacks, users leaving their computers unattended, and/or a local attacker utilizing the browser history. On logout, user sessions should be invalidated and all relevant session identifiers, authentication tokens and application state information deleted or overwritten both on server and on client side. - -**Explanation**: - -You can track the status of this case at [github.com/abpframework/abp/issues/19576](https://github.com/abpframework/abp/issues/19576). - -### Information Disclosure via Configuration Scripts [Risk: Low] - Positive (No need for a fix) +## Other Alerts (Fixed) -- *[GET] — https://localhost:44349/Abp/ApplicationConfigurationScript* or *https://localhost:44349/api/abp/application-configuration* -- *[GET] — https://localhost:44349/Abp/ServiceProxyScript* - -**Description**: - -When users authenticate to the application, their browsers issue requests to 2 endpoints that host configuration scripts for the application framework. The first contains information about the passwords that are accepted by the application. This information can be used by the attackers to narrow down their dictionaries and only focus on the possible passwords for their -attacks. The second, on the other hand, discloses some endpoints that are unavailable to the users with low privileges. - -**Explanation**: - -* **Application Configuration Script**: - - These 2 endpoints are used by ABP application templates. The first one `/Abp/ApplicationConfigurationScript` provides configuration and user based definitions with JSON format. This data is important for SPA based applications to get the current language, localization texts, policies, settings, user info, current tenant or time zone information. This is not a data leak. User specific data can only be accessed after user logon. Other data are application-wide used not dangerous for unauthenticated users. For more information check out the [Application Configuration](../framework/api-development/standard-apis/configuration.md) document. - -* **Service Proxy Script**: - - This endpoint provides auto-generated JavaScript AJAX call methods for the backend operations. This may disclosure information about the host API methods. On the other hand, it makes easy to consume the HTTP APIs from JavaScript side. ABP Application Services are automatically converted to JavaScript proxies. But it does not mean that these JavaScript methods can be executed anonymously. The attacker still needs to log in to perform operations. For more information check out the [Service Proxy Script](../framework/ui/mvc-razor-pages/dynamic-javascript-proxies.md) document. If you want to disable this functionality, check out [github.com/abpframework/abp/issues/12297](https://github.com/abpframework/abp/issues/12297) - -### User E-mail Address Enumeration [Risk: Low] - Positive - -* *[GET] — https://localhost:44349/Account/ForgotPassword* - -**Description**: - -It is possible to collect valid email addresses by interacting with the "Forgot Password" function of the -application. This vulnerability is useful to increase the efficiency of brute force attacks. - -**Explanation**: - -If the email is known, it is easier to find the corresponding password. With the "Forgot Password" function, the attacker can enumerate valid email addresses as the function returns `Cannot find the given email` error, when there is no user registered with the provided e-mail address. This vulnerability has been fixed with v8.2, see the related issue for more info: [github.com/abpframework/abp/issues/19588](https://github.com/abpframework/abp/issues/19588). - -### Software Version Disclosure [Risk: Low] - Positive (No need for a fix) - -* *[GET] — https://localhost:44349/* - -**Description**: - -The assessed web server discloses its version number within the HTTP response headers. This information facilitates attackers in planning future attacks and can be used in the automation of the attack process. It is unnecessary to share this information with the clients of the web application. The vulnerability can be verified by issuing HTTP requests and inspecting HTTP response headers. HTTP header "Server" contains the version information. -The following header was received in server responses: `Server: Microsoft-IIS/10.0` or `Server: Microsoft-HTTPAPI/2.0`. - -**Explanation**: - -This is not directly related to ABP. It's a header added by the IIS server. So you can disable this header with the `web.config` file: - -```xml - - - - - - - - -``` +The following alerts were reported by the community or our customers in v8.2 and fixed: -The following issue has been opened for this vulnerability, you can follow it at [github.com/abpframework/abp/issues/19589](https://github.com/abpframework/abp/issues/19589). \ No newline at end of file +* https://github.com/abpframework/abp/issues/19576 +* https://github.com/abpframework/abp/issues/19588 +* https://github.com/abpframework/abp/issues/19589 diff --git a/docs/en/release-info/migration-guides/abp-8-2.md b/docs/en/release-info/migration-guides/abp-8-2.md index cd904f052e..15de922d4f 100644 --- a/docs/en/release-info/migration-guides/abp-8-2.md +++ b/docs/en/release-info/migration-guides/abp-8-2.md @@ -16,9 +16,6 @@ This document is a guide for upgrading ABP v8.x solutions to ABP v8.2. There are Before this version, all of the projects above were targeting multiple frameworks (**netstandard2.0**, **netstandard2.1** and **net8.0**), with this version, we started to only target **net8.0** for these template projects. Note that, all other shared libraries still target multiple frameworks. > This change should not affect your pre-existing solutions and you don't need to make any changes in your application. See the PR for more info: https://github.com/abpframework/abp/pull/19565 -## Upgraded AutoMapper to 13.0.1 - -In this version, **AutoMapper** library version upgraded to 13.0.1. See [the release notes of AutoMapper v13.0.1](https://github.com/AutoMapper/AutoMapper/releases/tag/v13.0.1) for more information. ## Added default padding to `.tab-content` class for Basic Theme @@ -60,4 +57,62 @@ In this version, the Angular UI has been updated to use the Angular version 17.3 The **Session Management** feature allows you to prevent concurrent login and manage user sessions. -In this version, a new entity called `IdentitySession` has been added to the framework and you should create a new migration and apply it to your database. \ No newline at end of file +In this version, a new entity called `IdentitySession` has been added to the framework and you should create a new migration and apply it to your database. + +## Upgraded NuGet Dependencies + +You can see the following list of NuGet libraries that have been upgraded with this release, if you are using one of these packages explicitly, you may consider upgrading them in your solution: + +| Package | Old Version | New Version | +| ---------------------------------------------------------- | ----------- | ----------- | +| AutoMapper | 12.0.1 | 13.0.1 | +| Blazorise | 1.4.1 | 1.5.2 | +| Blazorise.Bootstrap5 | 1.4.1 | 1.5.2 | +| Blazorise.Icons.FontAwesome | 1.4.1 | 1.5.2 | +| Blazorise.Components | 1.4.1 | 1.5.2 | +| Blazorise.DataGrid | 1.4.1 | 1.5.2 | +| Blazorise.Snackbar | 1.4.1 | 1.5.2 | +| Hangfire.AspNetCore | 1.8.6 | 1.8.14 | +| Hangfire.SqlServer | 1.8.6 | 1.8.14 | +| Microsoft.AspNetCore.Authentication.JwtBearer | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Authentication.OpenIdConnect | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Authorization | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Components | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Components.Authorization | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Components.Web | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Components.WebAssembly | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Components.WebAssembly.Server | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Components.WebAssembly.Authentication | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Components.WebAssembly.DevServer | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.DataProtection.StackExchangeRedis | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Mvc.NewtonsoftJson | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.Mvc.Testing | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.TestHost | 8.0.0 | 8.0.4 | +| Microsoft.AspNetCore.WebUtilities | 8.0.0 | 8.0.4 | +| Microsoft.Data.SqlClient | 8.0.0 | 8.0.4 | +| Microsoft.EntityFrameworkCore | 8.0.0 | 8.0.4 | +| Microsoft.EntityFrameworkCore.Design | 8.0.0 | 8.0.4 | +| Microsoft.EntityFrameworkCore.InMemory | 8.0.0 | 8.0.4 | +| Microsoft.EntityFrameworkCore.Proxies | 8.0.0 | 8.0.4 | +| Microsoft.EntityFrameworkCore.Relational | 8.0.0 | 8.0.4 | +| Microsoft.EntityFrameworkCore.Sqlite | 8.0.0 | 8.0.4 | +| Microsoft.EntityFrameworkCore.SqlServer | 8.0.0 | 8.0.4 | +| Microsoft.EntityFrameworkCore.Tools | 8.0.0 | 8.0.4 | +| Microsoft.Extensions.DependencyInjection.Abstractions | 8.0.0 | 8.0.1 | +| Microsoft.Extensions.FileProviders.Embedded | 8.0.0 | 8.0.4 | +| Microsoft.Extensions.Logging.Abstractions | 8.0.0 | 8.0.1 | +| Microsoft.Extensions.Options | 8.0.0 | 8.0.2 | +| Microsoft.IdentityModel.Protocols.OpenIdConnect | - | 7.5.1 | +| Microsoft.IdentityModel.Tokens | - | 7.5.1 | +| Microsoft.IdentityModel.JsonWebTokens | - | 7.5.1 | +| System.IdentityModel.Tokens.Jwt | - | 7.5.1 | +| OpenIddict.Abstractions | 5.1.0 | 5.5.0 | +| OpenIddict.Core | 5.1.0 | 5.5.0 | +| OpenIddict.Server.AspNetCore | 5.1.0 | 5.5.0 | +| OpenIddict.Validation.AspNetCore | 5.1.0 | 5.5.0 | +| OpenIddict.Validation.ServerIntegration | 5.1.0 | 5.5.0 | +| Oracle.EntityFrameworkCore | 8.21.121 | 8.23.40 | +| Pomelo.EntityFrameworkCore.MySql | 8.0.0 | 8.0.2 | +| SixLabors.ImageSharp | 3.0.2 | 3.1.4 | + diff --git a/docs/en/release-info/migration-guides/pro/openiddict-mvc.md b/docs/en/release-info/migration-guides/pro/openiddict-mvc.md index 3aceab4864..620e715c6a 100644 --- a/docs/en/release-info/migration-guides/pro/openiddict-mvc.md +++ b/docs/en/release-info/migration-guides/pro/openiddict-mvc.md @@ -261,6 +261,7 @@ This project is renamed to **AuthServer** after v6.0.0. You can also refactor an "RequireHttpsMetadata": "false", "SwaggerClientId": "MyApplication_Swagger" }, + ``` ## See Also diff --git a/docs/en/tutorials/microservice/index.md b/docs/en/tutorials/microservice/index.md new file mode 100644 index 0000000000..ee425f8afe --- /dev/null +++ b/docs/en/tutorials/microservice/index.md @@ -0,0 +1,3 @@ +# Microservice Development Tutorial + +This tutorial is work in progress. Please check later. You can check here to [see the draft tutorial](https://github.com/abpframework/abp/blob/microservice-tutorial/docs/en/tutorials/microservice/index.md). diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-entity-framework-core-migration-dialog.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-entity-framework-core-migration-dialog.png index c96217ac47..7edec8f3d9 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-entity-framework-core-migration-dialog.png and b/docs/en/tutorials/modular-crm/images/abp-studio-add-entity-framework-core-migration-dialog.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-entity-framework-core-migration.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-entity-framework-core-migration.png index 1629f541d8..857df5f25d 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-entity-framework-core-migration.png and b/docs/en/tutorials/modular-crm/images/abp-studio-add-entity-framework-core-migration.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-new-dd-module.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-new-dd-module.png deleted file mode 100644 index f8a701770e..0000000000 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-new-dd-module.png and /dev/null differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-new-ddd-module.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-new-ddd-module.png new file mode 100644 index 0000000000..ed11a95f57 Binary files /dev/null and b/docs/en/tutorials/modular-crm/images/abp-studio-add-new-ddd-module.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-new-empty-module.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-new-empty-module.png index 8815d15c44..53d453cd37 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-new-empty-module.png and b/docs/en/tutorials/modular-crm/images/abp-studio-add-new-empty-module.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-new-folder-command.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-new-folder-command.png index 6557599a4e..56c861d4fd 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-new-folder-command.png and b/docs/en/tutorials/modular-crm/images/abp-studio-add-new-folder-command.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-new-package.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-new-package.png index de9e1aa8c5..7e28d708bf 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-new-package.png and b/docs/en/tutorials/modular-crm/images/abp-studio-add-new-package.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-2.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-2.png index 47a5671f7f..308d32c6ad 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-2.png and b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-2.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-3.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-3.png index e79b72747f..dc51826734 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-3.png and b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-3.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-4.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-4.png index fa3b5c4e23..b29850cce6 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-4.png and b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-4.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-5.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-5.png index 4a8ef0ba58..42d7c96cb2 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-5.png and b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-5.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-6.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-6.png new file mode 100644 index 0000000000..954ea41060 Binary files /dev/null and b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-6.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-7.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-7.png new file mode 100644 index 0000000000..3dea701062 Binary files /dev/null and b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-7.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-dialog-5.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-dialog-5.png new file mode 100644 index 0000000000..ad78c4eee7 Binary files /dev/null and b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-dialog-5.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-dialog-6.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-dialog-6.png new file mode 100644 index 0000000000..bd1c968b03 Binary files /dev/null and b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference-dialog-6.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference.png b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference.png index 2cbd244a4b..a6870e4c0e 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference.png and b/docs/en/tutorials/modular-crm/images/abp-studio-add-package-reference.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-added-ddd-contracts-package.png b/docs/en/tutorials/modular-crm/images/abp-studio-added-ddd-contracts-package.png new file mode 100644 index 0000000000..f451a550d8 Binary files /dev/null and b/docs/en/tutorials/modular-crm/images/abp-studio-added-ddd-contracts-package.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-build-and-restart-application.png b/docs/en/tutorials/modular-crm/images/abp-studio-build-and-restart-application.png index 010851ee05..889a4251cd 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-build-and-restart-application.png and b/docs/en/tutorials/modular-crm/images/abp-studio-build-and-restart-application.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-entity-framework-core-add-migration-order.png b/docs/en/tutorials/modular-crm/images/abp-studio-entity-framework-core-add-migration-order.png index 1e247f069b..b739e59373 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-entity-framework-core-add-migration-order.png and b/docs/en/tutorials/modular-crm/images/abp-studio-entity-framework-core-add-migration-order.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-entity-framework-core-update-database.png b/docs/en/tutorials/modular-crm/images/abp-studio-entity-framework-core-update-database.png index bece8dfc12..b28b4e48a0 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-entity-framework-core-update-database.png and b/docs/en/tutorials/modular-crm/images/abp-studio-entity-framework-core-update-database.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-graph-build.png b/docs/en/tutorials/modular-crm/images/abp-studio-graph-build.png index 11855d792e..8930bdd062 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-graph-build.png and b/docs/en/tutorials/modular-crm/images/abp-studio-graph-build.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-import-module-for-ordering.png b/docs/en/tutorials/modular-crm/images/abp-studio-import-module-for-ordering.png index 94ab70d255..13aab5d477 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-import-module-for-ordering.png and b/docs/en/tutorials/modular-crm/images/abp-studio-import-module-for-ordering.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-import-module-ordering.png b/docs/en/tutorials/modular-crm/images/abp-studio-import-module-ordering.png index e62c0dc315..8956033762 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-import-module-ordering.png and b/docs/en/tutorials/modular-crm/images/abp-studio-import-module-ordering.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-import-module.png b/docs/en/tutorials/modular-crm/images/abp-studio-import-module.png index 673d303307..7a63894709 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-import-module.png and b/docs/en/tutorials/modular-crm/images/abp-studio-import-module.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-new-folder-dialog.png b/docs/en/tutorials/modular-crm/images/abp-studio-new-folder-dialog.png index f726332a37..e1e3065b9c 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-new-folder-dialog.png and b/docs/en/tutorials/modular-crm/images/abp-studio-new-folder-dialog.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-open-in-explorer.png b/docs/en/tutorials/modular-crm/images/abp-studio-open-in-explorer.png index ce052d2b17..99c6d26b20 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-open-in-explorer.png and b/docs/en/tutorials/modular-crm/images/abp-studio-open-in-explorer.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-open-with-visual-studio-main-app.png b/docs/en/tutorials/modular-crm/images/abp-studio-open-with-visual-studio-main-app.png index 1f879ed795..f4131cfb69 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-open-with-visual-studio-main-app.png and b/docs/en/tutorials/modular-crm/images/abp-studio-open-with-visual-studio-main-app.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-open-with-visual-studio.png b/docs/en/tutorials/modular-crm/images/abp-studio-open-with-visual-studio.png index ba96d6f488..2b1bac2db6 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-open-with-visual-studio.png and b/docs/en/tutorials/modular-crm/images/abp-studio-open-with-visual-studio.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-ordering-swagger-ui-in-browser.png b/docs/en/tutorials/modular-crm/images/abp-studio-ordering-swagger-ui-in-browser.png new file mode 100644 index 0000000000..304027af9e Binary files /dev/null and b/docs/en/tutorials/modular-crm/images/abp-studio-ordering-swagger-ui-in-browser.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-graph-build.png b/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-graph-build.png index ececabbf01..10d210a0be 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-graph-build.png and b/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-graph-build.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-initial-product-page.png b/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-initial-product-page.png index 480da27d7e..269c55f8b4 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-initial-product-page.png and b/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-initial-product-page.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-orders-page.png b/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-orders-page.png index f3e9896e8f..fbd419d145 100644 Binary files a/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-orders-page.png and b/docs/en/tutorials/modular-crm/images/abp-studio-solution-runner-orders-page.png differ diff --git a/docs/en/tutorials/modular-crm/images/abp-studio-swagger-ui-create-order-execute.png b/docs/en/tutorials/modular-crm/images/abp-studio-swagger-ui-create-order-execute.png new file mode 100644 index 0000000000..b0f384f15d Binary files /dev/null and b/docs/en/tutorials/modular-crm/images/abp-studio-swagger-ui-create-order-execute.png differ diff --git a/docs/en/tutorials/modular-crm/images/sql-server-orders-database-table-filled.png b/docs/en/tutorials/modular-crm/images/sql-server-orders-database-table-filled.png new file mode 100644 index 0000000000..75c812593c Binary files /dev/null and b/docs/en/tutorials/modular-crm/images/sql-server-orders-database-table-filled.png differ diff --git a/docs/en/tutorials/modular-crm/images/sql-server-orders-table-content.png b/docs/en/tutorials/modular-crm/images/sql-server-orders-table-content.png deleted file mode 100644 index 1bc432c650..0000000000 Binary files a/docs/en/tutorials/modular-crm/images/sql-server-orders-table-content.png and /dev/null differ diff --git a/docs/en/tutorials/modular-crm/images/visual-studio-ordering-contracts.png b/docs/en/tutorials/modular-crm/images/visual-studio-ordering-contracts.png new file mode 100644 index 0000000000..d9206f6630 Binary files /dev/null and b/docs/en/tutorials/modular-crm/images/visual-studio-ordering-contracts.png differ diff --git a/docs/en/tutorials/modular-crm/images/visual-studio-ordering-controller.png b/docs/en/tutorials/modular-crm/images/visual-studio-ordering-controller.png deleted file mode 100644 index 56a1dad5b1..0000000000 Binary files a/docs/en/tutorials/modular-crm/images/visual-studio-ordering-controller.png and /dev/null differ diff --git a/docs/en/tutorials/modular-crm/part-02.md b/docs/en/tutorials/modular-crm/part-02.md index 14560b3766..de8fd69f92 100644 --- a/docs/en/tutorials/modular-crm/part-02.md +++ b/docs/en/tutorials/modular-crm/part-02.md @@ -41,7 +41,7 @@ We will use the *DDD Module* template for the Product module and the *Empty Modu Right-click the `modules` folder on the *Solution Explorer* panel, and select the *Add* -> *New Module* -> *DDD Module* command: -![abp-studio-add-new-dd-module](images/abp-studio-add-new-dd-module.png) +![abp-studio-add-new-ddd-module](images/abp-studio-add-new-ddd-module.png) This command opens a new dialog to define the properties of the new module. You can use the following values to create a new module named `ModularCrm.Products`: diff --git a/docs/en/tutorials/modular-crm/part-05.md b/docs/en/tutorials/modular-crm/part-05.md index f7d624bcbf..69a9223882 100644 --- a/docs/en/tutorials/modular-crm/part-05.md +++ b/docs/en/tutorials/modular-crm/part-05.md @@ -232,9 +232,215 @@ After the operation completes, you can check your database to see the new `Order ![sql-server-products-database-table](images/sql-server-orders-database-table.png) -## Creating the User Interface +## Creating the Application Service + +We will create an application service to manage the `Order` entities. + +### Defining the Application Service Contract + +We're gonna create the `IOrderAppService` interface under the `ModularCrm.Ordering.Contracts` project but first, we need to add `Volo.Abp.Ddd.Application.Contracts` package reference. + +Right-click the `ModularCrm.Ordering.Contracts` project in the *Solution Explorer* panel and select the *Add Package Reference* command: + +![abp-studio-add-package-reference-6](images/abp-studio-add-package-reference-6.png) + +This command opens a dialog to add a new package reference: + +![abp-studio-add-package-reference-dialog-5](images/abp-studio-add-package-reference-dialog-5.png) + +Select the *NuGet* tab, type `Volo.Abp.Ddd.Application.Contracts` as the *Package name* and write the version of the package you want to install. Please be sure that you are installing the same version as the other ABP packages you are already using. + +Click the *Ok* button. Now you can check the *Packages* under the `ModularCrm.Ordering.Contracts` project *Dependencies* to see the `Volo.Abp.Ddd.Application.Contracts` package is installed: + +![abp-studio-added-ddd-contracts-package](images/abp-studio-added-ddd-contracts-package.png) + +Return to your IDE, open the `ModularCrm.Ordering` module's .NET solution and create an `IOrderAppService` interface under the `Services` folder for `ModularCrm.Ordering.Contracts` project: + +````csharp +using System.Collections.Generic; +using System.Threading.Tasks; +using Volo.Abp.Application.Services; + +namespace ModularCrm.Ordering.Contracts.Services; + +public interface IOrderAppService : IApplicationService +{ + Task> GetListAsync(); + Task CreateAsync(OrderCreationDto input); +} +```` + +### Defining Data Transfer Objects + +The `GetListAsync` and `CreateAsync` methods will use data transfer objects (DTOs) to communicate with the client. We will create two DTO classes for that purpose. + +Create a `OrderCreationDto` class under the `ModularCrm.Ordering.Contracts` project: + +````csharp +using System; +using System.ComponentModel.DataAnnotations; + +namespace ModularCrm.Ordering.Contracts.Services; + +public class OrderCreationDto +{ + [Required] + [StringLength(150)] + public string CustomerName { get; set; } + + [Required] + public Guid ProductId { get; set; } +} +```` + +Create a `OrderDto` class under the `ModularCrm.Ordering.Contracts` project: + +````csharp +using System; +using ModularCrm.Ordering.Contracts.Enums; + +namespace ModularCrm.Ordering.Contracts.Services; + +public class OrderDto +{ + public Guid Id { get; set; } + public string CustomerName { get; set; } + public Guid ProductId { get; set; } + public OrderState State { get; set; } +} +```` + +The new files under the `ModularCrm.Ordering.Contracts` project should be like the following figure: + +![visual-studio-ordering-contracts](images/visual-studio-ordering-contracts.png) + +### Implementing the Application Service + +Before creating the `OrderAppService` class, we need to add the `Volo.Abp.Ddd.Application` and `Volo.Abp.AutoMapper` packages to the Ordering module. + +Right-click the `ModularCrm.Ordering` package in the *Solution Explorer* panel and select the *Add Package Reference* command: + +![abp-studio-add-package-reference-7](images/abp-studio-add-package-reference-7.png) + +This command opens a dialog to add a new package reference: + +![abp-studio-add-package-reference-dialog-6](images/abp-studio-add-package-reference-dialog-6.png) + +Select the *NuGet* tab, enter `Volo.Abp.Ddd.Application` as the *Package name*, and specify the version of the package you wish to install. Afterward, you can add the `Volo.Abp.AutoMapper` package in the same dialog. Ensure that you install the same version as the other ABP packages you are already using. + +Click the *OK* button. Now we should configure the *AutoMapper* object to map the `Order` entity to the `OrderDto` object. We will create a class named `OrderingApplicationAutoMapperProfile` under the `ModularCrm.Ordering` project: + +````csharp +using AutoMapper; +using ModularCrm.Ordering.Contracts.Services; +using ModularCrm.Ordering.Entities; + +namespace ModularCrm.Ordering; + +public class OrderingApplicationAutoMapperProfile : Profile +{ + public OrderingApplicationAutoMapperProfile() + { + CreateMap(); + } +} +```` -Since this is a non-layered module, we can use entities and repositories directly on the user interface. If you think that is not a good practice, then use the layered module template as we've already done for the *Products* module. But for the Ordering module, we will keep it very simple for this tutorial to show it is also possible. +And configure the `OrderingWebModule` class to use the `OrderingApplicationAutoMapperProfile`: + +````csharp +public override void ConfigureServices(ServiceConfigurationContext context) +{ + //Add these lines + context.Services.AddAutoMapperObjectMapper(); + Configure(options => + { + options.AddMaps(validate: true); + }); +} +```` + +Now, we can implement the `IOrderAppService` interface. Create an `OrderAppService` class under the `Services` folder of the `ModularCrm.Ordering` project: + +````csharp +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using ModularCrm.Ordering.Contracts.Enums; +using ModularCrm.Ordering.Contracts.Services; +using ModularCrm.Ordering.Entities; +using Volo.Abp.Application.Services; +using Volo.Abp.Domain.Repositories; + +namespace ModularCrm.Ordering.Services; + +public class OrderAppService : ApplicationService, IOrderAppService +{ + private readonly IRepository _orderRepository; + + public OrderAppService(IRepository orderRepository) + { + _orderRepository = orderRepository; + ObjectMapperContext = typeof(OrderingWebModule); + } + + public async Task> GetListAsync() + { + var orders = await _orderRepository.GetListAsync(); + return ObjectMapper.Map, List>(orders); + } + + public async Task CreateAsync(OrderCreationDto input) + { + var order = new Order + { + CustomerName = input.CustomerName, + ProductId = input.ProductId, + State = OrderState.Placed + }; + + await _orderRepository.InsertAsync(order); + } +} +```` + +Open the `ModularCrmWebModule` class in the main application's solution (the `ModularCrm` solution), find the `ConfigureAutoApiControllers` method and add the following lines inside that method: + +````csharp +private void ConfigureAutoApiControllers() +{ + Configure(options => + { + options.ConventionalControllers.Create(typeof(ModularCrmApplicationModule).Assembly); + options.ConventionalControllers.Create(typeof(ProductsApplicationModule).Assembly); + + //ADD THE FOLLOWING LINE: + options.ConventionalControllers.Create(typeof(OrderingWebModule).Assembly); + }); +} +```` + +### Creating Example Orders + +This section will create a few example orders using the [Swagger UI](../../framework/api-development/swagger.md). Thus, we will have some sample orders to show on the UI. + +Now, right-click the `ModularCrm` under the `main` folder in the Solution Explorer panel and select the *Dotnet CLI* -> *Graph Build* command. This will ensure that the order module and the main application are built and ready to run. + +After the build process completes, open the Solution Runner panel and click the *Play* button near the solution root. Once the `ModularCrm.Web` application runs, we can right-click it and select the *Browse* command to open the user interface. + +Once you see the user interface of the web application, type `/swagger` at the end of the URL to open the Swagger UI. If you scroll down, you should see the `Orders` API: + +![abp-studio-ordering-swagger-ui-in-browser](images/abp-studio-ordering-swagger-ui-in-browser.png) + +Expand the `/api/app/order` API and click the *Try it out* button. Then, create a few orders by filling in the request body and clicking the *Execute* button: + +![abp-studio-swagger-ui-create-order-execute](images/abp-studio-swagger-ui-create-order-execute.png) + +If you check the database, you should see the entities created in the *Orders* table: + +![sql-server-orders-database-table-filled](images/sql-server-orders-database-table-filled.png) + +## Creating the User Interface ### Creating a `_ViewImports.cshtml` File @@ -257,28 +463,26 @@ Create an `Orders` folder under the `Pages` folder and add an `Index.cshtml` Raz ````csharp using Microsoft.AspNetCore.Mvc.RazorPages; -using ModularCrm.Ordering.Entities; -using System; using System.Collections.Generic; using System.Threading.Tasks; -using Volo.Abp.Domain.Repositories; +using ModularCrm.Ordering.Contracts.Services; namespace ModularCrm.Ordering.Pages.Orders { public class IndexModel : PageModel { - public List Orders { get; set; } + public List Orders { get; set; } - private readonly IRepository _orderRepository; + private readonly IOrderAppService _orderAppService; - public IndexModel(IRepository orderRepository) + public IndexModel(IOrderAppService orderAppService) { - _orderRepository = orderRepository; + _orderAppService = orderAppService; } public async Task OnGetAsync() { - Orders = await _orderRepository.GetListAsync(); + Orders = await _orderAppService.GetListAsync(); } } } @@ -310,14 +514,6 @@ Here, we are injecting a repository to query `Order` entities from the database This page shows a list of orders on the UI. We haven't created a UI to create new orders, and we will not do it to keep this tutorial simple. If you want to learn how to create advanced UIs with ABP, please follow the [Book Store tutorial](../book-store/index.md). -### Creating Some Sample Data - -You can open the database and manually create a few order records to show on the UI: - -![sql-server-orders-table-content](images/sql-server-orders-table-content.png) - -You can get `ProductId` values from the `Products` table and [generate](https://www.guidgenerator.com/) some random GUIDs for other GUID fields. - ### Building the Application Now, we will run the application to see the result. Please stop the application if it is already running. Then open the *Solution Runner* panel, right-click the `ModularCrm.Web` application, and select the *Build* -> *Graph Build* command: @@ -375,11 +571,13 @@ namespace ModularCrm.Ordering `OrderingMenuContributor` implements the `IMenuContributor` interface, which forces us to implement the `ConfigureMenuAsync` method. In that method, we can manipulate the menu items (add new menu items, remove existing menu items or change the properties of existing menu items). The `ConfigureMenuAsync` method is executed whenever the menu is rendered on the UI, so you can dynamically decide how to manipulate the menu items. -After creating such a class, we should configure the `AbpNavigationOptions` to add that contributor. Open the `OrderingWebModule` class in the `ModularCrm.Ordering` project and add the following configuration code into the `ConfigureServices` method (if there is no `ConfigureServices` method, first create it as shown below): +After creating such a class, we should configure the `AbpNavigationOptions` to add that contributor. Open the `OrderingWebModule` class in the `ModularCrm.Ordering` project and add the following configuration code into the `ConfigureServices` method: ````csharp public override void ConfigureServices(ServiceConfigurationContext context) { + //... other configurations + Configure(options => { options.MenuContributors.Add(new OrderingMenuContributor()); diff --git a/docs/en/tutorials/modular-crm/part-06.md b/docs/en/tutorials/modular-crm/part-06.md index 2fd5d82f34..eca859a8f5 100644 --- a/docs/en/tutorials/modular-crm/part-06.md +++ b/docs/en/tutorials/modular-crm/part-06.md @@ -145,68 +145,121 @@ ABP Studio adds the package reference and arranges the [module](../../framework/ Now, we can inject and use `IProductIntegrationService` in the Ordering module codebase. -Open the `IndexModel` class (the `IndexModel.cshtml.cs` file under the `Pages/Orders` folder of the `ModularCrm.Ordering` project of the `ModularCrm.Ordering` .NET solution) and change its content as like the following code block: +Open the `OrderAppService` class (the `OrderAppService.cs` file under the `Services` folder of the `ModularCrm.Ordering` project of the `ModularCrm.Ordering` .NET solution) and change its content as like the following code block: ````csharp -using Microsoft.AspNetCore.Mvc.RazorPages; -using ModularCrm.Ordering.Entities; -using ModularCrm.Products.Integration; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; +using ModularCrm.Ordering.Contracts.Enums; +using ModularCrm.Ordering.Contracts.Services; +using ModularCrm.Ordering.Entities; +using ModularCrm.Products.Integration; +using Volo.Abp.Application.Services; using Volo.Abp.Domain.Repositories; -namespace ModularCrm.Ordering.Pages.Orders +namespace ModularCrm.Ordering.Services; + +public class OrderAppService : ApplicationService, IOrderAppService { - public class IndexModel : PageModel + private readonly IRepository _orderRepository; + private readonly IProductIntegrationService _productIntegrationService; + + public OrderAppService( + IRepository orderRepository, + IProductIntegrationService productIntegrationService) { - public List Orders { get; set; } - - // Define a dictionary for Id -> Name conversion - public Dictionary ProductNames { get; set; } + _orderRepository = orderRepository; + _productIntegrationService = productIntegrationService; + ObjectMapperContext = typeof(OrderingWebModule); + } - private readonly IRepository _orderRepository; - private readonly IProductIntegrationService _productIntegrationService; + public async Task> GetListAsync() + { + var orders = await _orderRepository.GetListAsync(); - public IndexModel( - IRepository orderRepository, - IProductIntegrationService productIntegrationService) + // Prepare a list of products we need + var productIds = orders.Select(o => o.ProductId).Distinct().ToList(); + var products = (await _productIntegrationService + .GetProductsByIdsAsync(productIds)) + .ToDictionary(p => p.Id, p => p.Name); + + var result = ObjectMapper.Map, List>(orders); + result = result.Select(a => { - _orderRepository = orderRepository; - _productIntegrationService = productIntegrationService; - } + a.ProductName = products[a.ProductId]; + return a; + }) + .ToList(); + + return result; + } - public async Task OnGetAsync() + public async Task CreateAsync(OrderCreationDto input) + { + var order = new Order { - // Getting the orders from this module's database - Orders = await _orderRepository.GetListAsync(); + CustomerName = input.CustomerName, + ProductId = input.ProductId, + State = OrderState.Placed + }; + + await _orderRepository.InsertAsync(order); + } +} +```` - // Prepare a list of products we need - var productIds = Orders.Select(o => o.ProductId).Distinct().ToList(); +And also, open the `OrderDto` class (the `OrderDto.cs` file under the `Services` folder of the `ModularCrm.Ordering.Contracts` project of the `ModularCrm.Ordering` .NET solution) and add a `ProductName` property to it: - // Request the related products from the product integration service - var products = await _productIntegrationService - .GetProductsByIdsAsync(productIds); +````csharp +using System; +using ModularCrm.Ordering.Contracts.Enums; - // Create a dictionary to get a product name easily by its id - ProductNames = products.ToDictionary(p => p.Id, p => p.Name); - } +namespace ModularCrm.Ordering.Contracts.Services; + +public class OrderDto +{ + public Guid Id { get; set; } + public string CustomerName { get; set; } + public Guid ProductId { get; set; } + public string ProductName { get; set; } // New property + public OrderState State { get; set; } +} +```` + +Lastly, open the `OrderingApplicationAutoMapperProfile` class (the `OrderingApplicationAutoMapperProfile.cs` file under the `Services` folder of the `ModularCrm.Ordering` project of the `ModularCrm.Ordering` .NET solution) and ignore the `ProductName` property in the mapping configuration: + +````csharp +using AutoMapper; +using ModularCrm.Ordering.Contracts.Services; +using ModularCrm.Ordering.Entities; +using Volo.Abp.AutoMapper; + +namespace ModularCrm.Ordering; + +public class OrderingApplicationAutoMapperProfile : Profile +{ + public OrderingApplicationAutoMapperProfile() + { + CreateMap() + .Ignore(x => x.ProductName); // New line } } ```` Let's see what we've changed: -* We have defined a `ProductNames` dictionary. We will use it on the UI to convert product IDs to product names. We are filling that dictionary with products from the product integration service. +* We've added a `ProductName` property to the `OrderDto` class to store the product name. * Injecting the `IProductIntegrationService` interface so we can use it to request products. -* In the `OnGetAsync` method; +* In the `GetListAsync` method; * First getting the orders from the ordering module's database just like done before. * Next, we are preparing a unique list of product IDs since the `GetProductsByIdsAsync` method requests it. * Then we are calling the `IProductIntegrationService.GetProductsByIdsAsync` method to get a `List` object. * In the last line, we are converting the product list to a dictionary, where the key is `Guid Id` and the value is `string Name`. That way, we can easily find a product's name with its ID. + * Finally, we are mapping the orders to `OrderDto` objects and setting the product name by looking up the product ID in the dictionary. -Open the `Index.cshtml` file, and change the `@order.ProductId` part by `@Model.ProductNames[order.ProductId]` to write the product name instead of the product ID. The final `Index.cshtml` content should be the following: +Open the `Index.cshtml` file, and change the `@order.ProductId` part by `@Model.ProductName` to write the product name instead of the product ID. The final `Index.cshtml` content should be the following: ````html @page @@ -219,11 +272,11 @@ Open the `Index.cshtml` file, and change the `@order.ProductId` part by `@Model. @foreach (var order in Model.Orders) { - - Customer: @order.CustomerName
- Product: @Model.ProductNames[order.ProductId]
- State: @order.State -
+ + Customer: @order.CustomerName
+ Product: @order.ProductName
+ State: @order.State +
}
@@ -241,4 +294,3 @@ In the way explained in this section, you can easily create integration services > **Design Tip** > > It is suggested that you keep that type of communication to a minimum and not couple your modules with each other. It can make your solution complicated and may also decrease your system performance. When you need to do it, think about performance and try to make some optimizations. For example, if the Ordering module frequently needs product data, you can use a kind of [cache layer](../../framework/fundamentals/caching.md), so it doesn't make frequent requests to the Products module. Especially if you consider converting your system to a microservice solution in the future, too many direct integration API calls can be a performance bottleneck. - diff --git a/docs/en/tutorials/modular-crm/part-07.md b/docs/en/tutorials/modular-crm/part-07.md index 9dc18648bd..de02c08fee 100644 --- a/docs/en/tutorials/modular-crm/part-07.md +++ b/docs/en/tutorials/modular-crm/part-07.md @@ -56,83 +56,87 @@ namespace ModularCrm.Ordering.Contracts.Events ### Using the `IDistributedEventBus` Service -The `IDistributedEventBus` service publishes events to the event bus. Until this point, the Ordering module has no functionality to create new orders. - -In Part 3, we used ABP's Auto HTTP API Controller feature to expose HTTP APIs from application services automatically. In this section, we will create an ASP.NET Core API controller class to create a new order. In that way, you will also see that it is not different from creating a regular ASP.NET Core controller. - -Open the `ModularCrm.Ordering` module's .NET solution, create a `Controllers` folder in the `ModularCrm.Ordering` project and place a controller class named `OrdersController` in that new folder. The final folder structure should be like that: - -![visual-studio-ordering-controller](images/visual-studio-ordering-controller.png) - -Here is the full `OrdersController` class: +The `IDistributedEventBus` service publishes events to the event bus. Until this point, the Ordering module has no functionality to create new orders. Let's change that and place an order, for that purpose open the `ModularCrm.Ordering` module's .NET solution, and update the `OrderAppService` as follows: ````csharp -using Microsoft.AspNetCore.Mvc; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; using ModularCrm.Ordering.Contracts.Enums; using ModularCrm.Ordering.Contracts.Events; +using ModularCrm.Ordering.Contracts.Services; using ModularCrm.Ordering.Entities; -using System; -using System.ComponentModel.DataAnnotations; -using System.Threading.Tasks; -using Volo.Abp.AspNetCore.Mvc; +using ModularCrm.Products.Integration; +using Volo.Abp.Application.Services; using Volo.Abp.Domain.Repositories; using Volo.Abp.EventBus.Distributed; -namespace ModularCrm.Ordering.Controllers +namespace ModularCrm.Ordering.Services; + +public class OrderAppService : ApplicationService, IOrderAppService { - [Route("api/orders")] - [ApiController] - public class OrdersController : AbpControllerBase + private readonly IRepository _orderRepository; + private readonly IProductIntegrationService _productIntegrationService; + private readonly IDistributedEventBus _distributedEventBus; + + public OrderAppService( + IRepository orderRepository, + IProductIntegrationService productIntegrationService, + IDistributedEventBus distributedEventBus) { - private readonly IRepository _orderRepository; - private readonly IDistributedEventBus _distributedEventBus; + _orderRepository = orderRepository; + _productIntegrationService = productIntegrationService; + _distributedEventBus = distributedEventBus; + ObjectMapperContext = typeof(OrderingWebModule); + } - public OrdersController( - IRepository orderRepository, - IDistributedEventBus distributedEventBus) - { - _orderRepository = orderRepository; - _distributedEventBus = distributedEventBus; - } + public async Task> GetListAsync() + { + var orders = await _orderRepository.GetListAsync(); + + // Prepare a list of products we need + var productIds = orders.Select(o => o.ProductId).Distinct().ToList(); + var products = (await _productIntegrationService + .GetProductsByIdsAsync(productIds)) + .ToDictionary(p => p.Id, p => p.Name); - [HttpPost] - public async Task CreateAsync(OrderCreationModel input) + var result = ObjectMapper.Map, List>(orders); + result = result.Select(a => { - // Create a new Order entity - var order = new Order - { - CustomerName = input.CustomerName, - ProductId = input.ProductId, - State = OrderState.Placed - }; - - // Save it to the database - await _orderRepository.InsertAsync(order); - - // Publish an event so other modules can be informed - await _distributedEventBus.PublishAsync( - new OrderPlacedEto - { - ProductId = order.ProductId, - CustomerName = order.CustomerName - }); - - return Created(); - } + a.ProductName = products[a.ProductId]; + return a; + }) + .ToList(); - public class OrderCreationModel + return result; + } + + public async Task CreateAsync(OrderCreationDto input) + { + // Create a new Order entity + var order = new Order { - public Guid ProductId { get; set; } + CustomerName = input.CustomerName, + ProductId = input.ProductId, + State = OrderState.Placed + }; - [Required] - [StringLength(120)] - public string CustomerName { get; set; } - } + // Save it to the database + await _orderRepository.InsertAsync(order); + + // Publish an event so other modules can be informed + await _distributedEventBus.PublishAsync( + new OrderPlacedEto + { + ProductId = order.ProductId, + CustomerName = order.CustomerName + }); } } ```` -The `OrdersController.CreateAsync` method creates a new `Order` entity, saves it to the database and finally publishes an `OrderPlacedEto` event. +The `OrderAppService.CreateAsync` method creates a new `Order` entity, saves it to the database and finally publishes an `OrderPlacedEto` event. ## Subscribing to an Event diff --git a/framework/src/Volo.Abp.ApiVersioning.Abstractions/Volo.Abp.ApiVersioning.Abstractions.csproj b/framework/src/Volo.Abp.ApiVersioning.Abstractions/Volo.Abp.ApiVersioning.Abstractions.csproj index b869a45a2e..f4de4a2e88 100644 --- a/framework/src/Volo.Abp.ApiVersioning.Abstractions/Volo.Abp.ApiVersioning.Abstractions.csproj +++ b/framework/src/Volo.Abp.ApiVersioning.Abstractions/Volo.Abp.ApiVersioning.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.ApiVersioning.Abstractions diff --git a/framework/src/Volo.Abp.AspNetCore.Abstractions/Volo.Abp.AspNetCore.Abstractions.csproj b/framework/src/Volo.Abp.AspNetCore.Abstractions/Volo.Abp.AspNetCore.Abstractions.csproj index c96dbc0c7b..b080fc603d 100644 --- a/framework/src/Volo.Abp.AspNetCore.Abstractions/Volo.Abp.AspNetCore.Abstractions.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Abstractions/Volo.Abp.AspNetCore.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.AspNetCore.Abstractions diff --git a/framework/src/Volo.Abp.AspNetCore.Authentication.JwtBearer/Volo.Abp.AspNetCore.Authentication.JwtBearer.csproj b/framework/src/Volo.Abp.AspNetCore.Authentication.JwtBearer/Volo.Abp.AspNetCore.Authentication.JwtBearer.csproj index 839053bc90..2e22d5194f 100644 --- a/framework/src/Volo.Abp.AspNetCore.Authentication.JwtBearer/Volo.Abp.AspNetCore.Authentication.JwtBearer.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Authentication.JwtBearer/Volo.Abp.AspNetCore.Authentication.JwtBearer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore.Authentication.JwtBearer diff --git a/framework/src/Volo.Abp.AspNetCore.Authentication.OAuth/Volo.Abp.AspNetCore.Authentication.OAuth.csproj b/framework/src/Volo.Abp.AspNetCore.Authentication.OAuth/Volo.Abp.AspNetCore.Authentication.OAuth.csproj index b31876c3d4..f7ea626835 100644 --- a/framework/src/Volo.Abp.AspNetCore.Authentication.OAuth/Volo.Abp.AspNetCore.Authentication.OAuth.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Authentication.OAuth/Volo.Abp.AspNetCore.Authentication.OAuth.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore.Authentication.OAuth diff --git a/framework/src/Volo.Abp.AspNetCore.Authentication.OpenIdConnect/Volo.Abp.AspNetCore.Authentication.OpenIdConnect.csproj b/framework/src/Volo.Abp.AspNetCore.Authentication.OpenIdConnect/Volo.Abp.AspNetCore.Authentication.OpenIdConnect.csproj index 4542fc4cb5..caf1547ead 100644 --- a/framework/src/Volo.Abp.AspNetCore.Authentication.OpenIdConnect/Volo.Abp.AspNetCore.Authentication.OpenIdConnect.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Authentication.OpenIdConnect/Volo.Abp.AspNetCore.Authentication.OpenIdConnect.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.csproj b/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.csproj index 93497ad4be..d3a900f185 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming/Volo.Abp.AspNetCore.Components.MauiBlazor.Theming.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor/Volo.Abp.AspNetCore.Components.MauiBlazor.csproj b/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor/Volo.Abp.AspNetCore.Components.MauiBlazor.csproj index 031ffd1ede..873eba572d 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor/Volo.Abp.AspNetCore.Components.MauiBlazor.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Components.MauiBlazor/Volo.Abp.AspNetCore.Components.MauiBlazor.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore.Components.MauiBlazor diff --git a/framework/src/Volo.Abp.AspNetCore.Components.Server.Theming/Volo.Abp.AspNetCore.Components.Server.Theming.csproj b/framework/src/Volo.Abp.AspNetCore.Components.Server.Theming/Volo.Abp.AspNetCore.Components.Server.Theming.csproj index 8fffb65f5e..dda318e3e4 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.Server.Theming/Volo.Abp.AspNetCore.Components.Server.Theming.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Components.Server.Theming/Volo.Abp.AspNetCore.Components.Server.Theming.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Components.Server/Microsoft/AspNetCore/Authentication/Cookies/CookieAuthenticationOptionsExtensions.cs b/framework/src/Volo.Abp.AspNetCore.Components.Server/Microsoft/AspNetCore/Authentication/Cookies/CookieAuthenticationOptionsExtensions.cs index 7852848e30..9d303579da 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.Server/Microsoft/AspNetCore/Authentication/Cookies/CookieAuthenticationOptionsExtensions.cs +++ b/framework/src/Volo.Abp.AspNetCore.Components.Server/Microsoft/AspNetCore/Authentication/Cookies/CookieAuthenticationOptionsExtensions.cs @@ -5,6 +5,7 @@ using Microsoft.AspNetCore.Authentication.OpenIdConnect; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; +using Volo.Abp.Threading; namespace Microsoft.AspNetCore.Authentication.Cookies; @@ -70,7 +71,8 @@ public static class CookieAuthenticationOptionsExtensions var openIdConnectOptions = principalContext.HttpContext.RequestServices.GetRequiredService>().Get(oidcAuthenticationScheme); if (openIdConnectOptions.Configuration == null && openIdConnectOptions.ConfigurationManager != null) { - openIdConnectOptions.Configuration = await openIdConnectOptions.ConfigurationManager.GetConfigurationAsync(principalContext.HttpContext.RequestAborted); + var cancellationTokenProvider = principalContext.HttpContext.RequestServices.GetRequiredService(); + openIdConnectOptions.Configuration = await openIdConnectOptions.ConfigurationManager.GetConfigurationAsync(cancellationTokenProvider.Token); } return openIdConnectOptions; diff --git a/framework/src/Volo.Abp.AspNetCore.Components.Server/Volo.Abp.AspNetCore.Components.Server.csproj b/framework/src/Volo.Abp.AspNetCore.Components.Server/Volo.Abp.AspNetCore.Components.Server.csproj index 338a538402..a5d4f97e59 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.Server/Volo.Abp.AspNetCore.Components.Server.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Components.Server/Volo.Abp.AspNetCore.Components.Server.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Volo.Abp.AspNetCore.Components.Web.Theming.csproj b/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Volo.Abp.AspNetCore.Components.Web.Theming.csproj index 03fa885d60..e68024d6e9 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Volo.Abp.AspNetCore.Components.Web.Theming.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Volo.Abp.AspNetCore.Components.Web.Theming.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.AspNetCore.Components.Web/Volo.Abp.AspNetCore.Components.Web.csproj b/framework/src/Volo.Abp.AspNetCore.Components.Web/Volo.Abp.AspNetCore.Components.Web.csproj index f43a89e7cc..fb1a56949d 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.Web/Volo.Abp.AspNetCore.Components.Web.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Components.Web/Volo.Abp.AspNetCore.Components.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.csproj b/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.csproj index 395891fb82..902163f391 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly/Volo.Abp.AspNetCore.Components.WebAssembly.csproj b/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly/Volo.Abp.AspNetCore.Components.WebAssembly.csproj index 614148ec52..084c8aad97 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly/Volo.Abp.AspNetCore.Components.WebAssembly.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly/Volo.Abp.AspNetCore.Components.WebAssembly.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore.Components.WebAssembly diff --git a/framework/src/Volo.Abp.AspNetCore.Components/Volo.Abp.AspNetCore.Components.csproj b/framework/src/Volo.Abp.AspNetCore.Components/Volo.Abp.AspNetCore.Components.csproj index df1dc14e74..f4663354c9 100644 --- a/framework/src/Volo.Abp.AspNetCore.Components/Volo.Abp.AspNetCore.Components.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Components/Volo.Abp.AspNetCore.Components.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore.Components diff --git a/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo.Abp.AspNetCore.MultiTenancy.csproj b/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo.Abp.AspNetCore.MultiTenancy.csproj index 42a1facb98..22a2cb4247 100644 --- a/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo.Abp.AspNetCore.MultiTenancy.csproj +++ b/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo.Abp.AspNetCore.MultiTenancy.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore.MultiTenancy diff --git a/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs b/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs index 95efaf2d0c..7ac6f41176 100644 --- a/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs +++ b/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs @@ -19,6 +19,7 @@ using Microsoft.Net.Http.Headers; using Volo.Abp.Http; using Volo.Abp.Json; using Volo.Abp.MultiTenancy; +using Volo.Abp.Threading; namespace Volo.Abp.AspNetCore.MultiTenancy; @@ -92,15 +93,16 @@ public class AbpAspNetCoreMultiTenancyOptions context.Response.ContentType = resolvedContentType; context.Response.StatusCode = (int)HttpStatusCode.NotFound; + var cancellationTokenProvider = context.RequestServices.GetRequiredService(); var responseStream = context.Response.Body; if (resolvedContentTypeEncoding.CodePage == Encoding.UTF8.CodePage) { try { - await JsonSerializer.SerializeAsync(responseStream, error, error.GetType(), jsonSerializerOptions, context.RequestAborted); - await responseStream.FlushAsync(context.RequestAborted); + await JsonSerializer.SerializeAsync(responseStream, error, error.GetType(), jsonSerializerOptions, cancellationTokenProvider.Token); + await responseStream.FlushAsync(cancellationTokenProvider.Token); } - catch (OperationCanceledException) when (context.RequestAborted.IsCancellationRequested) { } + catch (OperationCanceledException) when (cancellationTokenProvider.Token.IsCancellationRequested) { } } else { @@ -108,10 +110,10 @@ public class AbpAspNetCoreMultiTenancyOptions ExceptionDispatchInfo? exceptionDispatchInfo = null; try { - await JsonSerializer.SerializeAsync(transcodingStream, error, error.GetType(), jsonSerializerOptions, context.RequestAborted); - await transcodingStream.FlushAsync(context.RequestAborted); + await JsonSerializer.SerializeAsync(transcodingStream, error, error.GetType(), jsonSerializerOptions, cancellationTokenProvider.Token); + await transcodingStream.FlushAsync(cancellationTokenProvider.Token); } - catch (OperationCanceledException) when (context.RequestAborted.IsCancellationRequested) { } + catch (OperationCanceledException) when (cancellationTokenProvider.Token.IsCancellationRequested) { } catch (Exception ex) { exceptionDispatchInfo = ExceptionDispatchInfo.Capture(ex); diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/Volo.Abp.AspNetCore.Mvc.Client.Common.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/Volo.Abp.AspNetCore.Mvc.Client.Common.csproj index e3b509110c..b6df7bac5b 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/Volo.Abp.AspNetCore.Mvc.Client.Common.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/Volo.Abp.AspNetCore.Mvc.Client.Common.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.AspNetCore.Mvc.Client.Common diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.Client/Volo.Abp.AspNetCore.Mvc.Client.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.Client/Volo.Abp.AspNetCore.Mvc.Client.csproj index 2151b04985..31309bbe31 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.Client/Volo.Abp.AspNetCore.Mvc.Client.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.Client/Volo.Abp.AspNetCore.Mvc.Client.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore.Mvc.Client diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.Contracts/Volo.Abp.AspNetCore.Mvc.Contracts.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.Contracts/Volo.Abp.AspNetCore.Mvc.Contracts.csproj index fa7082e9c1..8e960c8180 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.Contracts/Volo.Abp.AspNetCore.Mvc.Contracts.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.Contracts/Volo.Abp.AspNetCore.Mvc.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.AspNetCore.Mvc.Contracts diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.Dapr.EventBus/Volo.Abp.AspNetCore.Mvc.Dapr.EventBus.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.Dapr.EventBus/Volo.Abp.AspNetCore.Mvc.Dapr.EventBus.csproj index de2b2e5a81..d098c0e5e9 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.Dapr.EventBus/Volo.Abp.AspNetCore.Mvc.Dapr.EventBus.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.Dapr.EventBus/Volo.Abp.AspNetCore.Mvc.Dapr.EventBus.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.Dapr/Volo.Abp.AspNetCore.Mvc.Dapr.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.Dapr/Volo.Abp.AspNetCore.Mvc.Dapr.csproj index a5d89d0ab4..05a5918a1c 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.Dapr/Volo.Abp.AspNetCore.Mvc.Dapr.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.Dapr/Volo.Abp.AspNetCore.Mvc.Dapr.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.NewtonsoftJson/Volo.Abp.AspNetCore.Mvc.NewtonsoftJson.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.NewtonsoftJson/Volo.Abp.AspNetCore.Mvc.NewtonsoftJson.csproj index 7f8fab67a5..863024a9e9 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.NewtonsoftJson/Volo.Abp.AspNetCore.Mvc.NewtonsoftJson.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.NewtonsoftJson/Volo.Abp.AspNetCore.Mvc.NewtonsoftJson.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj index 86405042b1..8a84188800 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.csproj index 60409e9c78..ae39f970e0 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo.Abp.AspNetCore.Mvc.UI.Bundling.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo.Abp.AspNetCore.Mvc.UI.Bundling.csproj index fefd0dfaa6..fd3995f797 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo.Abp.AspNetCore.Mvc.UI.Bundling.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo.Abp.AspNetCore.Mvc.UI.Bundling.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.csproj index a1c1dc8a82..16e988aebe 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Packages/Volo.Abp.AspNetCore.Mvc.UI.Packages.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Packages/Volo.Abp.AspNetCore.Mvc.UI.Packages.csproj index 4679eff65c..d60edceedd 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Packages/Volo.Abp.AspNetCore.Mvc.UI.Packages.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Packages/Volo.Abp.AspNetCore.Mvc.UI.Packages.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.csproj index fb63da0a26..8fb1ba8503 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.csproj index d2c64435c5..97f88e607d 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Widgets/Volo.Abp.AspNetCore.Mvc.UI.Widgets.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Widgets/Volo.Abp.AspNetCore.Mvc.UI.Widgets.csproj index f1fad26806..79f13d7dec 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Widgets/Volo.Abp.AspNetCore.Mvc.UI.Widgets.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Widgets/Volo.Abp.AspNetCore.Mvc.UI.Widgets.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI/Volo.Abp.AspNetCore.Mvc.UI.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc.UI/Volo.Abp.AspNetCore.Mvc.UI.csproj index 8393744971..10799dce48 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI/Volo.Abp.AspNetCore.Mvc.UI.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI/Volo.Abp.AspNetCore.Mvc.UI.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc/Volo.Abp.AspNetCore.Mvc.csproj b/framework/src/Volo.Abp.AspNetCore.Mvc/Volo.Abp.AspNetCore.Mvc.csproj index a6e2edc2cf..1e27cbac3b 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc/Volo.Abp.AspNetCore.Mvc.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Mvc/Volo.Abp.AspNetCore.Mvc.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Uow/AbpUowActionFilter.cs b/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Uow/AbpUowActionFilter.cs index 4a6a04a554..9512a82698 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Uow/AbpUowActionFilter.cs +++ b/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Uow/AbpUowActionFilter.cs @@ -1,11 +1,13 @@ using System; using System.Net.Http; +using System.Threading; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc.Abstractions; using Microsoft.AspNetCore.Mvc.Filters; using Microsoft.Extensions.Options; using Volo.Abp.AspNetCore.Filters; using Volo.Abp.DependencyInjection; +using Volo.Abp.Threading; using Volo.Abp.Uow; namespace Volo.Abp.AspNetCore.Mvc.Uow; @@ -37,6 +39,7 @@ public class AbpUowActionFilter : IAsyncActionFilter, IAbpFilter, ITransientDepe var options = CreateOptions(context, unitOfWorkAttr); var unitOfWorkManager = context.GetRequiredService(); + var cancellationTokenProvider = context.GetRequiredService(); //Trying to begin a reserved UOW by AbpUnitOfWorkMiddleware if (unitOfWorkManager.TryBeginReserved(UnitOfWork.UnitOfWorkReservationName, options)) @@ -44,11 +47,11 @@ public class AbpUowActionFilter : IAsyncActionFilter, IAbpFilter, ITransientDepe var result = await next(); if (Succeed(result)) { - await SaveChangesAsync(context, unitOfWorkManager); + await SaveChangesAsync(context, unitOfWorkManager, cancellationTokenProvider.Token); } else { - await RollbackAsync(context, unitOfWorkManager); + await RollbackAsync(context, unitOfWorkManager, cancellationTokenProvider.Token); } return; @@ -59,11 +62,11 @@ public class AbpUowActionFilter : IAsyncActionFilter, IAbpFilter, ITransientDepe var result = await next(); if (Succeed(result)) { - await uow.CompleteAsync(context.HttpContext.RequestAborted); + await uow.CompleteAsync(cancellationTokenProvider.Token); } else { - await uow.RollbackAsync(context.HttpContext.RequestAborted); + await uow.RollbackAsync(cancellationTokenProvider.Token); } } } @@ -85,27 +88,27 @@ public class AbpUowActionFilter : IAsyncActionFilter, IAbpFilter, ITransientDepe return options; } - private async Task RollbackAsync(ActionExecutingContext context, IUnitOfWorkManager unitOfWorkManager) + private async Task RollbackAsync(ActionExecutingContext context, IUnitOfWorkManager unitOfWorkManager, CancellationToken cancellationToken) { var currentUow = unitOfWorkManager.Current; if (currentUow != null) { - await currentUow.RollbackAsync(context.HttpContext.RequestAborted); + await currentUow.RollbackAsync(cancellationToken); } } - private async Task SaveChangesAsync(ActionExecutingContext context, IUnitOfWorkManager unitOfWorkManager) + private async Task SaveChangesAsync(ActionExecutingContext context, IUnitOfWorkManager unitOfWorkManager, CancellationToken cancellationToken) { var currentUow = unitOfWorkManager.Current; if (currentUow != null) { try { - await currentUow.SaveChangesAsync(context.HttpContext.RequestAborted); + await currentUow.SaveChangesAsync(cancellationToken); } catch (Exception e) { - await currentUow.RollbackAsync(context.HttpContext.RequestAborted); + await currentUow.RollbackAsync(cancellationToken); throw; } } diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Uow/AbpUowPageFilter.cs b/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Uow/AbpUowPageFilter.cs index f4a7be3333..5c69c07797 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Uow/AbpUowPageFilter.cs +++ b/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Uow/AbpUowPageFilter.cs @@ -1,5 +1,6 @@ using System; using System.Net.Http; +using System.Threading; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc.Abstractions; using Microsoft.AspNetCore.Mvc.Filters; @@ -7,6 +8,7 @@ using Microsoft.Extensions.Options; using Volo.Abp.AspNetCore.Filters; using Volo.Abp.AspNetCore.Uow; using Volo.Abp.DependencyInjection; +using Volo.Abp.Threading; using Volo.Abp.Uow; namespace Volo.Abp.AspNetCore.Mvc.Uow; @@ -43,6 +45,7 @@ public class AbpUowPageFilter : IAsyncPageFilter, IAbpFilter, ITransientDependen var options = CreateOptions(context, unitOfWorkAttr); var unitOfWorkManager = context.GetRequiredService(); + var cancellationTokenProvider = context.GetRequiredService(); //Trying to begin a reserved UOW by AbpUnitOfWorkMiddleware if (unitOfWorkManager.TryBeginReserved(UnitOfWork.UnitOfWorkReservationName, options)) @@ -50,11 +53,11 @@ public class AbpUowPageFilter : IAsyncPageFilter, IAbpFilter, ITransientDependen var result = await next(); if (Succeed(result)) { - await SaveChangesAsync(context, unitOfWorkManager); + await SaveChangesAsync(context, unitOfWorkManager, cancellationTokenProvider.Token); } else { - await RollbackAsync(context, unitOfWorkManager); + await RollbackAsync(context, unitOfWorkManager, cancellationTokenProvider.Token); } return; @@ -65,11 +68,11 @@ public class AbpUowPageFilter : IAsyncPageFilter, IAbpFilter, ITransientDependen var result = await next(); if (Succeed(result)) { - await uow.CompleteAsync(context.HttpContext.RequestAborted); + await uow.CompleteAsync(cancellationTokenProvider.Token); } else { - await uow.RollbackAsync(context.HttpContext.RequestAborted); + await uow.RollbackAsync(cancellationTokenProvider.Token); } } } @@ -91,27 +94,27 @@ public class AbpUowPageFilter : IAsyncPageFilter, IAbpFilter, ITransientDependen return options; } - private async Task RollbackAsync(PageHandlerExecutingContext context, IUnitOfWorkManager unitOfWorkManager) + private async Task RollbackAsync(PageHandlerExecutingContext context, IUnitOfWorkManager unitOfWorkManager, CancellationToken cancellationToken) { var currentUow = unitOfWorkManager.Current; if (currentUow != null) { - await currentUow.RollbackAsync(context.HttpContext.RequestAborted); + await currentUow.RollbackAsync(cancellationToken); } } - private async Task SaveChangesAsync(PageHandlerExecutingContext context, IUnitOfWorkManager unitOfWorkManager) + private async Task SaveChangesAsync(PageHandlerExecutingContext context, IUnitOfWorkManager unitOfWorkManager, CancellationToken cancellationToken) { var currentUow = unitOfWorkManager.Current; if (currentUow != null) { try { - await currentUow.SaveChangesAsync(context.HttpContext.RequestAborted); + await currentUow.SaveChangesAsync(cancellationToken); } catch (Exception e) { - await currentUow.RollbackAsync(context.HttpContext.RequestAborted); + await currentUow.RollbackAsync(cancellationToken); throw; } } diff --git a/framework/src/Volo.Abp.AspNetCore.Serilog/Volo.Abp.AspNetCore.Serilog.csproj b/framework/src/Volo.Abp.AspNetCore.Serilog/Volo.Abp.AspNetCore.Serilog.csproj index 609b8c06f3..94606f1834 100644 --- a/framework/src/Volo.Abp.AspNetCore.Serilog/Volo.Abp.AspNetCore.Serilog.csproj +++ b/framework/src/Volo.Abp.AspNetCore.Serilog/Volo.Abp.AspNetCore.Serilog.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore.Serilog diff --git a/framework/src/Volo.Abp.AspNetCore.SignalR/Volo.Abp.AspNetCore.SignalR.csproj b/framework/src/Volo.Abp.AspNetCore.SignalR/Volo.Abp.AspNetCore.SignalR.csproj index 19b2b748af..171bf052d0 100644 --- a/framework/src/Volo.Abp.AspNetCore.SignalR/Volo.Abp.AspNetCore.SignalR.csproj +++ b/framework/src/Volo.Abp.AspNetCore.SignalR/Volo.Abp.AspNetCore.SignalR.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore.SignalR diff --git a/framework/src/Volo.Abp.AspNetCore.TestBase/Volo.Abp.AspNetCore.TestBase.csproj b/framework/src/Volo.Abp.AspNetCore.TestBase/Volo.Abp.AspNetCore.TestBase.csproj index d919581455..6c12c63e61 100644 --- a/framework/src/Volo.Abp.AspNetCore.TestBase/Volo.Abp.AspNetCore.TestBase.csproj +++ b/framework/src/Volo.Abp.AspNetCore.TestBase/Volo.Abp.AspNetCore.TestBase.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore.TestBase diff --git a/framework/src/Volo.Abp.AspNetCore.TestBase/Volo/Abp/AspNetCore/TestBase/WebApplicationBuilderExtensions.cs b/framework/src/Volo.Abp.AspNetCore.TestBase/Volo/Abp/AspNetCore/TestBase/WebApplicationBuilderExtensions.cs index 403bbac7b1..3b5ccb38c9 100644 --- a/framework/src/Volo.Abp.AspNetCore.TestBase/Volo/Abp/AspNetCore/TestBase/WebApplicationBuilderExtensions.cs +++ b/framework/src/Volo.Abp.AspNetCore.TestBase/Volo/Abp/AspNetCore/TestBase/WebApplicationBuilderExtensions.cs @@ -9,15 +9,16 @@ namespace Volo.Abp.AspNetCore.TestBase; public static class WebApplicationBuilderExtensions { - public async static Task RunAbpModuleAsync(this WebApplicationBuilder builder, Action? optionsAction = null) + public async static Task RunAbpModuleAsync(this WebApplicationBuilder builder, Action? optionsAction = null, string? applicationName = null) where TModule : IAbpModule { - var assemblyName = typeof(TModule).Assembly.GetName()?.Name; - if (!assemblyName.IsNullOrWhiteSpace()) + applicationName = applicationName ?? typeof(TModule).Assembly.GetName()?.Name; + if (!applicationName.IsNullOrWhiteSpace()) { // Set the application name as the assembly name of the module will automatically add assembly to the ApplicationParts of MVC application. - builder.Environment.ApplicationName = assemblyName!; + builder.Environment.ApplicationName = applicationName; } + builder.Host.UseAutofac(); await builder.AddApplicationAsync(optionsAction); var app = builder.Build(); diff --git a/framework/src/Volo.Abp.AspNetCore.TestBase/Volo/Abp/AspNetCore/TestBase/WebProjectPatchHelper.cs b/framework/src/Volo.Abp.AspNetCore.TestBase/Volo/Abp/AspNetCore/TestBase/WebProjectPatchHelper.cs new file mode 100644 index 0000000000..96d8d2383c --- /dev/null +++ b/framework/src/Volo.Abp.AspNetCore.TestBase/Volo/Abp/AspNetCore/TestBase/WebProjectPatchHelper.cs @@ -0,0 +1,28 @@ +using System.IO; + +namespace Volo.Abp.AspNetCore.TestBase; + +public static class GetWebProjectContentRootPathHelper +{ + public static string Get(string webProjectName) + { + var currentDirectory = new DirectoryInfo(Directory.GetCurrentDirectory()); + + while (currentDirectory != null && Directory.GetParent(currentDirectory.FullName) != null) + { + currentDirectory = Directory.GetParent(currentDirectory.FullName); + if (currentDirectory == null) + { + continue; + } + + var files = currentDirectory.GetFiles(webProjectName, SearchOption.AllDirectories); + if (files.Length > 0) + { + return files[0].DirectoryName!; + } + } + + throw new AbpException($"Web project({webProjectName}) not found!"); + } +} diff --git a/framework/src/Volo.Abp.AspNetCore/Microsoft/AspNetCore/Builder/AbpApplicationBuilderExtensions.cs b/framework/src/Volo.Abp.AspNetCore/Microsoft/AspNetCore/Builder/AbpApplicationBuilderExtensions.cs index 730fe98533..bd653faf55 100644 --- a/framework/src/Volo.Abp.AspNetCore/Microsoft/AspNetCore/Builder/AbpApplicationBuilderExtensions.cs +++ b/framework/src/Volo.Abp.AspNetCore/Microsoft/AspNetCore/Builder/AbpApplicationBuilderExtensions.cs @@ -1,9 +1,15 @@ using System; +using System.IO; using System.Threading.Tasks; using JetBrains.Annotations; +using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.RequestLocalization; +using Microsoft.AspNetCore.Routing; +using Microsoft.AspNetCore.StaticAssets; using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.FileProviders; using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Options; using Volo.Abp; using Volo.Abp.AspNetCore.Auditing; using Volo.Abp.AspNetCore.ExceptionHandling; @@ -11,8 +17,10 @@ using Volo.Abp.AspNetCore.Security; using Volo.Abp.AspNetCore.Security.Claims; using Volo.Abp.AspNetCore.Tracing; using Volo.Abp.AspNetCore.Uow; +using Volo.Abp.AspNetCore.VirtualFileSystem; using Volo.Abp.DependencyInjection; using Volo.Abp.Threading; +using Volo.Abp.VirtualFileSystem; namespace Microsoft.AspNetCore.Builder; @@ -117,4 +125,75 @@ public static class AbpApplicationBuilderExtensions { return app.UseMiddleware(); } + + /// + /// MapAbpStaticAssets is used to serve the files from the abp virtual file system embedded resources(js/css) and call the MapStaticAssets. + /// + public static StaticAssetsEndpointConventionBuilder MapAbpStaticAssets(this WebApplication app, string? staticAssetsManifestPath = null) + { + return app.As().MapAbpStaticAssets(staticAssetsManifestPath); + } + + /// + /// MapAbpStaticAssets is used to serve the files from the abp virtual file system embedded resources(js/css) and call the MapStaticAssets. + /// + public static StaticAssetsEndpointConventionBuilder MapAbpStaticAssets(this IApplicationBuilder app, string? staticAssetsManifestPath = null) + { + if (app is not IEndpointRouteBuilder endpoints) + { + throw new AbpException("The app(IApplicationBuilder) is not an IEndpointRouteBuilder."); + } + + app.UseVirtualStaticFiles(); + + var options = app.ApplicationServices.GetRequiredService>().Value; + foreach (var folder in options.AllowedExtraWebContentFolders) + { + app.UseVirtualStaticFiles(folder); + } + + return endpoints.MapStaticAssets(staticAssetsManifestPath); + } + + /// + /// This static file provider is used to serve the files from the abp virtual file system embedded resources(js/css). + /// It will not serve the files from the application's wwwroot folder. + /// + public static IApplicationBuilder UseVirtualStaticFiles(this IApplicationBuilder app) + { + app.UseStaticFiles(new StaticFileOptions() + { + ContentTypeProvider = app.ApplicationServices.GetRequiredService(), + FileProvider = new WebContentFileProvider( + app.ApplicationServices.GetRequiredService(), + new EmptyHostingEnvironment(), + app.ApplicationServices.GetRequiredService>() + ) + }); + + return app; + } + + /// + /// This static file provider is used to serve the files from the folder. + /// + public static IApplicationBuilder UseVirtualStaticFiles(this IApplicationBuilder app, string folder) + { + folder = folder.TrimStart('/').TrimEnd('/'); + + var root = Path.Combine(app.ApplicationServices.GetRequiredService().ContentRootPath, folder); + if (!Directory.Exists(root)) + { + return app; + } + + app.UseStaticFiles(new StaticFileOptions + { + ContentTypeProvider = app.ApplicationServices.GetRequiredService(), + FileProvider = new PhysicalFileProvider(root), + RequestPath = $"/{folder}" + }); + + return app; + } } diff --git a/framework/src/Volo.Abp.AspNetCore/Microsoft/Extensions/DependencyInjection/CookieAuthenticationOptionsExtensions.cs b/framework/src/Volo.Abp.AspNetCore/Microsoft/Extensions/DependencyInjection/CookieAuthenticationOptionsExtensions.cs index 15e353431e..74def27c8e 100644 --- a/framework/src/Volo.Abp.AspNetCore/Microsoft/Extensions/DependencyInjection/CookieAuthenticationOptionsExtensions.cs +++ b/framework/src/Volo.Abp.AspNetCore/Microsoft/Extensions/DependencyInjection/CookieAuthenticationOptionsExtensions.cs @@ -7,6 +7,7 @@ using Microsoft.AspNetCore.Authentication.Cookies; using Microsoft.AspNetCore.Authentication.OpenIdConnect; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; +using Volo.Abp.Threading; namespace Microsoft.Extensions.DependencyInjection; @@ -84,9 +85,10 @@ public static class CookieAuthenticationOptionsExtensions private async static Task GetOpenIdConnectOptions(CookieValidatePrincipalContext principalContext, string oidcAuthenticationScheme) { var openIdConnectOptions = principalContext.HttpContext.RequestServices.GetRequiredService>().Get(oidcAuthenticationScheme); + var cancellationTokenProvider = principalContext.HttpContext.RequestServices.GetRequiredService(); if (openIdConnectOptions.Configuration == null && openIdConnectOptions.ConfigurationManager != null) { - openIdConnectOptions.Configuration = await openIdConnectOptions.ConfigurationManager.GetConfigurationAsync(principalContext.HttpContext.RequestAborted); + openIdConnectOptions.Configuration = await openIdConnectOptions.ConfigurationManager.GetConfigurationAsync(cancellationTokenProvider.Token); } return openIdConnectOptions; diff --git a/framework/src/Volo.Abp.AspNetCore/Volo.Abp.AspNetCore.csproj b/framework/src/Volo.Abp.AspNetCore/Volo.Abp.AspNetCore.csproj index c6326e3e95..d88febbfe9 100644 --- a/framework/src/Volo.Abp.AspNetCore/Volo.Abp.AspNetCore.csproj +++ b/framework/src/Volo.Abp.AspNetCore/Volo.Abp.AspNetCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AspNetCore diff --git a/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Uow/AbpUnitOfWorkMiddleware.cs b/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Uow/AbpUnitOfWorkMiddleware.cs index a3c98978f0..74833bf748 100644 --- a/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Uow/AbpUnitOfWorkMiddleware.cs +++ b/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Uow/AbpUnitOfWorkMiddleware.cs @@ -6,6 +6,7 @@ using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Options; using Volo.Abp.AspNetCore.Middleware; using Volo.Abp.DependencyInjection; +using Volo.Abp.Threading; using Volo.Abp.Uow; namespace Volo.Abp.AspNetCore.Uow; @@ -14,13 +15,16 @@ public class AbpUnitOfWorkMiddleware : AbpMiddlewareBase, ITransientDependency { private readonly IUnitOfWorkManager _unitOfWorkManager; private readonly AbpAspNetCoreUnitOfWorkOptions _options; + private readonly ICancellationTokenProvider _cancellationTokenProvider; public AbpUnitOfWorkMiddleware( IUnitOfWorkManager unitOfWorkManager, - IOptions options) + IOptions options, + ICancellationTokenProvider cancellationTokenProvider) { _unitOfWorkManager = unitOfWorkManager; _options = options.Value; + _cancellationTokenProvider = cancellationTokenProvider; } public async override Task InvokeAsync(HttpContext context, RequestDelegate next) @@ -34,7 +38,7 @@ public class AbpUnitOfWorkMiddleware : AbpMiddlewareBase, ITransientDependency using (var uow = _unitOfWorkManager.Reserve(UnitOfWork.UnitOfWorkReservationName)) { await next(context); - await uow.CompleteAsync(context.RequestAborted); + await uow.CompleteAsync(_cancellationTokenProvider.Token); } } diff --git a/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/WebContentFileProvider.cs b/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/WebContentFileProvider.cs index 9814dd8c97..313ded53ac 100644 --- a/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/WebContentFileProvider.cs +++ b/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/WebContentFileProvider.cs @@ -85,23 +85,22 @@ public class WebContentFileProvider : IWebContentFileProvider, ISingletonDepende return new CompositeChangeToken( new[] { - _fileProvider.Watch(_rootPath + filter), - _fileProvider.Watch(filter) + _fileProvider.Watch(_rootPath + filter), + _fileProvider.Watch(filter) } ); } protected virtual IFileProvider CreateFileProvider() { - var fileProviders = new List - { - new PhysicalFileProvider(_hostingEnvironment.ContentRootPath), - _virtualFileProvider - }; + var fileProviders = new List(); + if (!_hostingEnvironment.ContentRootPath.IsNullOrEmpty()) + { + fileProviders.Add(new PhysicalFileProvider(_hostingEnvironment.ContentRootPath)); + } - return new CompositeFileProvider( - fileProviders - ); + fileProviders.Add(_virtualFileProvider); + return new CompositeFileProvider(fileProviders); } protected virtual bool ExtraAllowedFolder(string path) diff --git a/framework/src/Volo.Abp.Auditing.Contracts/Volo.Abp.Auditing.Contracts.csproj b/framework/src/Volo.Abp.Auditing.Contracts/Volo.Abp.Auditing.Contracts.csproj index b99c502a61..f15bac5a92 100644 --- a/framework/src/Volo.Abp.Auditing.Contracts/Volo.Abp.Auditing.Contracts.csproj +++ b/framework/src/Volo.Abp.Auditing.Contracts/Volo.Abp.Auditing.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Auditing.Contracts diff --git a/framework/src/Volo.Abp.Auditing/Volo.Abp.Auditing.csproj b/framework/src/Volo.Abp.Auditing/Volo.Abp.Auditing.csproj index fc2a565b19..5bfbf26366 100644 --- a/framework/src/Volo.Abp.Auditing/Volo.Abp.Auditing.csproj +++ b/framework/src/Volo.Abp.Auditing/Volo.Abp.Auditing.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Auditing diff --git a/framework/src/Volo.Abp.Authorization.Abstractions/Volo.Abp.Authorization.Abstractions.csproj b/framework/src/Volo.Abp.Authorization.Abstractions/Volo.Abp.Authorization.Abstractions.csproj index 14d337d15a..3a201ee7ae 100644 --- a/framework/src/Volo.Abp.Authorization.Abstractions/Volo.Abp.Authorization.Abstractions.csproj +++ b/framework/src/Volo.Abp.Authorization.Abstractions/Volo.Abp.Authorization.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Authorization.Abstractions diff --git a/framework/src/Volo.Abp.Authorization/Volo.Abp.Authorization.csproj b/framework/src/Volo.Abp.Authorization/Volo.Abp.Authorization.csproj index 492d1bc4ef..dfaea2aadb 100644 --- a/framework/src/Volo.Abp.Authorization/Volo.Abp.Authorization.csproj +++ b/framework/src/Volo.Abp.Authorization/Volo.Abp.Authorization.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Authorization diff --git a/framework/src/Volo.Abp.AutoMapper/Volo.Abp.AutoMapper.csproj b/framework/src/Volo.Abp.AutoMapper/Volo.Abp.AutoMapper.csproj index f56a92a11e..8d12eca643 100644 --- a/framework/src/Volo.Abp.AutoMapper/Volo.Abp.AutoMapper.csproj +++ b/framework/src/Volo.Abp.AutoMapper/Volo.Abp.AutoMapper.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.AutoMapper diff --git a/framework/src/Volo.Abp.Autofac.WebAssembly/Volo.Abp.Autofac.WebAssembly.csproj b/framework/src/Volo.Abp.Autofac.WebAssembly/Volo.Abp.Autofac.WebAssembly.csproj index 1f00652a55..f3b7261a4c 100644 --- a/framework/src/Volo.Abp.Autofac.WebAssembly/Volo.Abp.Autofac.WebAssembly.csproj +++ b/framework/src/Volo.Abp.Autofac.WebAssembly/Volo.Abp.Autofac.WebAssembly.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.Autofac/Volo.Abp.Autofac.csproj b/framework/src/Volo.Abp.Autofac/Volo.Abp.Autofac.csproj index 60a7418bb5..417a7b4f2f 100644 --- a/framework/src/Volo.Abp.Autofac/Volo.Abp.Autofac.csproj +++ b/framework/src/Volo.Abp.Autofac/Volo.Abp.Autofac.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Autofac diff --git a/framework/src/Volo.Abp.AzureServiceBus/Volo.Abp.AzureServiceBus.csproj b/framework/src/Volo.Abp.AzureServiceBus/Volo.Abp.AzureServiceBus.csproj index 151b54c7d6..b0b668a144 100644 --- a/framework/src/Volo.Abp.AzureServiceBus/Volo.Abp.AzureServiceBus.csproj +++ b/framework/src/Volo.Abp.AzureServiceBus/Volo.Abp.AzureServiceBus.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.AzureServiceBus diff --git a/framework/src/Volo.Abp.BackgroundJobs.Abstractions/Volo.Abp.BackgroundJobs.Abstractions.csproj b/framework/src/Volo.Abp.BackgroundJobs.Abstractions/Volo.Abp.BackgroundJobs.Abstractions.csproj index 328023311c..f013740401 100644 --- a/framework/src/Volo.Abp.BackgroundJobs.Abstractions/Volo.Abp.BackgroundJobs.Abstractions.csproj +++ b/framework/src/Volo.Abp.BackgroundJobs.Abstractions/Volo.Abp.BackgroundJobs.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BackgroundJobs.Abstractions diff --git a/framework/src/Volo.Abp.BackgroundJobs.HangFire/Volo.Abp.BackgroundJobs.HangFire.csproj b/framework/src/Volo.Abp.BackgroundJobs.HangFire/Volo.Abp.BackgroundJobs.HangFire.csproj index 2ef1330823..2e88148bb5 100644 --- a/framework/src/Volo.Abp.BackgroundJobs.HangFire/Volo.Abp.BackgroundJobs.HangFire.csproj +++ b/framework/src/Volo.Abp.BackgroundJobs.HangFire/Volo.Abp.BackgroundJobs.HangFire.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BackgroundJobs.HangFire diff --git a/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo.Abp.BackgroundJobs.Quartz.csproj b/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo.Abp.BackgroundJobs.Quartz.csproj index 4860ca398b..52cbe0b9be 100644 --- a/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo.Abp.BackgroundJobs.Quartz.csproj +++ b/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo.Abp.BackgroundJobs.Quartz.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BackgroundJobs.Quartz diff --git a/framework/src/Volo.Abp.BackgroundJobs.RabbitMQ/Volo.Abp.BackgroundJobs.RabbitMQ.csproj b/framework/src/Volo.Abp.BackgroundJobs.RabbitMQ/Volo.Abp.BackgroundJobs.RabbitMQ.csproj index ac0473470a..947cadec96 100644 --- a/framework/src/Volo.Abp.BackgroundJobs.RabbitMQ/Volo.Abp.BackgroundJobs.RabbitMQ.csproj +++ b/framework/src/Volo.Abp.BackgroundJobs.RabbitMQ/Volo.Abp.BackgroundJobs.RabbitMQ.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BackgroundJobs.RabbitMQ diff --git a/framework/src/Volo.Abp.BackgroundJobs/Volo.Abp.BackgroundJobs.csproj b/framework/src/Volo.Abp.BackgroundJobs/Volo.Abp.BackgroundJobs.csproj index b6a0ba00d1..acc0de1097 100644 --- a/framework/src/Volo.Abp.BackgroundJobs/Volo.Abp.BackgroundJobs.csproj +++ b/framework/src/Volo.Abp.BackgroundJobs/Volo.Abp.BackgroundJobs.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BackgroundJobs diff --git a/framework/src/Volo.Abp.BackgroundWorkers.Hangfire/Volo.Abp.BackgroundWorkers.Hangfire.csproj b/framework/src/Volo.Abp.BackgroundWorkers.Hangfire/Volo.Abp.BackgroundWorkers.Hangfire.csproj index 752a3b35d3..a177b5c2de 100644 --- a/framework/src/Volo.Abp.BackgroundWorkers.Hangfire/Volo.Abp.BackgroundWorkers.Hangfire.csproj +++ b/framework/src/Volo.Abp.BackgroundWorkers.Hangfire/Volo.Abp.BackgroundWorkers.Hangfire.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BackgroundWorkers.Hangfire diff --git a/framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo.Abp.BackgroundWorkers.Quartz.csproj b/framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo.Abp.BackgroundWorkers.Quartz.csproj index a066795c3e..4a6df3d769 100644 --- a/framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo.Abp.BackgroundWorkers.Quartz.csproj +++ b/framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo.Abp.BackgroundWorkers.Quartz.csproj @@ -5,7 +5,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BackgroundWorkers.Quartz diff --git a/framework/src/Volo.Abp.BackgroundWorkers/Volo.Abp.BackgroundWorkers.csproj b/framework/src/Volo.Abp.BackgroundWorkers/Volo.Abp.BackgroundWorkers.csproj index 6c3078ccf7..f55568c37b 100644 --- a/framework/src/Volo.Abp.BackgroundWorkers/Volo.Abp.BackgroundWorkers.csproj +++ b/framework/src/Volo.Abp.BackgroundWorkers/Volo.Abp.BackgroundWorkers.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BackgroundWorkers diff --git a/framework/src/Volo.Abp.BlazoriseUI/AbpCrudPageBase.cs b/framework/src/Volo.Abp.BlazoriseUI/AbpCrudPageBase.cs index 1018eb3efa..7544173944 100644 --- a/framework/src/Volo.Abp.BlazoriseUI/AbpCrudPageBase.cs +++ b/framework/src/Volo.Abp.BlazoriseUI/AbpCrudPageBase.cs @@ -319,6 +319,7 @@ public abstract class AbpCrudPageBase< { CurrentSorting = e.Columns .Where(c => c.SortDirection != SortDirection.Default) + .OrderBy(c => c.SortIndex) .Select(c => c.SortField + (c.SortDirection == SortDirection.Descending ? " DESC" : "")) .JoinAsString(","); CurrentPage = e.Page; diff --git a/framework/src/Volo.Abp.BlazoriseUI/Volo.Abp.BlazoriseUI.csproj b/framework/src/Volo.Abp.BlazoriseUI/Volo.Abp.BlazoriseUI.csproj index ab0c8bc440..ab6d1fb80f 100644 --- a/framework/src/Volo.Abp.BlazoriseUI/Volo.Abp.BlazoriseUI.csproj +++ b/framework/src/Volo.Abp.BlazoriseUI/Volo.Abp.BlazoriseUI.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.BlobStoring.Aliyun/Volo.Abp.BlobStoring.Aliyun.csproj b/framework/src/Volo.Abp.BlobStoring.Aliyun/Volo.Abp.BlobStoring.Aliyun.csproj index 63490ca237..4c5fbf1fcc 100644 --- a/framework/src/Volo.Abp.BlobStoring.Aliyun/Volo.Abp.BlobStoring.Aliyun.csproj +++ b/framework/src/Volo.Abp.BlobStoring.Aliyun/Volo.Abp.BlobStoring.Aliyun.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BlobStoring.Aliyun diff --git a/framework/src/Volo.Abp.BlobStoring.Aws/Volo.Abp.BlobStoring.Aws.csproj b/framework/src/Volo.Abp.BlobStoring.Aws/Volo.Abp.BlobStoring.Aws.csproj index fb260147e1..4eebeba0ff 100644 --- a/framework/src/Volo.Abp.BlobStoring.Aws/Volo.Abp.BlobStoring.Aws.csproj +++ b/framework/src/Volo.Abp.BlobStoring.Aws/Volo.Abp.BlobStoring.Aws.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable false diff --git a/framework/src/Volo.Abp.BlobStoring.Azure/Volo.Abp.BlobStoring.Azure.csproj b/framework/src/Volo.Abp.BlobStoring.Azure/Volo.Abp.BlobStoring.Azure.csproj index 56bc02e89f..509d3d26bf 100644 --- a/framework/src/Volo.Abp.BlobStoring.Azure/Volo.Abp.BlobStoring.Azure.csproj +++ b/framework/src/Volo.Abp.BlobStoring.Azure/Volo.Abp.BlobStoring.Azure.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BlobStoring.Azure diff --git a/framework/src/Volo.Abp.BlobStoring.FileSystem/Volo.Abp.BlobStoring.FileSystem.csproj b/framework/src/Volo.Abp.BlobStoring.FileSystem/Volo.Abp.BlobStoring.FileSystem.csproj index 0b73a6b802..0b1618bd44 100644 --- a/framework/src/Volo.Abp.BlobStoring.FileSystem/Volo.Abp.BlobStoring.FileSystem.csproj +++ b/framework/src/Volo.Abp.BlobStoring.FileSystem/Volo.Abp.BlobStoring.FileSystem.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BlobStoring.FileSystem diff --git a/framework/src/Volo.Abp.BlobStoring.Google/Volo.Abp.BlobStoring.Google.csproj b/framework/src/Volo.Abp.BlobStoring.Google/Volo.Abp.BlobStoring.Google.csproj index 073c8c1891..a452f2a129 100644 --- a/framework/src/Volo.Abp.BlobStoring.Google/Volo.Abp.BlobStoring.Google.csproj +++ b/framework/src/Volo.Abp.BlobStoring.Google/Volo.Abp.BlobStoring.Google.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BlobStoring.Google diff --git a/framework/src/Volo.Abp.BlobStoring.Minio/Volo.Abp.BlobStoring.Minio.csproj b/framework/src/Volo.Abp.BlobStoring.Minio/Volo.Abp.BlobStoring.Minio.csproj index 07d86e4a89..8a2dff731a 100644 --- a/framework/src/Volo.Abp.BlobStoring.Minio/Volo.Abp.BlobStoring.Minio.csproj +++ b/framework/src/Volo.Abp.BlobStoring.Minio/Volo.Abp.BlobStoring.Minio.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.BlobStoring.Minio diff --git a/framework/src/Volo.Abp.BlobStoring/Volo.Abp.BlobStoring.csproj b/framework/src/Volo.Abp.BlobStoring/Volo.Abp.BlobStoring.csproj index e2450b56b7..c9774f4f81 100644 --- a/framework/src/Volo.Abp.BlobStoring/Volo.Abp.BlobStoring.csproj +++ b/framework/src/Volo.Abp.BlobStoring/Volo.Abp.BlobStoring.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.BlobStoring diff --git a/framework/src/Volo.Abp.Caching.StackExchangeRedis/Volo.Abp.Caching.StackExchangeRedis.csproj b/framework/src/Volo.Abp.Caching.StackExchangeRedis/Volo.Abp.Caching.StackExchangeRedis.csproj index 2e7683cee9..3655edbc7d 100644 --- a/framework/src/Volo.Abp.Caching.StackExchangeRedis/Volo.Abp.Caching.StackExchangeRedis.csproj +++ b/framework/src/Volo.Abp.Caching.StackExchangeRedis/Volo.Abp.Caching.StackExchangeRedis.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Caching.StackExchangeRedis diff --git a/framework/src/Volo.Abp.Caching.StackExchangeRedis/Volo/Abp/Caching/StackExchangeRedis/AbpRedisCache.cs b/framework/src/Volo.Abp.Caching.StackExchangeRedis/Volo/Abp/Caching/StackExchangeRedis/AbpRedisCache.cs index c5ae0b5393..900f252a77 100644 --- a/framework/src/Volo.Abp.Caching.StackExchangeRedis/Volo/Abp/Caching/StackExchangeRedis/AbpRedisCache.cs +++ b/framework/src/Volo.Abp.Caching.StackExchangeRedis/Volo/Abp/Caching/StackExchangeRedis/AbpRedisCache.cs @@ -1,4 +1,5 @@ using System; +using System.Buffers; using System.Collections.Generic; using System.Linq; using System.Reflection; @@ -16,21 +17,21 @@ namespace Volo.Abp.Caching.StackExchangeRedis; [DisableConventionalRegistration] public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems { - protected static readonly string AbsoluteExpirationKey; - protected static readonly string SlidingExpirationKey; - protected static readonly string DataKey; - protected static readonly long NotPresent; - protected static readonly RedisValue[] HashMembersAbsoluteExpirationSlidingExpirationData; - protected static readonly RedisValue[] HashMembersAbsoluteExpirationSlidingExpiration; - - private readonly static FieldInfo SetScriptField; - private readonly static FieldInfo RedisDatabaseField; - private readonly static MethodInfo ConnectMethod; - private readonly static MethodInfo ConnectAsyncMethod; - private readonly static MethodInfo MapMetadataMethod; - private readonly static MethodInfo GetAbsoluteExpirationMethod; - private readonly static MethodInfo GetExpirationInSecondsMethod; - private readonly static MethodInfo OnRedisErrorMethod; + protected readonly static string AbsoluteExpirationKey; + protected readonly static string SlidingExpirationKey; + protected readonly static string DataKey; + protected readonly static long NotPresent; + protected readonly static RedisValue[] HashMembersAbsoluteExpirationSlidingExpirationData; + protected readonly static RedisValue[] HashMembersAbsoluteExpirationSlidingExpiration; + + protected readonly static FieldInfo RedisDatabaseField; + protected readonly static MethodInfo ConnectMethod; + protected readonly static MethodInfo ConnectAsyncMethod; + protected readonly static MethodInfo MapMetadataMethod; + protected readonly static MethodInfo GetAbsoluteExpirationMethod; + protected readonly static MethodInfo GetExpirationInSecondsMethod; + protected readonly static MethodInfo OnRedisErrorMethod; + protected readonly static MethodInfo RecycleMethodInfo; protected RedisKey InstancePrefix { get; } @@ -40,8 +41,6 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems RedisDatabaseField = Check.NotNull(type.GetField("_cache", BindingFlags.Instance | BindingFlags.NonPublic), nameof(RedisDatabaseField)); - SetScriptField = Check.NotNull(type.GetField("_setScript", BindingFlags.Instance | BindingFlags.NonPublic), nameof(SetScriptField)); - ConnectMethod = Check.NotNull(type.GetMethod("Connect", BindingFlags.Instance | BindingFlags.NonPublic), nameof(ConnectMethod)); ConnectAsyncMethod = Check.NotNull(type.GetMethod("ConnectAsync", BindingFlags.Instance | BindingFlags.NonPublic), nameof(ConnectAsyncMethod)); @@ -51,9 +50,11 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems GetAbsoluteExpirationMethod = Check.NotNull(type.GetMethod("GetAbsoluteExpiration", BindingFlags.Static | BindingFlags.NonPublic), nameof(GetAbsoluteExpirationMethod)); GetExpirationInSecondsMethod = Check.NotNull(type.GetMethod("GetExpirationInSeconds", BindingFlags.Static | BindingFlags.NonPublic), nameof(GetExpirationInSecondsMethod)); - + OnRedisErrorMethod = Check.NotNull(type.GetMethod("OnRedisError", BindingFlags.Instance | BindingFlags.NonPublic), nameof(OnRedisErrorMethod)); + RecycleMethodInfo = Check.NotNull(type.GetMethod("Recycle", BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Static), nameof(RecycleMethodInfo)); + AbsoluteExpirationKey = type.GetField("AbsoluteExpirationKey", BindingFlags.Static | BindingFlags.NonPublic)!.GetValue(null)!.ToString()!; SlidingExpirationKey = type.GetField("SlidingExpirationKey", BindingFlags.Static | BindingFlags.NonPublic)!.GetValue(null)!.ToString()!; @@ -61,9 +62,9 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems DataKey = type.GetField("DataKey", BindingFlags.Static | BindingFlags.NonPublic)!.GetValue(null)!.ToString()!; NotPresent = type.GetField("NotPresent", BindingFlags.Static | BindingFlags.NonPublic)!.GetValue(null)!.To(); - + HashMembersAbsoluteExpirationSlidingExpirationData = [AbsoluteExpirationKey, SlidingExpirationKey, DataKey]; - + HashMembersAbsoluteExpirationSlidingExpiration = [AbsoluteExpirationKey, SlidingExpirationKey]; } @@ -78,7 +79,7 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems } protected virtual IDatabase Connect() - { + { return (IDatabase)ConnectMethod.Invoke(this, Array.Empty())!; } @@ -87,32 +88,36 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems return await (ValueTask)ConnectAsyncMethod.Invoke(this, new object[] { token })!; } - public byte[]?[] GetMany( - IEnumerable keys) + protected virtual void Recycle(byte[]? lease) + { + RecycleMethodInfo.Invoke(this, new object[] { lease! }); + } + + public byte[]?[] GetMany(IEnumerable keys) { keys = Check.NotNull(keys, nameof(keys)); return GetAndRefreshMany(keys, true); } - public async Task GetManyAsync( - IEnumerable keys, - CancellationToken token = default) + public async Task GetManyAsync(IEnumerable keys, CancellationToken token = default) { keys = Check.NotNull(keys, nameof(keys)); return await GetAndRefreshManyAsync(keys, true, token); } - public void SetMany( - IEnumerable> items, - DistributedCacheEntryOptions options) + public void SetMany(IEnumerable> items, DistributedCacheEntryOptions options) { var cache = Connect(); try { - Task.WaitAll(PipelineSetMany(cache, items, options)); + Task.WaitAll(PipelineSetMany(cache, items, options, out var leases)); + foreach (var lease in leases) + { + Recycle(lease); + } } catch (Exception ex) { @@ -121,10 +126,7 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems } } - public async Task SetManyAsync( - IEnumerable> items, - DistributedCacheEntryOptions options, - CancellationToken token = default) + public async Task SetManyAsync( IEnumerable> items, DistributedCacheEntryOptions options, CancellationToken token = default) { token.ThrowIfCancellationRequested(); @@ -132,7 +134,11 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems try { - await Task.WhenAll(PipelineSetMany(cache, items, options)); + await Task.WhenAll(PipelineSetMany(cache, items, options, out var leases)); + foreach (var lease in leases) + { + Recycle(lease); + } } catch (Exception ex) { @@ -141,17 +147,14 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems } } - public void RefreshMany( - IEnumerable keys) + public void RefreshMany(IEnumerable keys) { keys = Check.NotNull(keys, nameof(keys)); GetAndRefreshMany(keys, false); } - public async Task RefreshManyAsync( - IEnumerable keys, - CancellationToken token = default) + public async Task RefreshManyAsync(IEnumerable keys, CancellationToken token = default) { keys = Check.NotNull(keys, nameof(keys)); @@ -193,9 +196,7 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems } } - protected virtual byte[]?[] GetAndRefreshMany( - IEnumerable keys, - bool getData) + protected virtual byte[]?[] GetAndRefreshMany(IEnumerable keys, bool getData) { var cache = Connect(); @@ -217,10 +218,7 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems return bytes; } - protected virtual async Task GetAndRefreshManyAsync( - IEnumerable keys, - bool getData, - CancellationToken token = default) + protected virtual async Task GetAndRefreshManyAsync(IEnumerable keys, bool getData, CancellationToken token = default) { token.ThrowIfCancellationRequested(); @@ -239,15 +237,11 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems OnRedisError(ex, cache); throw; } - + return bytes; } - protected virtual Task[] PipelineRefreshManyAndOutData( - IDatabase cache, - RedisKey[] keys, - RedisValue[][] results, - out byte[]?[] bytes) + protected virtual Task[] PipelineRefreshManyAndOutData(IDatabase cache, RedisKey[] keys, RedisValue[][] results, out byte[]?[] bytes) { bytes = new byte[keys.Length][]; var tasks = new Task[keys.Length]; @@ -293,37 +287,36 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems return tasks; } - protected virtual Task[] PipelineSetMany( - IDatabase cache, - IEnumerable> items, - DistributedCacheEntryOptions options) + protected virtual Task[] PipelineSetMany(IDatabase cache, IEnumerable> items, DistributedCacheEntryOptions options, out List leases) { - items = Check.NotNull(items, nameof(items)); - options = Check.NotNull(options, nameof(options)); + var tasks = new List(); + leases = new List(); - var itemArray = items.ToArray(); - var tasks = new Task[itemArray.Length]; var creationTime = DateTimeOffset.UtcNow; + var absoluteExpiration = GetAbsoluteExpiration(creationTime, options); - for (var i = 0; i < itemArray.Length; i++) + foreach (var item in items) { - tasks[i] = cache.ScriptEvaluateAsync(GetSetScript(), new RedisKey[] { InstancePrefix.Append(itemArray[i].Key) }, - [ - absoluteExpiration?.Ticks ?? NotPresent, - options.SlidingExpiration?.Ticks ?? NotPresent, - GetExpirationInSeconds(creationTime, absoluteExpiration, options) ?? NotPresent, - itemArray[i].Value - ]); + var prefixedKey = InstancePrefix.Append(item.Key); + var ttl = GetExpirationInSeconds(creationTime, absoluteExpiration, options); + var fields = GetHashFields(Linearize(new ReadOnlySequence(item.Value), out var lease), absoluteExpiration, options.SlidingExpiration); + leases.Add(lease); + if (ttl is null) + { + tasks.Add(cache.HashSetAsync(prefixedKey, fields)); + } + else + { + tasks.Add(cache.HashSetAsync(prefixedKey, fields)); + tasks.Add(cache.KeyExpireAsync(prefixedKey, TimeSpan.FromSeconds(ttl.GetValueOrDefault()))); + } } - return tasks; + return tasks.ToArray(); } - protected virtual void MapMetadata( - RedisValue[] results, - out DateTimeOffset? absoluteExpiration, - out TimeSpan? slidingExpiration) + protected virtual void MapMetadata(RedisValue[] results, out DateTimeOffset? absoluteExpiration, out TimeSpan? slidingExpiration) { var parameters = new object?[] { results, null, null }; MapMetadataMethod.Invoke(this, parameters); @@ -332,36 +325,50 @@ public class AbpRedisCache : RedisCache, ICacheSupportsMultipleItems slidingExpiration = (TimeSpan?)parameters[2]; } - protected virtual long? GetExpirationInSeconds( - DateTimeOffset creationTime, - DateTimeOffset? absoluteExpiration, - DistributedCacheEntryOptions options) + protected virtual long? GetExpirationInSeconds(DateTimeOffset creationTime, DateTimeOffset? absoluteExpiration, DistributedCacheEntryOptions options) { - return (long?)GetExpirationInSecondsMethod.Invoke(null, - new object?[] { creationTime, absoluteExpiration, options }); + return (long?)GetExpirationInSecondsMethod.Invoke(null, new object?[] { creationTime, absoluteExpiration, options }); } - protected virtual DateTimeOffset? GetAbsoluteExpiration( - DateTimeOffset creationTime, - DistributedCacheEntryOptions options) + protected virtual DateTimeOffset? GetAbsoluteExpiration(DateTimeOffset creationTime, DistributedCacheEntryOptions options) { return (DateTimeOffset?)GetAbsoluteExpirationMethod.Invoke(null, new object[] { creationTime, options }); } - + protected virtual void OnRedisError(Exception ex, IDatabase cache) { OnRedisErrorMethod.Invoke(this, [ex, cache]); } - - private string GetSetScript() + + private static ReadOnlyMemory Linearize(in ReadOnlySequence value, out byte[]? lease) { - return SetScriptField.GetValue(this)!.ToString()!; + // RedisValue only supports single-segment chunks; this will almost never be an issue, but + // on those rare occasions: use a leased array to harmonize things + if (value.IsSingleSegment) + { + lease = null; + return value.First; + } + var length = checked((int)value.Length); + lease = ArrayPool.Shared.Rent(length); + value.CopyTo(lease); + return new(lease, 0, length); } - + private static RedisValue[] GetHashFields(bool getData) { return getData ? HashMembersAbsoluteExpirationSlidingExpirationData : HashMembersAbsoluteExpirationSlidingExpiration; } + + private static HashEntry[] GetHashFields(RedisValue value, DateTimeOffset? absoluteExpiration, TimeSpan? slidingExpiration) + { + return + [ + new HashEntry(AbsoluteExpirationKey, absoluteExpiration?.Ticks ?? NotPresent), + new HashEntry(SlidingExpirationKey, slidingExpiration?.Ticks ?? NotPresent), + new HashEntry(DataKey, value) + ]; + } } diff --git a/framework/src/Volo.Abp.Caching/Volo.Abp.Caching.csproj b/framework/src/Volo.Abp.Caching/Volo.Abp.Caching.csproj index d2eb13d6aa..cf14047faf 100644 --- a/framework/src/Volo.Abp.Caching/Volo.Abp.Caching.csproj +++ b/framework/src/Volo.Abp.Caching/Volo.Abp.Caching.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Volo.Abp.Caching Volo.Abp.Caching @@ -17,6 +17,7 @@ + diff --git a/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/AbpCachingModule.cs b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/AbpCachingModule.cs index 769cc75a8d..de5f60ee4e 100644 --- a/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/AbpCachingModule.cs +++ b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/AbpCachingModule.cs @@ -1,5 +1,8 @@ using Microsoft.Extensions.DependencyInjection; using System; +using Microsoft.Extensions.Caching.Hybrid; +using Microsoft.Extensions.DependencyInjection.Extensions; +using Volo.Abp.Caching.Hybrid; using Volo.Abp.Json; using Volo.Abp.Modularity; using Volo.Abp.MultiTenancy; @@ -25,6 +28,10 @@ public class AbpCachingModule : AbpModule context.Services.AddSingleton(typeof(IDistributedCache<>), typeof(DistributedCache<>)); context.Services.AddSingleton(typeof(IDistributedCache<,>), typeof(DistributedCache<,>)); + context.Services.AddHybridCache().AddSerializerFactory(); + context.Services.AddSingleton(typeof(IHybridCache<>), typeof(AbpHybridCache<>)); + context.Services.AddSingleton(typeof(IHybridCache<,>), typeof(AbpHybridCache<,>)); + context.Services.Configure(cacheOptions => { cacheOptions.GlobalCacheEntryOptions.SlidingExpiration = TimeSpan.FromMinutes(20); diff --git a/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCache.cs b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCache.cs new file mode 100644 index 0000000000..2894af9f3d --- /dev/null +++ b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCache.cs @@ -0,0 +1,459 @@ +using System; +using System.Buffers; +using System.Collections.Concurrent; +using System.Collections.Generic; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.Caching.Distributed; +using Microsoft.Extensions.Caching.Hybrid; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Logging.Abstractions; +using Microsoft.Extensions.Options; +using Volo.Abp.ExceptionHandling; +using Volo.Abp.MultiTenancy; +using Volo.Abp.Threading; +using Volo.Abp.Uow; + +namespace Volo.Abp.Caching.Hybrid; + +/// +/// Represents a hybrid cache of items. +/// +/// The type of the cache item being cached. +public class AbpHybridCache : IHybridCache + where TCacheItem : class +{ + public IHybridCache InternalCache { get; } + + public AbpHybridCache(IHybridCache internalCache) + { + InternalCache = internalCache; + } + + public virtual async Task GetOrCreateAsync(string key, Func> factory, Func? optionsFactory = null, bool? hideErrors = null, bool considerUow = false, CancellationToken token = default) + { + return await InternalCache.GetOrCreateAsync(key, factory, optionsFactory, hideErrors, considerUow, token); + } + + public virtual async Task SetAsync(string key, TCacheItem value, HybridCacheEntryOptions? options = null, bool? hideErrors = null, bool considerUow = false, CancellationToken token = default) + { + await InternalCache.SetAsync(key, value, options, hideErrors, considerUow, token); + } + + public virtual async Task RemoveAsync(string key, bool? hideErrors = null, bool considerUow = false, CancellationToken token = default) + { + await InternalCache.RemoveAsync(key, hideErrors, considerUow, token); + } + + public virtual async Task RemoveManyAsync(IEnumerable keys, bool? hideErrors = null, bool considerUow = false, CancellationToken token = default) + { + await InternalCache.RemoveManyAsync(keys, hideErrors, considerUow, token); + } +} + +/// +/// Represents a hybrid cache of items. +/// Uses as the key type. +/// +/// The type of cache item being cached. +/// The type of cache key being used. +public class AbpHybridCache : IHybridCache + where TCacheItem : class + where TCacheKey : notnull +{ + public const string UowCacheName = "AbpHybridCache"; + + public ILogger> Logger { get; set; } + + protected string CacheName { get; set; } = default!; + + protected bool IgnoreMultiTenancy { get; set; } + + protected IServiceProvider ServiceProvider { get; } + + protected HybridCache HybridCache { get; } + + protected IDistributedCache DistributedCacheCache { get; } + + protected ICancellationTokenProvider CancellationTokenProvider { get; } + + protected IDistributedCacheKeyNormalizer KeyNormalizer { get; } + + protected IServiceScopeFactory ServiceScopeFactory { get; } + + protected IUnitOfWorkManager UnitOfWorkManager { get; } + + protected SemaphoreSlim SyncSemaphore { get; } + + protected HybridCacheEntryOptions DefaultCacheOptions = default!; + + protected AbpHybridCacheOptions DistributedCacheOption { get; } + + public AbpHybridCache( + IServiceProvider serviceProvider, + IOptions distributedCacheOption, + HybridCache hybridCache, + IDistributedCache distributedCache, + ICancellationTokenProvider cancellationTokenProvider, + IDistributedCacheSerializer serializer, + IDistributedCacheKeyNormalizer keyNormalizer, + IServiceScopeFactory serviceScopeFactory, + IUnitOfWorkManager unitOfWorkManager) + { + ServiceProvider = serviceProvider; + DistributedCacheOption = distributedCacheOption.Value; + HybridCache = hybridCache; + DistributedCacheCache = distributedCache; + CancellationTokenProvider = cancellationTokenProvider; + Logger = NullLogger>.Instance; + KeyNormalizer = keyNormalizer; + ServiceScopeFactory = serviceScopeFactory; + UnitOfWorkManager = unitOfWorkManager; + + SyncSemaphore = new SemaphoreSlim(1, 1); + + SetDefaultOptions(); + } + + protected virtual string NormalizeKey(TCacheKey key) + { + return KeyNormalizer.NormalizeKey( + new DistributedCacheKeyNormalizeArgs( + key.ToString()!, + CacheName, + IgnoreMultiTenancy + ) + ); + } + + protected virtual HybridCacheEntryOptions GetDefaultCacheEntryOptions() + { + foreach (var configure in DistributedCacheOption.CacheConfigurators) + { + var options = configure.Invoke(CacheName); + if (options != null) + { + return options; + } + } + + return DistributedCacheOption.GlobalHybridCacheEntryOptions; + } + + protected virtual void SetDefaultOptions() + { + CacheName = CacheNameAttribute.GetCacheName(typeof(TCacheItem)); + + //IgnoreMultiTenancy + IgnoreMultiTenancy = typeof(TCacheItem).IsDefined(typeof(IgnoreMultiTenancyAttribute), true); + + //Configure default cache entry options + DefaultCacheOptions = GetDefaultCacheEntryOptions(); + } + + /// + /// Gets or Creates a cache item with the given key. If no cache item is found for the given key then adds a cache item + /// provided by delegate and returns the provided cache item. + /// + /// The key of cached item to be retrieved from the cache. + /// The factory delegate is used to provide the cache item when no cache item is found for the given . + /// The cache options for the factory delegate. + /// Indicates to throw or hide the exceptions for the distributed cache. + /// This will store the cache in the current unit of work until the end of the current unit of work does not really affect the cache. + /// The for the task. + /// The cache item. + public virtual async Task GetOrCreateAsync( + TCacheKey key, + Func> factory, + Func? optionsFactory = null, + bool? hideErrors = null, + bool considerUow = false, + CancellationToken token = default) + { + token = CancellationTokenProvider.FallbackToProvider(token); + hideErrors ??= DistributedCacheOption.HideErrors; + + TCacheItem? value = null; + + if (!considerUow) + { + try + { + value = await HybridCache.GetOrCreateAsync( + key: NormalizeKey(key), + factory: async cancel => await factory(), + options: optionsFactory?.Invoke(), + tags: null, + cancellationToken: token); + } + catch (Exception ex) + { + if (hideErrors == true) + { + await HandleExceptionAsync(ex); + return null; + } + + throw; + } + + return value; + } + + try + { + using (await SyncSemaphore.LockAsync(token)) + { + if (ShouldConsiderUow(considerUow)) + { + value = GetUnitOfWorkCache().GetOrDefault(key)?.GetUnRemovedValueOrNull(); + if (value != null) + { + return value; + } + } + + var bytes = await DistributedCacheCache.GetAsync(NormalizeKey(key), token); + if (bytes != null) + { + return ResolveSerializer().Deserialize(new ReadOnlySequence(bytes, 0, bytes.Length));; + } + + value = await factory(); + + if (ShouldConsiderUow(considerUow)) + { + var uowCache = GetUnitOfWorkCache(); + if (uowCache.TryGetValue(key, out var item)) + { + item.SetValue(value); + } + else + { + uowCache.Add(key, new UnitOfWorkCacheItem(value)); + } + } + + await SetAsync(key, value, optionsFactory?.Invoke(), hideErrors, considerUow, token); + } + } + catch (Exception ex) + { + if (hideErrors == true) + { + await HandleExceptionAsync(ex); + return null; + } + + throw; + } + + return value; + } + + /// + /// Sets the cache item value for the provided key. + /// + /// The key of cached item to be retrieved from the cache. + /// The cache item value to set in the cache. + /// The cache options for the value. + /// Indicates to throw or hide the exceptions for the distributed cache. + /// This will store the cache in the current unit of work until the end of the current unit of work does not really affect the cache. + /// The for the task. + /// The indicating that the operation is asynchronous. + public virtual async Task SetAsync( + TCacheKey key, + TCacheItem value, + HybridCacheEntryOptions? options = null, + bool? hideErrors = null, + bool considerUow = false, + CancellationToken token = default) + { + async Task SetRealCache() + { + token = CancellationTokenProvider.FallbackToProvider(token); + hideErrors ??= DistributedCacheOption.HideErrors; + + try + { + await HybridCache.SetAsync( + key: NormalizeKey(key), + value: value, + options: options ?? DefaultCacheOptions, + tags: null, + cancellationToken: token + ); + } + catch (Exception ex) + { + if (hideErrors == true) + { + await HandleExceptionAsync(ex); + return; + } + + throw; + } + } + + if (ShouldConsiderUow(considerUow)) + { + var uowCache = GetUnitOfWorkCache(); + if (uowCache.TryGetValue(key, out _)) + { + uowCache[key].SetValue(value); + } + else + { + uowCache.Add(key, new UnitOfWorkCacheItem(value)); + } + + UnitOfWorkManager.Current?.OnCompleted(SetRealCache); + } + else + { + await SetRealCache(); + } + } + + /// + /// Removes the cache item for given key from cache. + /// + /// The key of cached item to be retrieved from the cache. + /// Indicates to throw or hide the exceptions for the distributed cache. + /// This will store the cache in the current unit of work until the end of the current unit of work does not really affect the cache. + /// The for the task. + /// The indicating that the operation is asynchronous. + public virtual async Task RemoveAsync( + TCacheKey key, + bool? hideErrors = null, + bool considerUow = false, + CancellationToken token = default) + { + await RemoveManyAsync(new[] { key }, hideErrors, considerUow, token); + } + + /// + /// Removes the cache items for given keys from cache. + /// + /// The keys of cached items to be retrieved from the cache. + /// Indicates to throw or hide the exceptions for the distributed cache. + /// This will store the cache in the current unit of work until the end of the current unit of work does not really affect the cache. + /// The for the task. + /// The indicating that the operation is asynchronous. + public async Task RemoveManyAsync( + IEnumerable keys, + bool? hideErrors = null, + bool considerUow = false, + CancellationToken token = default) + { + var keyArray = keys.ToArray(); + + async Task RemoveRealCache() + { + hideErrors ??= DistributedCacheOption.HideErrors; + + try + { + await HybridCache.RemoveAsync( + keyArray.Select(NormalizeKey), token); + } + catch (Exception ex) + { + if (hideErrors == true) + { + await HandleExceptionAsync(ex); + return; + } + + throw; + } + } + + if (ShouldConsiderUow(considerUow)) + { + var uowCache = GetUnitOfWorkCache(); + + foreach (var key in keyArray) + { + if (uowCache.TryGetValue(key, out _)) + { + uowCache[key].RemoveValue(); + } + } + + UnitOfWorkManager.Current?.OnCompleted(RemoveRealCache); + } + else + { + await RemoveRealCache(); + } + } + + protected virtual async Task HandleExceptionAsync(Exception ex) + { + Logger.LogException(ex, LogLevel.Warning); + + using (var scope = ServiceScopeFactory.CreateScope()) + { + await scope.ServiceProvider + .GetRequiredService() + .NotifyAsync(new ExceptionNotificationContext(ex, LogLevel.Warning)); + } + } + + protected virtual bool ShouldConsiderUow(bool considerUow) + { + return considerUow && UnitOfWorkManager.Current != null; + } + + protected virtual string GetUnitOfWorkCacheKey() + { + return UowCacheName + CacheName; + } + + protected virtual Dictionary> GetUnitOfWorkCache() + { + if (UnitOfWorkManager.Current == null) + { + throw new AbpException($"There is no active UOW."); + } + + return UnitOfWorkManager.Current.GetOrAddItem(GetUnitOfWorkCacheKey(), + key => new Dictionary>()); + } + + private readonly ConcurrentDictionary _serializersCache = new(); + + protected virtual IHybridCacheSerializer ResolveSerializer() + { + if (_serializersCache.TryGetValue(typeof(TCacheItem), out var serializer)) + { + return serializer.As>(); + } + + serializer = ServiceProvider.GetService>(); + if (serializer is null) + { + var factories = ServiceProvider.GetServices().ToArray(); + Array.Reverse(factories); + foreach (var factory in factories) + { + if (factory.TryCreateSerializer(out var current)) + { + serializer = current; + break; + } + } + } + + if (serializer is null) + { + throw new InvalidOperationException($"No {nameof(IHybridCacheSerializer)} configured for type '{typeof(TCacheItem).Name}'"); + } + + return serializer.As>(); + } +} diff --git a/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCacheJsonSerializer.cs b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCacheJsonSerializer.cs new file mode 100644 index 0000000000..b94d1a2ea2 --- /dev/null +++ b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCacheJsonSerializer.cs @@ -0,0 +1,27 @@ +using System.Buffers; +using System.Text.Json; +using Microsoft.Extensions.Caching.Hybrid; + +namespace Volo.Abp.Caching.Hybrid; + +public class AbpHybridCacheJsonSerializer : IHybridCacheSerializer +{ + protected JsonSerializerOptions JsonSerializerOptions { get; } + + public AbpHybridCacheJsonSerializer(JsonSerializerOptions jsonSerializerOptions) + { + JsonSerializerOptions = jsonSerializerOptions; + } + + public virtual T Deserialize(ReadOnlySequence source) + { + var reader = new Utf8JsonReader(source); + return JsonSerializer.Deserialize(ref reader, JsonSerializerOptions)!; + } + + public virtual void Serialize(T value, IBufferWriter target) + { + using var writer = new Utf8JsonWriter(target); + JsonSerializer.Serialize(writer, value, JsonSerializerOptions); + } +} diff --git a/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCacheJsonSerializerFactory.cs b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCacheJsonSerializerFactory.cs new file mode 100644 index 0000000000..65965ecf87 --- /dev/null +++ b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCacheJsonSerializerFactory.cs @@ -0,0 +1,27 @@ +using Microsoft.Extensions.Caching.Hybrid; +using Microsoft.Extensions.Options; +using Volo.Abp.Json.SystemTextJson; + +namespace Volo.Abp.Caching.Hybrid; + +public class AbpHybridCacheJsonSerializerFactory : IHybridCacheSerializerFactory +{ + protected IOptions Options { get; } + + public AbpHybridCacheJsonSerializerFactory(IOptions options) + { + Options = options; + } + + public bool TryCreateSerializer(out IHybridCacheSerializer? serializer) + { + if (typeof(T) == typeof(string) || typeof(T) == typeof(byte[])) + { + serializer = null; + return false; + } + + serializer = new AbpHybridCacheJsonSerializer(Options.Value.JsonSerializerOptions); + return true; + } +} diff --git a/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCacheOptions.cs b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCacheOptions.cs new file mode 100644 index 0000000000..039a5e3142 --- /dev/null +++ b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/AbpHybridCacheOptions.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using Microsoft.Extensions.Caching.Hybrid; + +namespace Volo.Abp.Caching.Hybrid; + +public class AbpHybridCacheOptions +{ + /// + /// Throw or hide exceptions for the distributed cache. + /// + public bool HideErrors { get; set; } = true; + + /// + /// Cache key prefix. + /// + public string KeyPrefix { get; set; } + + /// + /// Global Cache entry options. + /// + public HybridCacheEntryOptions GlobalHybridCacheEntryOptions { get; set; } + + /// + /// List of all cache configurators. + /// (func argument:Name of cache) + /// + public List> CacheConfigurators { get; set; } //TODO: use a configurator interface instead? + + public AbpHybridCacheOptions() + { + CacheConfigurators = new List>(); + GlobalHybridCacheEntryOptions = new HybridCacheEntryOptions(); + KeyPrefix = ""; + } + + public void ConfigureCache(HybridCacheEntryOptions? options) + { + ConfigureCache(typeof(TCacheItem), options); + } + + public void ConfigureCache(Type cacheItemType, HybridCacheEntryOptions? options) + { + ConfigureCache(CacheNameAttribute.GetCacheName(cacheItemType), options); + } + + public void ConfigureCache(string cacheName, HybridCacheEntryOptions? options) + { + CacheConfigurators.Add(name => cacheName != name ? null : options); + } +} diff --git a/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/IHybridCache.cs b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/IHybridCache.cs new file mode 100644 index 0000000000..4fb61a6e75 --- /dev/null +++ b/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/Hybrid/IHybridCache.cs @@ -0,0 +1,93 @@ +using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using JetBrains.Annotations; +using Microsoft.Extensions.Caching.Hybrid; + +namespace Volo.Abp.Caching.Hybrid; + +/// +/// Represents a hybrid cache of items. +/// +/// The type of the cache item being cached. +public interface IHybridCache : IHybridCache + where TCacheItem : class +{ + IHybridCache InternalCache { get; } +} + +/// +/// Represents a hybrid cache of items. +/// Uses as the key type. +/// +/// The type of cache item being cached. +/// The type of cache key being used. +public interface IHybridCache + where TCacheItem : class +{ + /// + /// Gets or Creates a cache item with the given key. If no cache item is found for the given key then adds a cache item + /// provided by delegate and returns the provided cache item. + /// + /// The key of cached item to be retrieved from the cache. + /// The factory delegate is used to provide the cache item when no cache item is found for the given . + /// The cache options for the factory delegate. + /// Indicates to throw or hide the exceptions for the distributed cache. + /// This will store the cache in the current unit of work until the end of the current unit of work does not really affect the cache. + /// The for the task. + /// The cache item. + Task GetOrCreateAsync( + [NotNull]TCacheKey key, + Func> factory, + Func? optionsFactory = null, + bool? hideErrors = null, + bool considerUow = false, + CancellationToken token = default); + + /// + /// Sets the cache item value for the provided key. + /// + /// The key of cached item to be retrieved from the cache. + /// The cache item value to set in the cache. + /// The cache options for the value. + /// Indicates to throw or hide the exceptions for the distributed cache. + /// This will store the cache in the current unit of work until the end of the current unit of work does not really affect the cache. + /// The for the task. + /// The indicating that the operation is asynchronous. + Task SetAsync( + [NotNull]TCacheKey key, + TCacheItem value, + HybridCacheEntryOptions? options = null, + bool? hideErrors = null, + bool considerUow = false, + CancellationToken token = default); + + /// + /// Removes the cache item for given key from cache. + /// + /// The key of cached item to be retrieved from the cache. + /// Indicates to throw or hide the exceptions for the distributed cache. + /// This will store the cache in the current unit of work until the end of the current unit of work does not really affect the cache. + /// The for the task. + /// The indicating that the operation is asynchronous. + Task RemoveAsync( + [NotNull]TCacheKey key, + bool? hideErrors = null, + bool considerUow = false, + CancellationToken token = default); + + /// + /// Removes the cache items for given keys from cache. + /// + /// The keys of cached items to be retrieved from the cache. + /// Indicates to throw or hide the exceptions for the distributed cache. + /// This will store the cache in the current unit of work until the end of the current unit of work does not really affect the cache. + /// The for the task. + /// The indicating that the operation is asynchronous. + Task RemoveManyAsync( + IEnumerable keys, + bool? hideErrors = null, + bool considerUow = false, + CancellationToken token = default); +} diff --git a/framework/src/Volo.Abp.Castle.Core/Volo.Abp.Castle.Core.csproj b/framework/src/Volo.Abp.Castle.Core/Volo.Abp.Castle.Core.csproj index 7724e0b00e..9a420f1052 100644 --- a/framework/src/Volo.Abp.Castle.Core/Volo.Abp.Castle.Core.csproj +++ b/framework/src/Volo.Abp.Castle.Core/Volo.Abp.Castle.Core.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Castle.Core diff --git a/framework/src/Volo.Abp.Cli.Core/Volo.Abp.Cli.Core.csproj b/framework/src/Volo.Abp.Cli.Core/Volo.Abp.Cli.Core.csproj index 4a9c3f418b..6bd7405de0 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo.Abp.Cli.Core.csproj +++ b/framework/src/Volo.Abp.Cli.Core/Volo.Abp.Cli.Core.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; false false diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlerBase.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlerBase.cs index 8939ef68e5..792c7590f6 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlerBase.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlerBase.cs @@ -85,7 +85,10 @@ public abstract class BundlerBase : IBundler, ITransientDependency { var pathFragments = definition.Source.Split('/').ToList(); var basePath = $"{pathFragments[0]}/{pathFragments[1]}"; - var path = contentRoots.FirstOrDefault(x => x.IndexOf(Path.DirectorySeparatorChar + pathFragments[1] + Path.DirectorySeparatorChar, StringComparison.OrdinalIgnoreCase) > 0); + var path = contentRoots.FirstOrDefault(x => + x.IndexOf(Path.DirectorySeparatorChar + "obj", StringComparison.OrdinalIgnoreCase) == -1 && + x.IndexOf(Path.DirectorySeparatorChar + pathFragments[1] + Path.DirectorySeparatorChar, StringComparison.OrdinalIgnoreCase) > 0); + if (path == null) { throw new AbpException("Not found: " + definition.Source); diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SuiteAppSettingsService.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SuiteAppSettingsService.cs index 54c81d977b..37e19b70f9 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SuiteAppSettingsService.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SuiteAppSettingsService.cs @@ -92,7 +92,7 @@ public class SuiteAppSettingsService : ITransientDependency "volo.abp.suite", version, "tools", - "net8.0", + "net9.0", "any", "appsettings.json" ); diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Utils/CmdHelper.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Utils/CmdHelper.cs index 8c5f40506d..5ccd9034cd 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Utils/CmdHelper.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Utils/CmdHelper.cs @@ -20,10 +20,14 @@ public class CmdHelper : ICmdHelper, ITransientDependency public void Open(string pathOrUrl) { + //directory might contain 'space' character + pathOrUrl = pathOrUrl.EnsureStartsWith('"'); + pathOrUrl = pathOrUrl.EnsureEndsWith('"'); + if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { pathOrUrl = pathOrUrl.Replace("&", "^&"); - Process.Start(new ProcessStartInfo("cmd", $"/c start {pathOrUrl}") { CreateNoWindow = true }); + Process.Start(new ProcessStartInfo("cmd", $"/c start \"\" {pathOrUrl}") { CreateNoWindow = true }); } else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) { diff --git a/framework/src/Volo.Abp.Cli/Volo.Abp.Cli.csproj b/framework/src/Volo.Abp.Cli/Volo.Abp.Cli.csproj index 2bc7af750a..92753dc30d 100644 --- a/framework/src/Volo.Abp.Cli/Volo.Abp.Cli.csproj +++ b/framework/src/Volo.Abp.Cli/Volo.Abp.Cli.csproj @@ -7,7 +7,7 @@ Exe enable Nullable - net8.0 + net9.0 true abp diff --git a/framework/src/Volo.Abp.Core/Volo.Abp.Core.csproj b/framework/src/Volo.Abp.Core/Volo.Abp.Core.csproj index 8804c8868f..edb61d6a21 100644 --- a/framework/src/Volo.Abp.Core/Volo.Abp.Core.csproj +++ b/framework/src/Volo.Abp.Core/Volo.Abp.Core.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Core diff --git a/framework/src/Volo.Abp.Core/Volo/Abp/Http/UrlHelpers.cs b/framework/src/Volo.Abp.Core/Volo/Abp/Http/UrlHelpers.cs index 30e5e81be2..f27fb4c591 100644 --- a/framework/src/Volo.Abp.Core/Volo/Abp/Http/UrlHelpers.cs +++ b/framework/src/Volo.Abp.Core/Volo/Abp/Http/UrlHelpers.cs @@ -6,6 +6,10 @@ public static class UrlHelpers { private const string WildcardSubdomain = "*."; + /// + /// Check if the subdomain is a subdomain of the domain. + /// The Uri must be absolute URI and the scheme, port, and host must be the same. + /// public static bool IsSubdomainOf(string subdomain, string domain) { if (Uri.TryCreate(subdomain, UriKind.Absolute, out var subdomainUri) && @@ -17,6 +21,10 @@ public static class UrlHelpers return false; } + /// + /// Check if the subdomain is a subdomain of the domain. + /// The Uri must be absolute URI and the scheme, port, and host must be the same. + /// public static bool IsSubdomainOf(Uri subdomain, Uri domain) { return subdomain.IsAbsoluteUri diff --git a/framework/src/Volo.Abp.Dapper/Volo.Abp.Dapper.csproj b/framework/src/Volo.Abp.Dapper/Volo.Abp.Dapper.csproj index bb40ed79ce..0fa2dbc96b 100644 --- a/framework/src/Volo.Abp.Dapper/Volo.Abp.Dapper.csproj +++ b/framework/src/Volo.Abp.Dapper/Volo.Abp.Dapper.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.Dapper diff --git a/framework/src/Volo.Abp.Dapr/Volo.Abp.Dapr.csproj b/framework/src/Volo.Abp.Dapr/Volo.Abp.Dapr.csproj index 3d1a6e9532..8be3e36e3a 100644 --- a/framework/src/Volo.Abp.Dapr/Volo.Abp.Dapr.csproj +++ b/framework/src/Volo.Abp.Dapr/Volo.Abp.Dapr.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.Data/Volo.Abp.Data.csproj b/framework/src/Volo.Abp.Data/Volo.Abp.Data.csproj index 015bf1abdc..bcfc0bf60c 100644 --- a/framework/src/Volo.Abp.Data/Volo.Abp.Data.csproj +++ b/framework/src/Volo.Abp.Data/Volo.Abp.Data.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Data diff --git a/framework/src/Volo.Abp.Ddd.Application.Contracts/Volo.Abp.Ddd.Application.Contracts.csproj b/framework/src/Volo.Abp.Ddd.Application.Contracts/Volo.Abp.Ddd.Application.Contracts.csproj index 97a227d304..e037540aa3 100644 --- a/framework/src/Volo.Abp.Ddd.Application.Contracts/Volo.Abp.Ddd.Application.Contracts.csproj +++ b/framework/src/Volo.Abp.Ddd.Application.Contracts/Volo.Abp.Ddd.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Ddd.Application.Contracts diff --git a/framework/src/Volo.Abp.Ddd.Application/Volo.Abp.Ddd.Application.csproj b/framework/src/Volo.Abp.Ddd.Application/Volo.Abp.Ddd.Application.csproj index c60291db76..becc5415f4 100644 --- a/framework/src/Volo.Abp.Ddd.Application/Volo.Abp.Ddd.Application.csproj +++ b/framework/src/Volo.Abp.Ddd.Application/Volo.Abp.Ddd.Application.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Ddd.Application diff --git a/framework/src/Volo.Abp.Ddd.Domain.Shared/Volo.Abp.Ddd.Domain.Shared.csproj b/framework/src/Volo.Abp.Ddd.Domain.Shared/Volo.Abp.Ddd.Domain.Shared.csproj index d4097ad172..ebd9e00588 100644 --- a/framework/src/Volo.Abp.Ddd.Domain.Shared/Volo.Abp.Ddd.Domain.Shared.csproj +++ b/framework/src/Volo.Abp.Ddd.Domain.Shared/Volo.Abp.Ddd.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Ddd.Domain.Shared diff --git a/framework/src/Volo.Abp.Ddd.Domain/Volo.Abp.Ddd.Domain.csproj b/framework/src/Volo.Abp.Ddd.Domain/Volo.Abp.Ddd.Domain.csproj index 692a6e10b2..9a70cb6216 100644 --- a/framework/src/Volo.Abp.Ddd.Domain/Volo.Abp.Ddd.Domain.csproj +++ b/framework/src/Volo.Abp.Ddd.Domain/Volo.Abp.Ddd.Domain.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Ddd.Domain diff --git a/framework/src/Volo.Abp.DistributedLocking.Abstractions/Volo.Abp.DistributedLocking.Abstractions.csproj b/framework/src/Volo.Abp.DistributedLocking.Abstractions/Volo.Abp.DistributedLocking.Abstractions.csproj index 39ed10cf0f..5dba54cc28 100644 --- a/framework/src/Volo.Abp.DistributedLocking.Abstractions/Volo.Abp.DistributedLocking.Abstractions.csproj +++ b/framework/src/Volo.Abp.DistributedLocking.Abstractions/Volo.Abp.DistributedLocking.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.DistributedLocking.Abstractions diff --git a/framework/src/Volo.Abp.DistributedLocking.Dapr/Volo.Abp.DistributedLocking.Dapr.csproj b/framework/src/Volo.Abp.DistributedLocking.Dapr/Volo.Abp.DistributedLocking.Dapr.csproj index 43effe5ad8..30225bab9e 100644 --- a/framework/src/Volo.Abp.DistributedLocking.Dapr/Volo.Abp.DistributedLocking.Dapr.csproj +++ b/framework/src/Volo.Abp.DistributedLocking.Dapr/Volo.Abp.DistributedLocking.Dapr.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.DistributedLocking/Volo.Abp.DistributedLocking.csproj b/framework/src/Volo.Abp.DistributedLocking/Volo.Abp.DistributedLocking.csproj index 545d6556f0..9038217125 100644 --- a/framework/src/Volo.Abp.DistributedLocking/Volo.Abp.DistributedLocking.csproj +++ b/framework/src/Volo.Abp.DistributedLocking/Volo.Abp.DistributedLocking.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.DistributedLocking diff --git a/framework/src/Volo.Abp.Emailing/Volo.Abp.Emailing.csproj b/framework/src/Volo.Abp.Emailing/Volo.Abp.Emailing.csproj index 31bdec53e8..4dceffad65 100644 --- a/framework/src/Volo.Abp.Emailing/Volo.Abp.Emailing.csproj +++ b/framework/src/Volo.Abp.Emailing/Volo.Abp.Emailing.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Emailing diff --git a/framework/src/Volo.Abp.EntityFrameworkCore.MySQL/Volo.Abp.EntityFrameworkCore.MySQL.csproj b/framework/src/Volo.Abp.EntityFrameworkCore.MySQL/Volo.Abp.EntityFrameworkCore.MySQL.csproj index b3d594ba6a..bc8ec71f9a 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore.MySQL/Volo.Abp.EntityFrameworkCore.MySQL.csproj +++ b/framework/src/Volo.Abp.EntityFrameworkCore.MySQL/Volo.Abp.EntityFrameworkCore.MySQL.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.EntityFrameworkCore.MySQL @@ -22,6 +22,7 @@ + diff --git a/framework/src/Volo.Abp.EntityFrameworkCore.Oracle.Devart/Volo.Abp.EntityFrameworkCore.Oracle.Devart.csproj b/framework/src/Volo.Abp.EntityFrameworkCore.Oracle.Devart/Volo.Abp.EntityFrameworkCore.Oracle.Devart.csproj index bb46006ac9..bfe9bea75a 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore.Oracle.Devart/Volo.Abp.EntityFrameworkCore.Oracle.Devart.csproj +++ b/framework/src/Volo.Abp.EntityFrameworkCore.Oracle.Devart/Volo.Abp.EntityFrameworkCore.Oracle.Devart.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.EntityFrameworkCore.Oracle.Devart diff --git a/framework/src/Volo.Abp.EntityFrameworkCore.Oracle/Volo.Abp.EntityFrameworkCore.Oracle.csproj b/framework/src/Volo.Abp.EntityFrameworkCore.Oracle/Volo.Abp.EntityFrameworkCore.Oracle.csproj index 93753e8586..2948ef0cfb 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore.Oracle/Volo.Abp.EntityFrameworkCore.Oracle.csproj +++ b/framework/src/Volo.Abp.EntityFrameworkCore.Oracle/Volo.Abp.EntityFrameworkCore.Oracle.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.EntityFrameworkCore.Oracle diff --git a/framework/src/Volo.Abp.EntityFrameworkCore.PostgreSql/Volo.Abp.EntityFrameworkCore.PostgreSql.csproj b/framework/src/Volo.Abp.EntityFrameworkCore.PostgreSql/Volo.Abp.EntityFrameworkCore.PostgreSql.csproj index 4ddc65c713..382ef142fa 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore.PostgreSql/Volo.Abp.EntityFrameworkCore.PostgreSql.csproj +++ b/framework/src/Volo.Abp.EntityFrameworkCore.PostgreSql/Volo.Abp.EntityFrameworkCore.PostgreSql.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.EntityFrameworkCore.PostgreSql diff --git a/framework/src/Volo.Abp.EntityFrameworkCore.SqlServer/Volo.Abp.EntityFrameworkCore.SqlServer.csproj b/framework/src/Volo.Abp.EntityFrameworkCore.SqlServer/Volo.Abp.EntityFrameworkCore.SqlServer.csproj index cdd1836b67..23a26e9357 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore.SqlServer/Volo.Abp.EntityFrameworkCore.SqlServer.csproj +++ b/framework/src/Volo.Abp.EntityFrameworkCore.SqlServer/Volo.Abp.EntityFrameworkCore.SqlServer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.EntityFrameworkCore.SqlServer diff --git a/framework/src/Volo.Abp.EntityFrameworkCore.Sqlite/Volo.Abp.EntityFrameworkCore.Sqlite.csproj b/framework/src/Volo.Abp.EntityFrameworkCore.Sqlite/Volo.Abp.EntityFrameworkCore.Sqlite.csproj index ad933fc388..ac38af2d18 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore.Sqlite/Volo.Abp.EntityFrameworkCore.Sqlite.csproj +++ b/framework/src/Volo.Abp.EntityFrameworkCore.Sqlite/Volo.Abp.EntityFrameworkCore.Sqlite.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.EntityFrameworkCore.Sqlite diff --git a/framework/src/Volo.Abp.EntityFrameworkCore/Microsoft/Extensions/DependencyInjection/AbpEfCoreModelBuilderExtensions.cs b/framework/src/Volo.Abp.EntityFrameworkCore/Microsoft/Extensions/DependencyInjection/AbpEfCoreModelBuilderExtensions.cs index 19ad9e0267..6cb3f8b508 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore/Microsoft/Extensions/DependencyInjection/AbpEfCoreModelBuilderExtensions.cs +++ b/framework/src/Volo.Abp.EntityFrameworkCore/Microsoft/Extensions/DependencyInjection/AbpEfCoreModelBuilderExtensions.cs @@ -26,13 +26,13 @@ public static class AbpEfCoreModelBuilderExtensions return new SqlBinaryExpression( ExpressionType.Equal, isDeleted, - new SqlConstantExpression(Expression.Constant(false), boolParam.TypeMapping), + new SqlConstantExpression(false, typeof(bool), boolParam.TypeMapping), boolParam.Type, boolParam.TypeMapping); } // empty where sql - return new SqlConstantExpression(Expression.Constant(true), boolParam.TypeMapping); + return new SqlConstantExpression(true, typeof(bool), boolParam.TypeMapping); }); return modelBuilder; @@ -60,7 +60,7 @@ public static class AbpEfCoreModelBuilderExtensions } // empty where sql - return new SqlConstantExpression(Expression.Constant(true), boolParam.TypeMapping); + return new SqlConstantExpression(true, typeof(bool), boolParam.TypeMapping); }); return modelBuilder; diff --git a/framework/src/Volo.Abp.EntityFrameworkCore/Volo.Abp.EntityFrameworkCore.csproj b/framework/src/Volo.Abp.EntityFrameworkCore/Volo.Abp.EntityFrameworkCore.csproj index e1d9e41fa2..1777dfe668 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore/Volo.Abp.EntityFrameworkCore.csproj +++ b/framework/src/Volo.Abp.EntityFrameworkCore/Volo.Abp.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.EntityFrameworkCore diff --git a/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/AbpDbContext.cs b/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/AbpDbContext.cs index c471d89acf..abcdb97a5a 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/AbpDbContext.cs +++ b/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/AbpDbContext.cs @@ -36,6 +36,7 @@ using Volo.Abp.ObjectExtending; using Volo.Abp.Reflection; using Volo.Abp.Timing; using Volo.Abp.Uow; +using Microsoft.EntityFrameworkCore.Diagnostics; namespace Volo.Abp.EntityFrameworkCore; @@ -111,6 +112,12 @@ public abstract class AbpDbContext : DbContext, IAbpEfCoreDbContext, DbContextOptions = options; } + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) + { + optionsBuilder.ConfigureWarnings(c => c.Ignore(RelationalEventId.PendingModelChangesWarning)); + base.OnConfiguring(optionsBuilder); + } + protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); @@ -256,7 +263,10 @@ public abstract class AbpDbContext : DbContext, IAbpEfCoreDbContext, { EntityHistoryHelper.UpdateChangeList(entityChangeList); auditLog!.EntityChanges.AddRange(entityChangeList); - Logger.LogDebug($"Added {entityChangeList.Count} entity changes to the current audit log"); + if (entityChangeList.Count > 0) + { + Logger.LogDebug($"Added {entityChangeList.Count} entity changes to the current audit log"); + } } return result; @@ -620,7 +630,13 @@ public abstract class AbpDbContext : DbContext, IAbpEfCoreDbContext, originalExtraProperties = entry.OriginalValues.GetValue(nameof(IHasExtraProperties.ExtraProperties)); } - entry.Reload(); + //TODO: Reload will throw an exception. Check it when new EF Core versions released. + //entry.Reload(); + + var storeValues = entry.OriginalValues; + entry.CurrentValues.SetValues(storeValues); + entry.OriginalValues.SetValues(storeValues); + entry.State = EntityState.Unchanged; if (entry.Entity is IHasExtraProperties) { @@ -769,6 +785,9 @@ public abstract class AbpDbContext : DbContext, IAbpEfCoreDbContext, return; } + AbpDateTimeValueConverter.Clock = Clock; + AbpNullableDateTimeValueConverter.Clock = Clock; + foreach (var property in mutableEntityType.GetProperties(). Where(property => property.PropertyInfo != null && (property.PropertyInfo.PropertyType == typeof(DateTime) || property.PropertyInfo.PropertyType == typeof(DateTime?)) && @@ -779,8 +798,8 @@ public abstract class AbpDbContext : DbContext, IAbpEfCoreDbContext, .Entity() .Property(property.Name) .HasConversion(property.ClrType == typeof(DateTime) - ? new AbpDateTimeValueConverter(Clock) - : new AbpNullableDateTimeValueConverter(Clock)); + ? new AbpDateTimeValueConverter() + : new AbpNullableDateTimeValueConverter()); } } } diff --git a/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/Modeling/AbpEntityTypeBuilderExtensions.cs b/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/Modeling/AbpEntityTypeBuilderExtensions.cs index 5d002e87fa..cfaee16e6a 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/Modeling/AbpEntityTypeBuilderExtensions.cs +++ b/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/Modeling/AbpEntityTypeBuilderExtensions.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Volo.Abp.Auditing; using Volo.Abp.Data; using Volo.Abp.Domain.Entities; @@ -60,9 +61,11 @@ public static class AbpEntityTypeBuilderExtensions return; } + var type = typeof(ExtraPropertiesValueConverter<>).MakeGenericType(b.Metadata.ClrType); + var extraPropertiesValueConverter = Activator.CreateInstance(type)!.As>(); b.Property(nameof(IHasExtraProperties.ExtraProperties)) .HasColumnName(nameof(IHasExtraProperties.ExtraProperties)) - .HasConversion(new ExtraPropertiesValueConverter(b.Metadata.ClrType)) + .HasConversion(extraPropertiesValueConverter) .Metadata.SetValueComparer(new ExtraPropertyDictionaryValueComparer()); b.TryConfigureObjectExtensions(); diff --git a/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/ValueConverters/AbpDateTimeValueConverter.cs b/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/ValueConverters/AbpDateTimeValueConverter.cs index 702890a0a7..174967cd05 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/ValueConverters/AbpDateTimeValueConverter.cs +++ b/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/ValueConverters/AbpDateTimeValueConverter.cs @@ -1,5 +1,4 @@ using System; -using JetBrains.Annotations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Volo.Abp.Timing; @@ -7,20 +6,26 @@ namespace Volo.Abp.EntityFrameworkCore.ValueConverters; public class AbpDateTimeValueConverter : ValueConverter { - public AbpDateTimeValueConverter(IClock clock, ConverterMappingHints? mappingHints = null) + public static IClock? Clock { get; set; } + + public AbpDateTimeValueConverter(ConverterMappingHints? mappingHints = null) : base( - x => clock.Normalize(x), - x => clock.Normalize(x), mappingHints) + x => Clock!.Normalize(x), + x => Clock!.Normalize(x), + mappingHints) { } } public class AbpNullableDateTimeValueConverter : ValueConverter { - public AbpNullableDateTimeValueConverter(IClock clock, ConverterMappingHints? mappingHints = null) + public static IClock? Clock { get; set; } + + public AbpNullableDateTimeValueConverter(ConverterMappingHints? mappingHints = null) : base( - x => x.HasValue ? clock.Normalize(x.Value) : x, - x => x.HasValue ? clock.Normalize(x.Value) : x, mappingHints) + x => x.HasValue ? Clock!.Normalize(x.Value) : x, + x => x.HasValue ? Clock!.Normalize(x.Value) : x, + mappingHints) { } } diff --git a/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/ValueConverters/ExtraPropertiesValueConverter.cs b/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/ValueConverters/ExtraPropertiesValueConverter.cs index 980d926c3b..a24284356c 100644 --- a/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/ValueConverters/ExtraPropertiesValueConverter.cs +++ b/framework/src/Volo.Abp.EntityFrameworkCore/Volo/Abp/EntityFrameworkCore/ValueConverters/ExtraPropertiesValueConverter.cs @@ -8,22 +8,23 @@ using Volo.Abp.ObjectExtending; namespace Volo.Abp.EntityFrameworkCore.ValueConverters; -public class ExtraPropertiesValueConverter : ValueConverter +public class ExtraPropertiesValueConverter : ValueConverter { - public ExtraPropertiesValueConverter(Type entityType) + public ExtraPropertiesValueConverter() : base( - d => SerializeObject(d, entityType), - s => DeserializeObject(s, entityType)) + d => SerializeObject(d), + s => DeserializeObject(s)) { } public readonly static JsonSerializerOptions SerializeOptions = new JsonSerializerOptions(); - private static string SerializeObject(ExtraPropertyDictionary extraProperties, Type? entityType) + private static string SerializeObject(ExtraPropertyDictionary extraProperties) { var copyDictionary = new Dictionary(extraProperties); + var entityType = typeof(TEntityType); if (entityType != null) { var objectExtension = ObjectExtensionManager.Instance.GetOrNull(entityType); @@ -50,7 +51,7 @@ public class ExtraPropertiesValueConverter : ValueConverter(extraPropertiesAsJson, DeserializeOptions) ?? new ExtraPropertyDictionary(); + var entityType = typeof(TEntityType); if (entityType != null) { var objectExtension = ObjectExtensionManager.Instance.GetOrNull(entityType); diff --git a/framework/src/Volo.Abp.EventBus.Abstractions/Volo.Abp.EventBus.Abstractions.csproj b/framework/src/Volo.Abp.EventBus.Abstractions/Volo.Abp.EventBus.Abstractions.csproj index 829e010b65..a51f699909 100644 --- a/framework/src/Volo.Abp.EventBus.Abstractions/Volo.Abp.EventBus.Abstractions.csproj +++ b/framework/src/Volo.Abp.EventBus.Abstractions/Volo.Abp.EventBus.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.EventBus.Azure/Volo.Abp.EventBus.Azure.csproj b/framework/src/Volo.Abp.EventBus.Azure/Volo.Abp.EventBus.Azure.csproj index fc125a305b..9cb3f6698f 100644 --- a/framework/src/Volo.Abp.EventBus.Azure/Volo.Abp.EventBus.Azure.csproj +++ b/framework/src/Volo.Abp.EventBus.Azure/Volo.Abp.EventBus.Azure.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.EventBus.Azure diff --git a/framework/src/Volo.Abp.EventBus.Dapr/Volo.Abp.EventBus.Dapr.csproj b/framework/src/Volo.Abp.EventBus.Dapr/Volo.Abp.EventBus.Dapr.csproj index b194ef27da..34fe5474c5 100644 --- a/framework/src/Volo.Abp.EventBus.Dapr/Volo.Abp.EventBus.Dapr.csproj +++ b/framework/src/Volo.Abp.EventBus.Dapr/Volo.Abp.EventBus.Dapr.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.EventBus.Kafka/Volo.Abp.EventBus.Kafka.csproj b/framework/src/Volo.Abp.EventBus.Kafka/Volo.Abp.EventBus.Kafka.csproj index d0afbd8565..b833e00d2c 100644 --- a/framework/src/Volo.Abp.EventBus.Kafka/Volo.Abp.EventBus.Kafka.csproj +++ b/framework/src/Volo.Abp.EventBus.Kafka/Volo.Abp.EventBus.Kafka.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.EventBus.RabbitMQ/Volo.Abp.EventBus.RabbitMQ.csproj b/framework/src/Volo.Abp.EventBus.RabbitMQ/Volo.Abp.EventBus.RabbitMQ.csproj index 490d9ff532..73d9d942a9 100644 --- a/framework/src/Volo.Abp.EventBus.RabbitMQ/Volo.Abp.EventBus.RabbitMQ.csproj +++ b/framework/src/Volo.Abp.EventBus.RabbitMQ/Volo.Abp.EventBus.RabbitMQ.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.EventBus.RabbitMQ diff --git a/framework/src/Volo.Abp.EventBus.Rebus/Volo.Abp.EventBus.Rebus.csproj b/framework/src/Volo.Abp.EventBus.Rebus/Volo.Abp.EventBus.Rebus.csproj index e724024b8f..3b6660447f 100644 --- a/framework/src/Volo.Abp.EventBus.Rebus/Volo.Abp.EventBus.Rebus.csproj +++ b/framework/src/Volo.Abp.EventBus.Rebus/Volo.Abp.EventBus.Rebus.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.EventBus.Rebus diff --git a/framework/src/Volo.Abp.EventBus/Volo.Abp.EventBus.csproj b/framework/src/Volo.Abp.EventBus/Volo.Abp.EventBus.csproj index b6d38379f8..2361937a7b 100644 --- a/framework/src/Volo.Abp.EventBus/Volo.Abp.EventBus.csproj +++ b/framework/src/Volo.Abp.EventBus/Volo.Abp.EventBus.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.EventBus diff --git a/framework/src/Volo.Abp.ExceptionHandling/Volo.Abp.ExceptionHandling.csproj b/framework/src/Volo.Abp.ExceptionHandling/Volo.Abp.ExceptionHandling.csproj index 87486ddb8c..d62d661ff0 100644 --- a/framework/src/Volo.Abp.ExceptionHandling/Volo.Abp.ExceptionHandling.csproj +++ b/framework/src/Volo.Abp.ExceptionHandling/Volo.Abp.ExceptionHandling.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable true diff --git a/framework/src/Volo.Abp.Features/Volo.Abp.Features.csproj b/framework/src/Volo.Abp.Features/Volo.Abp.Features.csproj index 47a34c2ed5..efd45ca097 100644 --- a/framework/src/Volo.Abp.Features/Volo.Abp.Features.csproj +++ b/framework/src/Volo.Abp.Features/Volo.Abp.Features.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Features diff --git a/framework/src/Volo.Abp.FluentValidation/Volo.Abp.FluentValidation.csproj b/framework/src/Volo.Abp.FluentValidation/Volo.Abp.FluentValidation.csproj index f7e44a6608..dcb23c008a 100644 --- a/framework/src/Volo.Abp.FluentValidation/Volo.Abp.FluentValidation.csproj +++ b/framework/src/Volo.Abp.FluentValidation/Volo.Abp.FluentValidation.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.FluentValidation diff --git a/framework/src/Volo.Abp.Gdpr.Abstractions/Volo.Abp.Gdpr.Abstractions.csproj b/framework/src/Volo.Abp.Gdpr.Abstractions/Volo.Abp.Gdpr.Abstractions.csproj index 5f497283f6..a59643afaa 100644 --- a/framework/src/Volo.Abp.Gdpr.Abstractions/Volo.Abp.Gdpr.Abstractions.csproj +++ b/framework/src/Volo.Abp.Gdpr.Abstractions/Volo.Abp.Gdpr.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.GlobalFeatures/Volo.Abp.GlobalFeatures.csproj b/framework/src/Volo.Abp.GlobalFeatures/Volo.Abp.GlobalFeatures.csproj index f12a7b4dda..1c5441c8ed 100644 --- a/framework/src/Volo.Abp.GlobalFeatures/Volo.Abp.GlobalFeatures.csproj +++ b/framework/src/Volo.Abp.GlobalFeatures/Volo.Abp.GlobalFeatures.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.GlobalFeatures diff --git a/framework/src/Volo.Abp.Guids/Volo.Abp.Guids.csproj b/framework/src/Volo.Abp.Guids/Volo.Abp.Guids.csproj index 59069ff23d..ef673d2ffd 100644 --- a/framework/src/Volo.Abp.Guids/Volo.Abp.Guids.csproj +++ b/framework/src/Volo.Abp.Guids/Volo.Abp.Guids.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Guids diff --git a/framework/src/Volo.Abp.HangFire/Volo.Abp.HangFire.csproj b/framework/src/Volo.Abp.HangFire/Volo.Abp.HangFire.csproj index 0018ea272d..b939aae76b 100644 --- a/framework/src/Volo.Abp.HangFire/Volo.Abp.HangFire.csproj +++ b/framework/src/Volo.Abp.HangFire/Volo.Abp.HangFire.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.HangFire diff --git a/framework/src/Volo.Abp.Http.Abstractions/Volo.Abp.Http.Abstractions.csproj b/framework/src/Volo.Abp.Http.Abstractions/Volo.Abp.Http.Abstractions.csproj index bd03cbdaa9..a5e3b6e184 100644 --- a/framework/src/Volo.Abp.Http.Abstractions/Volo.Abp.Http.Abstractions.csproj +++ b/framework/src/Volo.Abp.Http.Abstractions/Volo.Abp.Http.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Http.Abstractions diff --git a/framework/src/Volo.Abp.Http.Client.Dapr/Volo.Abp.Http.Client.Dapr.csproj b/framework/src/Volo.Abp.Http.Client.Dapr/Volo.Abp.Http.Client.Dapr.csproj index dd0d1ad085..6f0154d2d1 100644 --- a/framework/src/Volo.Abp.Http.Client.Dapr/Volo.Abp.Http.Client.Dapr.csproj +++ b/framework/src/Volo.Abp.Http.Client.Dapr/Volo.Abp.Http.Client.Dapr.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.Http.Client.IdentityModel.MauiBlazor/Volo.Abp.Http.Client.IdentityModel.MauiBlazor.csproj b/framework/src/Volo.Abp.Http.Client.IdentityModel.MauiBlazor/Volo.Abp.Http.Client.IdentityModel.MauiBlazor.csproj index d5b6561748..716ce034d0 100644 --- a/framework/src/Volo.Abp.Http.Client.IdentityModel.MauiBlazor/Volo.Abp.Http.Client.IdentityModel.MauiBlazor.csproj +++ b/framework/src/Volo.Abp.Http.Client.IdentityModel.MauiBlazor/Volo.Abp.Http.Client.IdentityModel.MauiBlazor.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.Http.Client.IdentityModel.MauiBlazor diff --git a/framework/src/Volo.Abp.Http.Client.IdentityModel.Web/Volo.Abp.Http.Client.IdentityModel.Web.csproj b/framework/src/Volo.Abp.Http.Client.IdentityModel.Web/Volo.Abp.Http.Client.IdentityModel.Web.csproj index d351159d11..1f2dc0661e 100644 --- a/framework/src/Volo.Abp.Http.Client.IdentityModel.Web/Volo.Abp.Http.Client.IdentityModel.Web.csproj +++ b/framework/src/Volo.Abp.Http.Client.IdentityModel.Web/Volo.Abp.Http.Client.IdentityModel.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.Http.Client.IdentityModel.Web diff --git a/framework/src/Volo.Abp.Http.Client.IdentityModel.WebAssembly/Volo.Abp.Http.Client.IdentityModel.WebAssembly.csproj b/framework/src/Volo.Abp.Http.Client.IdentityModel.WebAssembly/Volo.Abp.Http.Client.IdentityModel.WebAssembly.csproj index 986db5eee4..4ae298e948 100644 --- a/framework/src/Volo.Abp.Http.Client.IdentityModel.WebAssembly/Volo.Abp.Http.Client.IdentityModel.WebAssembly.csproj +++ b/framework/src/Volo.Abp.Http.Client.IdentityModel.WebAssembly/Volo.Abp.Http.Client.IdentityModel.WebAssembly.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.Http.Client.IdentityModel.WebAssembly diff --git a/framework/src/Volo.Abp.Http.Client.IdentityModel/Volo.Abp.Http.Client.IdentityModel.csproj b/framework/src/Volo.Abp.Http.Client.IdentityModel/Volo.Abp.Http.Client.IdentityModel.csproj index 4cab945b6f..43b65cfa58 100644 --- a/framework/src/Volo.Abp.Http.Client.IdentityModel/Volo.Abp.Http.Client.IdentityModel.csproj +++ b/framework/src/Volo.Abp.Http.Client.IdentityModel/Volo.Abp.Http.Client.IdentityModel.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Http.Client.IdentityModel diff --git a/framework/src/Volo.Abp.Http.Client.Web/Volo.Abp.Http.Client.Web.csproj b/framework/src/Volo.Abp.Http.Client.Web/Volo.Abp.Http.Client.Web.csproj index e7b0829e4c..63a9f1d607 100644 --- a/framework/src/Volo.Abp.Http.Client.Web/Volo.Abp.Http.Client.Web.csproj +++ b/framework/src/Volo.Abp.Http.Client.Web/Volo.Abp.Http.Client.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.Http.Client.Web diff --git a/framework/src/Volo.Abp.Http.Client/Volo.Abp.Http.Client.csproj b/framework/src/Volo.Abp.Http.Client/Volo.Abp.Http.Client.csproj index a657a49b05..d53187b622 100644 --- a/framework/src/Volo.Abp.Http.Client/Volo.Abp.Http.Client.csproj +++ b/framework/src/Volo.Abp.Http.Client/Volo.Abp.Http.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Http.Client diff --git a/framework/src/Volo.Abp.Http/Volo.Abp.Http.csproj b/framework/src/Volo.Abp.Http/Volo.Abp.Http.csproj index e5fd6e75ed..3514dfa55e 100644 --- a/framework/src/Volo.Abp.Http/Volo.Abp.Http.csproj +++ b/framework/src/Volo.Abp.Http/Volo.Abp.Http.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Http diff --git a/framework/src/Volo.Abp.IdentityModel/Volo.Abp.IdentityModel.csproj b/framework/src/Volo.Abp.IdentityModel/Volo.Abp.IdentityModel.csproj index f958f2d5af..8915614bfe 100644 --- a/framework/src/Volo.Abp.IdentityModel/Volo.Abp.IdentityModel.csproj +++ b/framework/src/Volo.Abp.IdentityModel/Volo.Abp.IdentityModel.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.IdentityModel diff --git a/framework/src/Volo.Abp.Imaging.Abstractions/Volo.Abp.Imaging.Abstractions.csproj b/framework/src/Volo.Abp.Imaging.Abstractions/Volo.Abp.Imaging.Abstractions.csproj index d82fe466a1..3a2c1f6532 100644 --- a/framework/src/Volo.Abp.Imaging.Abstractions/Volo.Abp.Imaging.Abstractions.csproj +++ b/framework/src/Volo.Abp.Imaging.Abstractions/Volo.Abp.Imaging.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Imaging.Abstractions diff --git a/framework/src/Volo.Abp.Imaging.AspNetCore/Volo.Abp.Imaging.AspNetCore.csproj b/framework/src/Volo.Abp.Imaging.AspNetCore/Volo.Abp.Imaging.AspNetCore.csproj index e5b9b88fb9..802585d44a 100644 --- a/framework/src/Volo.Abp.Imaging.AspNetCore/Volo.Abp.Imaging.AspNetCore.csproj +++ b/framework/src/Volo.Abp.Imaging.AspNetCore/Volo.Abp.Imaging.AspNetCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.Imaging.AspNetCore diff --git a/framework/src/Volo.Abp.Imaging.ImageSharp/Volo.Abp.Imaging.ImageSharp.csproj b/framework/src/Volo.Abp.Imaging.ImageSharp/Volo.Abp.Imaging.ImageSharp.csproj index 0987bdd2d3..1ad12f02ea 100644 --- a/framework/src/Volo.Abp.Imaging.ImageSharp/Volo.Abp.Imaging.ImageSharp.csproj +++ b/framework/src/Volo.Abp.Imaging.ImageSharp/Volo.Abp.Imaging.ImageSharp.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.Imaging.ImageSharp diff --git a/framework/src/Volo.Abp.Imaging.MagickNet/Volo.Abp.Imaging.MagickNet.csproj b/framework/src/Volo.Abp.Imaging.MagickNet/Volo.Abp.Imaging.MagickNet.csproj index d3a36d1ba8..63dfd0bcce 100644 --- a/framework/src/Volo.Abp.Imaging.MagickNet/Volo.Abp.Imaging.MagickNet.csproj +++ b/framework/src/Volo.Abp.Imaging.MagickNet/Volo.Abp.Imaging.MagickNet.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Imaging.MagickNet diff --git a/framework/src/Volo.Abp.Imaging.SkiaSharp/Volo.Abp.Imaging.SkiaSharp.csproj b/framework/src/Volo.Abp.Imaging.SkiaSharp/Volo.Abp.Imaging.SkiaSharp.csproj index 857cb0f92f..bca91fe1e5 100644 --- a/framework/src/Volo.Abp.Imaging.SkiaSharp/Volo.Abp.Imaging.SkiaSharp.csproj +++ b/framework/src/Volo.Abp.Imaging.SkiaSharp/Volo.Abp.Imaging.SkiaSharp.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Imaging.SkiaSharp diff --git a/framework/src/Volo.Abp.Json.Abstractions/Volo.Abp.Json.Abstractions.csproj b/framework/src/Volo.Abp.Json.Abstractions/Volo.Abp.Json.Abstractions.csproj index c1519b6756..2e1b4ebd7e 100644 --- a/framework/src/Volo.Abp.Json.Abstractions/Volo.Abp.Json.Abstractions.csproj +++ b/framework/src/Volo.Abp.Json.Abstractions/Volo.Abp.Json.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Json.Abstractions diff --git a/framework/src/Volo.Abp.Json.Newtonsoft/Volo.Abp.Json.Newtonsoft.csproj b/framework/src/Volo.Abp.Json.Newtonsoft/Volo.Abp.Json.Newtonsoft.csproj index 14891c1e8a..2d9cbf22aa 100644 --- a/framework/src/Volo.Abp.Json.Newtonsoft/Volo.Abp.Json.Newtonsoft.csproj +++ b/framework/src/Volo.Abp.Json.Newtonsoft/Volo.Abp.Json.Newtonsoft.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Json.Newtonsoft diff --git a/framework/src/Volo.Abp.Json.SystemTextJson/Volo.Abp.Json.SystemTextJson.csproj b/framework/src/Volo.Abp.Json.SystemTextJson/Volo.Abp.Json.SystemTextJson.csproj index e7adbb75de..15a6e37336 100644 --- a/framework/src/Volo.Abp.Json.SystemTextJson/Volo.Abp.Json.SystemTextJson.csproj +++ b/framework/src/Volo.Abp.Json.SystemTextJson/Volo.Abp.Json.SystemTextJson.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Json.SystemTextJson diff --git a/framework/src/Volo.Abp.Json/Volo.Abp.Json.csproj b/framework/src/Volo.Abp.Json/Volo.Abp.Json.csproj index 16b634861f..7d19142354 100644 --- a/framework/src/Volo.Abp.Json/Volo.Abp.Json.csproj +++ b/framework/src/Volo.Abp.Json/Volo.Abp.Json.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Json diff --git a/framework/src/Volo.Abp.Kafka/Volo.Abp.Kafka.csproj b/framework/src/Volo.Abp.Kafka/Volo.Abp.Kafka.csproj index e8d450d168..80cfb6f87b 100644 --- a/framework/src/Volo.Abp.Kafka/Volo.Abp.Kafka.csproj +++ b/framework/src/Volo.Abp.Kafka/Volo.Abp.Kafka.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.Ldap.Abstractions/Volo.Abp.Ldap.Abstractions.csproj b/framework/src/Volo.Abp.Ldap.Abstractions/Volo.Abp.Ldap.Abstractions.csproj index 63730ef420..11aed678d2 100644 --- a/framework/src/Volo.Abp.Ldap.Abstractions/Volo.Abp.Ldap.Abstractions.csproj +++ b/framework/src/Volo.Abp.Ldap.Abstractions/Volo.Abp.Ldap.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Ldap.Abstractions diff --git a/framework/src/Volo.Abp.Ldap/Volo.Abp.Ldap.csproj b/framework/src/Volo.Abp.Ldap/Volo.Abp.Ldap.csproj index ef49b53ba5..6bed4b75a2 100644 --- a/framework/src/Volo.Abp.Ldap/Volo.Abp.Ldap.csproj +++ b/framework/src/Volo.Abp.Ldap/Volo.Abp.Ldap.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Ldap diff --git a/framework/src/Volo.Abp.Localization.Abstractions/Volo.Abp.Localization.Abstractions.csproj b/framework/src/Volo.Abp.Localization.Abstractions/Volo.Abp.Localization.Abstractions.csproj index 276b7d7942..4a6342248c 100644 --- a/framework/src/Volo.Abp.Localization.Abstractions/Volo.Abp.Localization.Abstractions.csproj +++ b/framework/src/Volo.Abp.Localization.Abstractions/Volo.Abp.Localization.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Localization.Abstractions diff --git a/framework/src/Volo.Abp.Localization/Volo.Abp.Localization.csproj b/framework/src/Volo.Abp.Localization/Volo.Abp.Localization.csproj index 1c7b50b18e..59f7772dc6 100644 --- a/framework/src/Volo.Abp.Localization/Volo.Abp.Localization.csproj +++ b/framework/src/Volo.Abp.Localization/Volo.Abp.Localization.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Localization diff --git a/framework/src/Volo.Abp.MailKit/Volo.Abp.MailKit.csproj b/framework/src/Volo.Abp.MailKit/Volo.Abp.MailKit.csproj index c2d2cc0487..8d760a7e05 100644 --- a/framework/src/Volo.Abp.MailKit/Volo.Abp.MailKit.csproj +++ b/framework/src/Volo.Abp.MailKit/Volo.Abp.MailKit.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.MailKit diff --git a/framework/src/Volo.Abp.Maui.Client/Volo.Abp.Maui.Client.csproj b/framework/src/Volo.Abp.Maui.Client/Volo.Abp.Maui.Client.csproj index 5d6e0042ed..6906836c0a 100644 --- a/framework/src/Volo.Abp.Maui.Client/Volo.Abp.Maui.Client.csproj +++ b/framework/src/Volo.Abp.Maui.Client/Volo.Abp.Maui.Client.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.Maui.Client diff --git a/framework/src/Volo.Abp.MemoryDb/Volo.Abp.MemoryDb.csproj b/framework/src/Volo.Abp.MemoryDb/Volo.Abp.MemoryDb.csproj index 53b689bc8e..c720c3267b 100644 --- a/framework/src/Volo.Abp.MemoryDb/Volo.Abp.MemoryDb.csproj +++ b/framework/src/Volo.Abp.MemoryDb/Volo.Abp.MemoryDb.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.MemoryDb diff --git a/framework/src/Volo.Abp.Minify/Volo.Abp.Minify.csproj b/framework/src/Volo.Abp.Minify/Volo.Abp.Minify.csproj index 8d9adfa7f2..989c887c66 100644 --- a/framework/src/Volo.Abp.Minify/Volo.Abp.Minify.csproj +++ b/framework/src/Volo.Abp.Minify/Volo.Abp.Minify.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Minify diff --git a/framework/src/Volo.Abp.MongoDB/Volo.Abp.MongoDB.csproj b/framework/src/Volo.Abp.MongoDB/Volo.Abp.MongoDB.csproj index 789defab44..de1d337497 100644 --- a/framework/src/Volo.Abp.MongoDB/Volo.Abp.MongoDB.csproj +++ b/framework/src/Volo.Abp.MongoDB/Volo.Abp.MongoDB.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.MongoDB diff --git a/framework/src/Volo.Abp.MultiLingualObjects/Volo.Abp.MultiLingualObjects.csproj b/framework/src/Volo.Abp.MultiLingualObjects/Volo.Abp.MultiLingualObjects.csproj index 37131e54a4..7d292b0766 100644 --- a/framework/src/Volo.Abp.MultiLingualObjects/Volo.Abp.MultiLingualObjects.csproj +++ b/framework/src/Volo.Abp.MultiLingualObjects/Volo.Abp.MultiLingualObjects.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.MultiLingualObject diff --git a/framework/src/Volo.Abp.MultiTenancy.Abstractions/Volo.Abp.MultiTenancy.Abstractions.csproj b/framework/src/Volo.Abp.MultiTenancy.Abstractions/Volo.Abp.MultiTenancy.Abstractions.csproj index e98b18416a..a7cb84118f 100644 --- a/framework/src/Volo.Abp.MultiTenancy.Abstractions/Volo.Abp.MultiTenancy.Abstractions.csproj +++ b/framework/src/Volo.Abp.MultiTenancy.Abstractions/Volo.Abp.MultiTenancy.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.MultiTenancy.Abstractions diff --git a/framework/src/Volo.Abp.MultiTenancy/Volo.Abp.MultiTenancy.csproj b/framework/src/Volo.Abp.MultiTenancy/Volo.Abp.MultiTenancy.csproj index 9e3aa4f4bb..c524649069 100644 --- a/framework/src/Volo.Abp.MultiTenancy/Volo.Abp.MultiTenancy.csproj +++ b/framework/src/Volo.Abp.MultiTenancy/Volo.Abp.MultiTenancy.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.MultiTenancy diff --git a/framework/src/Volo.Abp.ObjectExtending/Volo.Abp.ObjectExtending.csproj b/framework/src/Volo.Abp.ObjectExtending/Volo.Abp.ObjectExtending.csproj index 76dc1c7c64..2c930c7dd2 100644 --- a/framework/src/Volo.Abp.ObjectExtending/Volo.Abp.ObjectExtending.csproj +++ b/framework/src/Volo.Abp.ObjectExtending/Volo.Abp.ObjectExtending.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.ObjectExtending diff --git a/framework/src/Volo.Abp.ObjectMapping/Volo.Abp.ObjectMapping.csproj b/framework/src/Volo.Abp.ObjectMapping/Volo.Abp.ObjectMapping.csproj index d743167ce0..2f8ac48b78 100644 --- a/framework/src/Volo.Abp.ObjectMapping/Volo.Abp.ObjectMapping.csproj +++ b/framework/src/Volo.Abp.ObjectMapping/Volo.Abp.ObjectMapping.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.ObjectMapping diff --git a/framework/src/Volo.Abp.Quartz/Volo.Abp.Quartz.csproj b/framework/src/Volo.Abp.Quartz/Volo.Abp.Quartz.csproj index 93f7b530f9..2379e969be 100644 --- a/framework/src/Volo.Abp.Quartz/Volo.Abp.Quartz.csproj +++ b/framework/src/Volo.Abp.Quartz/Volo.Abp.Quartz.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Quartz diff --git a/framework/src/Volo.Abp.RabbitMQ/Volo.Abp.RabbitMQ.csproj b/framework/src/Volo.Abp.RabbitMQ/Volo.Abp.RabbitMQ.csproj index 751c73f4cc..e77889d5d9 100644 --- a/framework/src/Volo.Abp.RabbitMQ/Volo.Abp.RabbitMQ.csproj +++ b/framework/src/Volo.Abp.RabbitMQ/Volo.Abp.RabbitMQ.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.RabbitMQ diff --git a/framework/src/Volo.Abp.RemoteServices/Volo.Abp.RemoteServices.csproj b/framework/src/Volo.Abp.RemoteServices/Volo.Abp.RemoteServices.csproj index 7b5fdf2289..4d2588c1e4 100644 --- a/framework/src/Volo.Abp.RemoteServices/Volo.Abp.RemoteServices.csproj +++ b/framework/src/Volo.Abp.RemoteServices/Volo.Abp.RemoteServices.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.RemoteServices diff --git a/framework/src/Volo.Abp.Security/Volo.Abp.Security.csproj b/framework/src/Volo.Abp.Security/Volo.Abp.Security.csproj index b7c9945ac3..5ccaf9883f 100644 --- a/framework/src/Volo.Abp.Security/Volo.Abp.Security.csproj +++ b/framework/src/Volo.Abp.Security/Volo.Abp.Security.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Security diff --git a/framework/src/Volo.Abp.Serialization/Volo.Abp.Serialization.csproj b/framework/src/Volo.Abp.Serialization/Volo.Abp.Serialization.csproj index 01499d5a55..685abd437e 100644 --- a/framework/src/Volo.Abp.Serialization/Volo.Abp.Serialization.csproj +++ b/framework/src/Volo.Abp.Serialization/Volo.Abp.Serialization.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Serialization diff --git a/framework/src/Volo.Abp.Settings/Volo.Abp.Settings.csproj b/framework/src/Volo.Abp.Settings/Volo.Abp.Settings.csproj index 8f72b06ec8..aedbde1fd4 100644 --- a/framework/src/Volo.Abp.Settings/Volo.Abp.Settings.csproj +++ b/framework/src/Volo.Abp.Settings/Volo.Abp.Settings.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Settings diff --git a/framework/src/Volo.Abp.Sms.Aliyun/Volo.Abp.Sms.Aliyun.csproj b/framework/src/Volo.Abp.Sms.Aliyun/Volo.Abp.Sms.Aliyun.csproj index 2f3677d5ea..8bacff7744 100644 --- a/framework/src/Volo.Abp.Sms.Aliyun/Volo.Abp.Sms.Aliyun.csproj +++ b/framework/src/Volo.Abp.Sms.Aliyun/Volo.Abp.Sms.Aliyun.csproj @@ -3,7 +3,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Sms.Aliyun diff --git a/framework/src/Volo.Abp.Sms/Volo.Abp.Sms.csproj b/framework/src/Volo.Abp.Sms/Volo.Abp.Sms.csproj index 1f319473c4..68eba5f5a6 100644 --- a/framework/src/Volo.Abp.Sms/Volo.Abp.Sms.csproj +++ b/framework/src/Volo.Abp.Sms/Volo.Abp.Sms.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Sms diff --git a/framework/src/Volo.Abp.Specifications/Volo.Abp.Specifications.csproj b/framework/src/Volo.Abp.Specifications/Volo.Abp.Specifications.csproj index 316b297e88..c88d3905a9 100644 --- a/framework/src/Volo.Abp.Specifications/Volo.Abp.Specifications.csproj +++ b/framework/src/Volo.Abp.Specifications/Volo.Abp.Specifications.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Specifications diff --git a/framework/src/Volo.Abp.Swashbuckle/Volo.Abp.Swashbuckle.csproj b/framework/src/Volo.Abp.Swashbuckle/Volo.Abp.Swashbuckle.csproj index 576ea6c81e..58c2dc3693 100644 --- a/framework/src/Volo.Abp.Swashbuckle/Volo.Abp.Swashbuckle.csproj +++ b/framework/src/Volo.Abp.Swashbuckle/Volo.Abp.Swashbuckle.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 enable Nullable Volo.Abp.Swashbuckle diff --git a/framework/src/Volo.Abp.TestBase/Volo.Abp.TestBase.csproj b/framework/src/Volo.Abp.TestBase/Volo.Abp.TestBase.csproj index 847b82921c..9fb0cffb34 100644 --- a/framework/src/Volo.Abp.TestBase/Volo.Abp.TestBase.csproj +++ b/framework/src/Volo.Abp.TestBase/Volo.Abp.TestBase.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.TestBase diff --git a/framework/src/Volo.Abp.TextTemplating.Core/Volo.Abp.TextTemplating.Core.csproj b/framework/src/Volo.Abp.TextTemplating.Core/Volo.Abp.TextTemplating.Core.csproj index ac6e1d9f06..bb6d88e762 100644 --- a/framework/src/Volo.Abp.TextTemplating.Core/Volo.Abp.TextTemplating.Core.csproj +++ b/framework/src/Volo.Abp.TextTemplating.Core/Volo.Abp.TextTemplating.Core.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.TextTemplating.Razor/Volo.Abp.TextTemplating.Razor.csproj b/framework/src/Volo.Abp.TextTemplating.Razor/Volo.Abp.TextTemplating.Razor.csproj index b5b9f8bb33..bf89fd999b 100644 --- a/framework/src/Volo.Abp.TextTemplating.Razor/Volo.Abp.TextTemplating.Razor.csproj +++ b/framework/src/Volo.Abp.TextTemplating.Razor/Volo.Abp.TextTemplating.Razor.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.TextTemplating.Scriban/Volo.Abp.TextTemplating.Scriban.csproj b/framework/src/Volo.Abp.TextTemplating.Scriban/Volo.Abp.TextTemplating.Scriban.csproj index aa91226b3d..889affb425 100644 --- a/framework/src/Volo.Abp.TextTemplating.Scriban/Volo.Abp.TextTemplating.Scriban.csproj +++ b/framework/src/Volo.Abp.TextTemplating.Scriban/Volo.Abp.TextTemplating.Scriban.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.TextTemplating/Volo.Abp.TextTemplating.csproj b/framework/src/Volo.Abp.TextTemplating/Volo.Abp.TextTemplating.csproj index 85dbd6909e..e030225b87 100644 --- a/framework/src/Volo.Abp.TextTemplating/Volo.Abp.TextTemplating.csproj +++ b/framework/src/Volo.Abp.TextTemplating/Volo.Abp.TextTemplating.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable diff --git a/framework/src/Volo.Abp.Threading/Volo.Abp.Threading.csproj b/framework/src/Volo.Abp.Threading/Volo.Abp.Threading.csproj index 27703bbeaa..1295c3f143 100644 --- a/framework/src/Volo.Abp.Threading/Volo.Abp.Threading.csproj +++ b/framework/src/Volo.Abp.Threading/Volo.Abp.Threading.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Threading diff --git a/framework/src/Volo.Abp.Timing/Volo.Abp.Timing.csproj b/framework/src/Volo.Abp.Timing/Volo.Abp.Timing.csproj index 65b175691e..5cc49b9db1 100644 --- a/framework/src/Volo.Abp.Timing/Volo.Abp.Timing.csproj +++ b/framework/src/Volo.Abp.Timing/Volo.Abp.Timing.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Timing diff --git a/framework/src/Volo.Abp.UI.Navigation/Volo.Abp.UI.Navigation.csproj b/framework/src/Volo.Abp.UI.Navigation/Volo.Abp.UI.Navigation.csproj index a40c3f0ebf..b95dd71be1 100644 --- a/framework/src/Volo.Abp.UI.Navigation/Volo.Abp.UI.Navigation.csproj +++ b/framework/src/Volo.Abp.UI.Navigation/Volo.Abp.UI.Navigation.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.UI.Navigation diff --git a/framework/src/Volo.Abp.UI/Volo.Abp.UI.csproj b/framework/src/Volo.Abp.UI/Volo.Abp.UI.csproj index bfef4ded3a..0ed37529e5 100644 --- a/framework/src/Volo.Abp.UI/Volo.Abp.UI.csproj +++ b/framework/src/Volo.Abp.UI/Volo.Abp.UI.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.UI diff --git a/framework/src/Volo.Abp.Uow/Volo.Abp.Uow.csproj b/framework/src/Volo.Abp.Uow/Volo.Abp.Uow.csproj index cfb32e83d2..946584c73f 100644 --- a/framework/src/Volo.Abp.Uow/Volo.Abp.Uow.csproj +++ b/framework/src/Volo.Abp.Uow/Volo.Abp.Uow.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Uow diff --git a/framework/src/Volo.Abp.Validation.Abstractions/Volo.Abp.Validation.Abstractions.csproj b/framework/src/Volo.Abp.Validation.Abstractions/Volo.Abp.Validation.Abstractions.csproj index 7319b00bd0..808701de61 100644 --- a/framework/src/Volo.Abp.Validation.Abstractions/Volo.Abp.Validation.Abstractions.csproj +++ b/framework/src/Volo.Abp.Validation.Abstractions/Volo.Abp.Validation.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Validation.Abstractions diff --git a/framework/src/Volo.Abp.Validation/Volo.Abp.Validation.csproj b/framework/src/Volo.Abp.Validation/Volo.Abp.Validation.csproj index 0a0ca3bd0f..a2c6b1acc7 100644 --- a/framework/src/Volo.Abp.Validation/Volo.Abp.Validation.csproj +++ b/framework/src/Volo.Abp.Validation/Volo.Abp.Validation.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.Validation diff --git a/framework/src/Volo.Abp.Validation/Volo/Abp/Validation/Localization/es.json b/framework/src/Volo.Abp.Validation/Volo/Abp/Validation/Localization/es.json index 82a7cfca5d..0888457731 100644 --- a/framework/src/Volo.Abp.Validation/Volo/Abp/Validation/Localization/es.json +++ b/framework/src/Volo.Abp.Validation/Volo/Abp/Validation/Localization/es.json @@ -7,7 +7,7 @@ "The {0} field is not a valid e-mail address.": "El campo {0} no es una dirección de e-mail valida.", "The {0} field only accepts files with the following extensions: {1}": "El campo {0} sólo acepta ficheros con la siguientes extensiones: {1}", "The field {0} must be a string or array type with a maximum length of '{1}'.": "El campo {0} debe ser de tipo cadena o lista con una longitud máxima de '{1}'.", - "The field {0} must be a string or array type with a minimum length of '{1}'.": "El campo {0} debe ser de tipo cadena o lista con una longitud máxima de '{1}'.", + "The field {0} must be a string or array type with a minimum length of '{1}'.": "El campo {0} debe ser de tipo cadena o lista con una longitud mínima de '{1}'.", "The {0} field is not a valid phone number.": "El campo {0} no tiene un número de teléfono valido.", "The field {0} must be between {1} and {2}.": "El campo {0} debe estar entre {1} y {2}.", "The field {0} must match the regular expression '{1}'.": "El campo {0} no coincide con el formato solicitado.", diff --git a/framework/src/Volo.Abp.VirtualFileSystem/Volo.Abp.VirtualFileSystem.csproj b/framework/src/Volo.Abp.VirtualFileSystem/Volo.Abp.VirtualFileSystem.csproj index 7f681519a6..caf4c9818b 100644 --- a/framework/src/Volo.Abp.VirtualFileSystem/Volo.Abp.VirtualFileSystem.csproj +++ b/framework/src/Volo.Abp.VirtualFileSystem/Volo.Abp.VirtualFileSystem.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 enable Nullable Volo.Abp.VirtualFileSystem diff --git a/framework/src/Volo.Abp/Volo.Abp.csproj b/framework/src/Volo.Abp/Volo.Abp.csproj index 9057e7ea2d..34e624cc84 100644 --- a/framework/src/Volo.Abp/Volo.Abp.csproj +++ b/framework/src/Volo.Abp/Volo.Abp.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp Volo.Abp $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/framework/test/AbpTestBase/AbpTestBase.csproj b/framework/test/AbpTestBase/AbpTestBase.csproj index cdad2ad3de..04a5bd0fa7 100644 --- a/framework/test/AbpTestBase/AbpTestBase.csproj +++ b/framework/test/AbpTestBase/AbpTestBase.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 AbpTestBase AbpTestBase diff --git a/framework/test/SimpleConsoleDemo/SimpleConsoleDemo.csproj b/framework/test/SimpleConsoleDemo/SimpleConsoleDemo.csproj index 63c108f516..17914d88cd 100644 --- a/framework/test/SimpleConsoleDemo/SimpleConsoleDemo.csproj +++ b/framework/test/SimpleConsoleDemo/SimpleConsoleDemo.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.AspNetCore.Authentication.OAuth.Tests/Volo.Abp.AspNetCore.Authentication.OAuth.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Authentication.OAuth.Tests/Volo.Abp.AspNetCore.Authentication.OAuth.Tests.csproj index 9d0449e93e..f92b3e95d2 100644 --- a/framework/test/Volo.Abp.AspNetCore.Authentication.OAuth.Tests/Volo.Abp.AspNetCore.Authentication.OAuth.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Authentication.OAuth.Tests/Volo.Abp.AspNetCore.Authentication.OAuth.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 latest Volo.Abp.AspNetCore.Authentication.OAuth.Tests Volo.Abp.AspNetCore.Authentication.OAuth.Tests diff --git a/framework/test/Volo.Abp.AspNetCore.MultiTenancy.Tests/Volo.Abp.AspNetCore.MultiTenancy.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.MultiTenancy.Tests/Volo.Abp.AspNetCore.MultiTenancy.Tests.csproj index a35f5526c8..2a946e7d3c 100644 --- a/framework/test/Volo.Abp.AspNetCore.MultiTenancy.Tests/Volo.Abp.AspNetCore.MultiTenancy.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.MultiTenancy.Tests/Volo.Abp.AspNetCore.MultiTenancy.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 Volo.Abp.AspNetCore.MultiTenancy.Tests Volo.Abp.AspNetCore.MultiTenancy.Tests diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.PlugIn/Volo.Abp.AspNetCore.Mvc.PlugIn.csproj b/framework/test/Volo.Abp.AspNetCore.Mvc.PlugIn/Volo.Abp.AspNetCore.Mvc.PlugIn.csproj index f6e5b0888f..6545e9be27 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.PlugIn/Volo.Abp.AspNetCore.Mvc.PlugIn.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.PlugIn/Volo.Abp.AspNetCore.Mvc.PlugIn.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Library true true diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo.Abp.AspNetCore.Mvc.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo.Abp.AspNetCore.Mvc.Tests.csproj index bca9cd4966..ad21822aad 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo.Abp.AspNetCore.Mvc.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo.Abp.AspNetCore.Mvc.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; Volo.Abp.AspNetCore.Mvc.Tests Volo.Abp.AspNetCore.Mvc.Tests diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo/Abp/AspNetCore/Mvc/Program.cs b/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo/Abp/AspNetCore/Mvc/Program.cs index 5b07cac7fd..02f5e9d885 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo/Abp/AspNetCore/Mvc/Program.cs +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo/Abp/AspNetCore/Mvc/Program.cs @@ -26,9 +26,9 @@ await builder.RunAbpModuleAsync(options => if (parentDirectory.Name == "test") { #if DEBUG - plugDllInPath = Path.Combine(parentDirectory.FullName, "Volo.Abp.AspNetCore.Mvc.PlugIn", "bin", "Debug", "net8.0"); + plugDllInPath = Path.Combine(parentDirectory.FullName, "Volo.Abp.AspNetCore.Mvc.PlugIn", "bin", "Debug", "net9.0"); #else - plugDllInPath = Path.Combine(parentDirectory.FullName, "Volo.Abp.AspNetCore.Mvc.PlugIn", "bin", "Release", "net8.0"); + plugDllInPath = Path.Combine(parentDirectory.FullName, "Volo.Abp.AspNetCore.Mvc.PlugIn", "bin", "Release", "net9.0"); #endif break; } diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Tests/Volo.Abp.AspNetCore.Mvc.UI.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Tests/Volo.Abp.AspNetCore.Mvc.UI.Tests.csproj index 2f25176452..7a4ff140b6 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Tests/Volo.Abp.AspNetCore.Mvc.UI.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Tests/Volo.Abp.AspNetCore.Mvc.UI.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; Volo.Abp.AspNetCore.Mvc.UI.Tests Volo.Abp.AspNetCore.Mvc.UI.Tests diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests.csproj index c9c968e75b..c2841b0b26 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.Versioning.Tests/Volo.Abp.AspNetCore.Mvc.Versioning.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Mvc.Versioning.Tests/Volo.Abp.AspNetCore.Mvc.Versioning.Tests.csproj index e16ae0a6ab..151db7f591 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.Versioning.Tests/Volo.Abp.AspNetCore.Mvc.Versioning.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.Versioning.Tests/Volo.Abp.AspNetCore.Mvc.Versioning.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; Volo.Abp.AspNetCore.Mvc.Versioning.Tests Volo.Abp.AspNetCore.Mvc.Versioning.Tests diff --git a/framework/test/Volo.Abp.AspNetCore.Serilog.Tests/Volo.Abp.AspNetCore.Serilog.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Serilog.Tests/Volo.Abp.AspNetCore.Serilog.Tests.csproj index e294d34934..a4b5900e86 100644 --- a/framework/test/Volo.Abp.AspNetCore.Serilog.Tests/Volo.Abp.AspNetCore.Serilog.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Serilog.Tests/Volo.Abp.AspNetCore.Serilog.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 Volo.Abp.AspNetCore.Serilog.Tests Volo.Abp.AspNetCore.Serilog.Tests diff --git a/framework/test/Volo.Abp.AspNetCore.SignalR.Tests/Volo.Abp.AspNetCore.SignalR.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.SignalR.Tests/Volo.Abp.AspNetCore.SignalR.Tests.csproj index 8a1bcfcb9e..7e0a4b4a8e 100644 --- a/framework/test/Volo.Abp.AspNetCore.SignalR.Tests/Volo.Abp.AspNetCore.SignalR.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.SignalR.Tests/Volo.Abp.AspNetCore.SignalR.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.AspNetCore.Tests/Volo.Abp.AspNetCore.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Tests/Volo.Abp.AspNetCore.Tests.csproj index dbef0b6f14..85cfcbcff5 100644 --- a/framework/test/Volo.Abp.AspNetCore.Tests/Volo.Abp.AspNetCore.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Tests/Volo.Abp.AspNetCore.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 Volo.Abp.AspNetCore.Tests Volo.Abp.AspNetCore.Tests true diff --git a/framework/test/Volo.Abp.Auditing.Tests/Volo.Abp.Auditing.Tests.csproj b/framework/test/Volo.Abp.Auditing.Tests/Volo.Abp.Auditing.Tests.csproj index 5ff57d9dee..802598c0cf 100644 --- a/framework/test/Volo.Abp.Auditing.Tests/Volo.Abp.Auditing.Tests.csproj +++ b/framework/test/Volo.Abp.Auditing.Tests/Volo.Abp.Auditing.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 Volo.Abp.Auditing.Tests Volo.Abp.Auditing.Tests true diff --git a/framework/test/Volo.Abp.Authorization.Tests/Volo.Abp.Authorization.Tests.csproj b/framework/test/Volo.Abp.Authorization.Tests/Volo.Abp.Authorization.Tests.csproj index 7be6b11e40..5490ddee45 100644 --- a/framework/test/Volo.Abp.Authorization.Tests/Volo.Abp.Authorization.Tests.csproj +++ b/framework/test/Volo.Abp.Authorization.Tests/Volo.Abp.Authorization.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 Volo.Abp.Authorization.Tests Volo.Abp.Authorization.Tests true diff --git a/framework/test/Volo.Abp.AutoMapper.Tests/Volo.Abp.AutoMapper.Tests.csproj b/framework/test/Volo.Abp.AutoMapper.Tests/Volo.Abp.AutoMapper.Tests.csproj index 2d56e8d72e..8dc0fda9df 100644 --- a/framework/test/Volo.Abp.AutoMapper.Tests/Volo.Abp.AutoMapper.Tests.csproj +++ b/framework/test/Volo.Abp.AutoMapper.Tests/Volo.Abp.AutoMapper.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 Volo.Abp.AutoMapper.Tests Volo.Abp.AutoMapper.Tests diff --git a/framework/test/Volo.Abp.Autofac.Tests/Volo.Abp.Autofac.Tests.csproj b/framework/test/Volo.Abp.Autofac.Tests/Volo.Abp.Autofac.Tests.csproj index 680f2bec99..1770ef9c9f 100644 --- a/framework/test/Volo.Abp.Autofac.Tests/Volo.Abp.Autofac.Tests.csproj +++ b/framework/test/Volo.Abp.Autofac.Tests/Volo.Abp.Autofac.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 Volo.Abp.Autofac.Tests Volo.Abp.Autofac.Tests true diff --git a/framework/test/Volo.Abp.BackgroundJobs.Tests/Volo.Abp.BackgroundJobs.Tests.csproj b/framework/test/Volo.Abp.BackgroundJobs.Tests/Volo.Abp.BackgroundJobs.Tests.csproj index c3757cf194..718032877b 100644 --- a/framework/test/Volo.Abp.BackgroundJobs.Tests/Volo.Abp.BackgroundJobs.Tests.csproj +++ b/framework/test/Volo.Abp.BackgroundJobs.Tests/Volo.Abp.BackgroundJobs.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 Volo.Abp.BackgroundJobs.Tests Volo.Abp.BackgroundJobs.Tests diff --git a/framework/test/Volo.Abp.BlobStoring.Aliyun.Tests/Volo.Abp.BlobStoring.Aliyun.Tests.csproj b/framework/test/Volo.Abp.BlobStoring.Aliyun.Tests/Volo.Abp.BlobStoring.Aliyun.Tests.csproj index ed8d5d3ae2..1cbe9ecce0 100644 --- a/framework/test/Volo.Abp.BlobStoring.Aliyun.Tests/Volo.Abp.BlobStoring.Aliyun.Tests.csproj +++ b/framework/test/Volo.Abp.BlobStoring.Aliyun.Tests/Volo.Abp.BlobStoring.Aliyun.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 9f0d2c00-80c1-435b-bfab-2c39c8249091 diff --git a/framework/test/Volo.Abp.BlobStoring.Aws.Tests/Volo.Abp.BlobStoring.Aws.Tests.csproj b/framework/test/Volo.Abp.BlobStoring.Aws.Tests/Volo.Abp.BlobStoring.Aws.Tests.csproj index 232c2d8be3..5075e404ef 100644 --- a/framework/test/Volo.Abp.BlobStoring.Aws.Tests/Volo.Abp.BlobStoring.Aws.Tests.csproj +++ b/framework/test/Volo.Abp.BlobStoring.Aws.Tests/Volo.Abp.BlobStoring.Aws.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 9f0d2c00-80c1-435b-bfab-2c39c8249091 diff --git a/framework/test/Volo.Abp.BlobStoring.Azure.Tests/Volo.Abp.BlobStoring.Azure.Tests.csproj b/framework/test/Volo.Abp.BlobStoring.Azure.Tests/Volo.Abp.BlobStoring.Azure.Tests.csproj index cff3db9f5e..dd9766531f 100644 --- a/framework/test/Volo.Abp.BlobStoring.Azure.Tests/Volo.Abp.BlobStoring.Azure.Tests.csproj +++ b/framework/test/Volo.Abp.BlobStoring.Azure.Tests/Volo.Abp.BlobStoring.Azure.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 9f0d2c00-80c1-435b-bfab-2c39c8249091 diff --git a/framework/test/Volo.Abp.BlobStoring.FileSystem.Tests/Volo.Abp.BlobStoring.FileSystem.Tests.csproj b/framework/test/Volo.Abp.BlobStoring.FileSystem.Tests/Volo.Abp.BlobStoring.FileSystem.Tests.csproj index 82d972f9d5..50af1926bc 100644 --- a/framework/test/Volo.Abp.BlobStoring.FileSystem.Tests/Volo.Abp.BlobStoring.FileSystem.Tests.csproj +++ b/framework/test/Volo.Abp.BlobStoring.FileSystem.Tests/Volo.Abp.BlobStoring.FileSystem.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.BlobStoring.Google.Tests/Volo.Abp.BlobStoring.Google.Tests.csproj b/framework/test/Volo.Abp.BlobStoring.Google.Tests/Volo.Abp.BlobStoring.Google.Tests.csproj index a36e26fade..457ef379c0 100644 --- a/framework/test/Volo.Abp.BlobStoring.Google.Tests/Volo.Abp.BlobStoring.Google.Tests.csproj +++ b/framework/test/Volo.Abp.BlobStoring.Google.Tests/Volo.Abp.BlobStoring.Google.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 9f0d2c00-80c1-435b-bfab-2c39c8249091 diff --git a/framework/test/Volo.Abp.BlobStoring.Minio.Tests/Volo.Abp.BlobStoring.Minio.Tests.csproj b/framework/test/Volo.Abp.BlobStoring.Minio.Tests/Volo.Abp.BlobStoring.Minio.Tests.csproj index 9f14818831..2685fc02d2 100644 --- a/framework/test/Volo.Abp.BlobStoring.Minio.Tests/Volo.Abp.BlobStoring.Minio.Tests.csproj +++ b/framework/test/Volo.Abp.BlobStoring.Minio.Tests/Volo.Abp.BlobStoring.Minio.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 9f0d2c00-80c1-435b-bfab-2c39c8249091 diff --git a/framework/test/Volo.Abp.BlobStoring.Tests/Volo.Abp.BlobStoring.Tests.csproj b/framework/test/Volo.Abp.BlobStoring.Tests/Volo.Abp.BlobStoring.Tests.csproj index f1fd5bdd99..f452f34036 100644 --- a/framework/test/Volo.Abp.BlobStoring.Tests/Volo.Abp.BlobStoring.Tests.csproj +++ b/framework/test/Volo.Abp.BlobStoring.Tests/Volo.Abp.BlobStoring.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Caching.StackExchangeRedis.Tests/Volo.Abp.Caching.StackExchangeRedis.Tests.csproj b/framework/test/Volo.Abp.Caching.StackExchangeRedis.Tests/Volo.Abp.Caching.StackExchangeRedis.Tests.csproj index 69387ccf92..b4a6062e45 100644 --- a/framework/test/Volo.Abp.Caching.StackExchangeRedis.Tests/Volo.Abp.Caching.StackExchangeRedis.Tests.csproj +++ b/framework/test/Volo.Abp.Caching.StackExchangeRedis.Tests/Volo.Abp.Caching.StackExchangeRedis.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Caching.Tests/Volo.Abp.Caching.Tests.csproj b/framework/test/Volo.Abp.Caching.Tests/Volo.Abp.Caching.Tests.csproj index 0defb82f07..f249887f5e 100644 --- a/framework/test/Volo.Abp.Caching.Tests/Volo.Abp.Caching.Tests.csproj +++ b/framework/test/Volo.Abp.Caching.Tests/Volo.Abp.Caching.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 Volo.Abp.Caching.Tests Volo.Abp.Caching.Tests diff --git a/framework/test/Volo.Abp.Caching.Tests/Volo/Abp/Caching/AbpCachingTestModule.cs b/framework/test/Volo.Abp.Caching.Tests/Volo/Abp/Caching/AbpCachingTestModule.cs index b45cded03c..21f39bdc77 100644 --- a/framework/test/Volo.Abp.Caching.Tests/Volo/Abp/Caching/AbpCachingTestModule.cs +++ b/framework/test/Volo.Abp.Caching.Tests/Volo/Abp/Caching/AbpCachingTestModule.cs @@ -1,7 +1,9 @@ using Microsoft.Extensions.Caching.Distributed; using System; +using Microsoft.Extensions.Caching.Hybrid; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; +using Volo.Abp.Caching.Hybrid; using Volo.Abp.Modularity; namespace Volo.Abp.Caching; @@ -29,6 +31,29 @@ public class AbpCachingTestModule : AbpModule option.GlobalCacheEntryOptions.SetSlidingExpiration(TimeSpan.FromMinutes(20)); }); + Configure(option => + { + option.CacheConfigurators.Add(cacheName => + { + if (cacheName == CacheNameAttribute.GetCacheName(typeof(Sail.Testing.Caching.PersonCacheItem))) + { + return new HybridCacheEntryOptions() + { + Expiration = TimeSpan.FromMinutes(10), + LocalCacheExpiration = TimeSpan.FromMinutes(5) + }; + } + + return null; + }); + + option.GlobalHybridCacheEntryOptions = new HybridCacheEntryOptions() + { + Expiration = TimeSpan.FromMinutes(20), + LocalCacheExpiration = TimeSpan.FromMinutes(10) + }; + }); + context.Services.Replace(ServiceDescriptor.Singleton()); } } diff --git a/framework/test/Volo.Abp.Caching.Tests/Volo/Abp/Caching/HybridCache_Tests.cs b/framework/test/Volo.Abp.Caching.Tests/Volo/Abp/Caching/HybridCache_Tests.cs new file mode 100644 index 0000000000..04d66903f7 --- /dev/null +++ b/framework/test/Volo.Abp.Caching.Tests/Volo/Abp/Caching/HybridCache_Tests.cs @@ -0,0 +1,519 @@ +using System; +using System.Threading.Tasks; +using Shouldly; +using Volo.Abp.Caching.Hybrid; +using Volo.Abp.Testing; +using Volo.Abp.Uow; +using Xunit; + +namespace Volo.Abp.Caching; + +public class HybridCache_Tests : AbpIntegratedTest +{ + [Fact] + public async Task Should_GetOrCreate_Set_And_Remove_Cache_Items() + { + var personCache = GetRequiredService>(); + + var cacheKey = Guid.NewGuid().ToString(); + + //GetOrCreateAsync + var cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem("john nash"))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe("john nash"); + + //SetAsync + await personCache.SetAsync(cacheKey, new PersonCacheItem("baris")); + + //GetOrCreateAsync + cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem("john nash"))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe("baris"); + + //RemoveAsync + await personCache.RemoveAsync(cacheKey); + + //GetOrCreateAsync + cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem("lucas"))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe("lucas"); + } + + [Fact] + public async Task GetOrCreateAsync() + { + var personCache = GetRequiredService>(); + + var cacheKey = Guid.NewGuid().ToString(); + const string personName = "john nash"; + + //Will execute the factory method to create the cache item + + bool factoryExecuted = false; + + var cacheItem = await personCache.GetOrCreateAsync(cacheKey, + () => + { + factoryExecuted = true; + return Task.FromResult(new PersonCacheItem(personName)); + }); + + factoryExecuted.ShouldBeTrue(); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe(personName); + + //This time, it will not execute the factory + + factoryExecuted = false; + + cacheItem = await personCache.GetOrCreateAsync(cacheKey, + () => + { + factoryExecuted = true; + return Task.FromResult(new PersonCacheItem(personName)); + }); + + factoryExecuted.ShouldBeFalse(); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe(personName); + } + + [Fact] + public async Task SameClassName_But_DiffNamespace_Should_Not_Use_Same_Cache() + { + var personCache = GetRequiredService>(); + var otherPersonCache = GetRequiredService>(); + + var cacheKey = Guid.NewGuid().ToString(); + const string personName = "john nash"; + + var cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem(personName))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe(personName); + var cacheItem1 = await otherPersonCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new Sail.Testing.Caching.PersonCacheItem(personName))); + cacheItem1.ShouldNotBeNull(); + cacheItem1.Name.ShouldBe(personName); + + await personCache.RemoveAsync(cacheKey); + + cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem(personName + "1"))); + cacheItem1 = await otherPersonCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new Sail.Testing.Caching.PersonCacheItem(personName + "1"))); + + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe(personName + "1"); + + cacheItem1.ShouldNotBeNull(); + cacheItem1.Name.ShouldBe(personName); + } + + [Fact] + public async Task Should_Set_Get_And_Remove_Cache_Items_With_Integer_Type_CacheKey() + { + var personCache = GetRequiredService>(); + + var cacheKey = 42; + const string personName = "john nash"; + + //GetOrCreateAsync + var cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem(personName))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe(personName); + + //SetAsync + await personCache.SetAsync(cacheKey, new PersonCacheItem("baris")); + + //GetOrCreateAsync + cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem(personName))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe("baris"); + + //RemoveAsync + await personCache.RemoveAsync(cacheKey); + + //GetOrCreateAsync + cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem("lucas"))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe("lucas"); + } + + [Fact] + public async Task GetOrAddAsync_With_Integer_Type_CacheKey() + { + var personCache = GetRequiredService>(); + + var cacheKey = 42; + const string personName = "john nash"; + + //Will execute the factory method to create the cache item + + bool factoryExecuted = false; + + var cacheItem = await personCache.GetOrCreateAsync(cacheKey, + () => + { + factoryExecuted = true; + return Task.FromResult(new PersonCacheItem(personName)); + }); + + factoryExecuted.ShouldBeTrue(); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe(personName); + + //This time, it will not execute the factory + + factoryExecuted = false; + + cacheItem = await personCache.GetOrCreateAsync(cacheKey, + () => + { + factoryExecuted = true; + return Task.FromResult(new PersonCacheItem(personName)); + }); + + factoryExecuted.ShouldBeFalse(); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe(personName); + } + + [Fact] + public async Task SameClassName_But_DiffNamespace_Should_Not_Use_Same_Cache_With_Integer_CacheKey() + { + var personCache = GetRequiredService>(); + var otherPersonCache = GetRequiredService>(); + + var cacheKey = 42; + const string personName = "john nash"; + + var cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem(personName))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe(personName); + var cacheItem1 = await otherPersonCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new Sail.Testing.Caching.PersonCacheItem(personName))); + cacheItem1.ShouldNotBeNull(); + cacheItem1.Name.ShouldBe(personName); + + await personCache.RemoveAsync(cacheKey); + + cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem(personName + "1"))); + cacheItem1 = await otherPersonCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new Sail.Testing.Caching.PersonCacheItem(personName + "1"))); + + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe(personName + "1"); + + cacheItem1.ShouldNotBeNull(); + cacheItem1.Name.ShouldBe(personName); + } + + [Fact] + public async Task Should_Set_Get_And_Remove_Cache_Items_With_Object_Type_CacheKey() + { + var personCache = GetRequiredService>(); + + var cacheKey = new ComplexObjectAsCacheKey { Name = "DummyData", Age = 42 }; + const string personName = "john nash"; + + //GetOrCreateAsync + var cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem(personName))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe(personName); + + //SetAsync + await personCache.SetAsync(cacheKey, new PersonCacheItem("baris")); + + //GetOrCreateAsync + cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem(personName))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe("baris"); + + //RemoveAsync + await personCache.RemoveAsync(cacheKey); + + //GetOrCreateAsync + cacheItem = await personCache.GetOrCreateAsync(cacheKey, () => Task.FromResult(new PersonCacheItem("lucas"))); + cacheItem.ShouldNotBeNull(); + cacheItem.Name.ShouldBe("lucas"); + } + + [Fact] + public async Task Should_Set_Get_And_Remove_Cache_Items_For_Same_Object_Type_With_Different_CacheKeys() + { + var personCache = GetRequiredService>(); + + var cache1Key = new ComplexObjectAsCacheKey { Name = "John", Age = 42 }; + var cache2Key = new ComplexObjectAsCacheKey { Name = "Jenny", Age = 24 }; + const string personName = "john nash"; + + //GetOrCreateAsync + var cacheItem1 = await personCache.GetOrCreateAsync(cache1Key, () => Task.FromResult(new PersonCacheItem(personName))); + var cacheItem2 = await personCache.GetOrCreateAsync(cache2Key, () => Task.FromResult(new PersonCacheItem(personName))); + cacheItem1.ShouldNotBeNull(); + cacheItem1.Name.ShouldBe(personName); + cacheItem2.ShouldNotBeNull(); + cacheItem2.Name.ShouldBe(personName); + + //SetAsync + cacheItem1 = new PersonCacheItem("baris"); + cacheItem2 = new PersonCacheItem("jack"); + await personCache.SetAsync(cache1Key, cacheItem1); + await personCache.SetAsync(cache2Key, cacheItem2); + + //GetOrCreateAsync + cacheItem1 = await personCache.GetOrCreateAsync(cache1Key, () => Task.FromResult(new PersonCacheItem(personName))); + cacheItem2 = await personCache.GetOrCreateAsync(cache2Key, () => Task.FromResult(new PersonCacheItem(personName))); + cacheItem1.ShouldNotBeNull(); + cacheItem1.Name.ShouldBe("baris"); + cacheItem2.ShouldNotBeNull(); + cacheItem2.Name.ShouldBe("jack"); + + //Remove + await personCache.RemoveAsync(cache1Key); + await personCache.RemoveAsync(cache2Key); + + //Get (not exists since removed) + cacheItem1 = await personCache.GetOrCreateAsync(cache1Key, () => Task.FromResult(new PersonCacheItem("lucas"))); + cacheItem2 = await personCache.GetOrCreateAsync(cache2Key, () => Task.FromResult(new PersonCacheItem("peter"))); + cacheItem1.ShouldNotBeNull(); + cacheItem1.Name.ShouldBe("lucas"); + cacheItem2.ShouldNotBeNull(); + cacheItem2.Name.ShouldBe("peter"); + } + + [Fact] + public async Task Cache_Should_Only_Available_In_Uow_For_GetOrCreateAsync() + { + const string key = "testkey"; + + using (var uow = GetRequiredService().Begin()) + { + var personCache = GetRequiredService>(); + + var cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john")), considerUow: true); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + + await personCache.SetAsync(key, new PersonCacheItem("lucas"), considerUow: true); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john2")), considerUow: true); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("lucas"); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john3")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john3"); + + uow.OnCompleted(async () => + { + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john4")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("lucas"); + }); + + await uow.CompleteAsync(); + } + } + + [Fact] + public async Task Cache_Should_Rollback_With_Uow_For_GetOrCreateAsync() + { + const string key = "testkey"; + var personCache = GetRequiredService>(); + + var cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + + using (var uow = GetRequiredService().Begin()) + { + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john2")), considerUow: true); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + + await personCache.SetAsync(key, new PersonCacheItem("john3"), considerUow: true); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john4")), considerUow: true); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john3"); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john5")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + } + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john6")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + } + + [Fact] + public async Task Cache_Should_Only_Available_In_Uow_For_SetAsync() + { + const string key = "testkey"; + + using (var uow = GetRequiredService().Begin()) + { + var personCache = GetRequiredService>(); + + await personCache.SetAsync(key, new PersonCacheItem("john"), considerUow: true); + + var cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john2")), considerUow: true); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john3")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john3"); + + uow.OnCompleted(async () => + { + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john4")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + }); + + await uow.CompleteAsync(); + } + } + + [Fact] + public async Task Cache_Should_Rollback_With_Uow_For_SetAsync() + { + const string key = "testkey"; + var personCache = GetRequiredService>(); + + var cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + + using (var uow = GetRequiredService().Begin()) + { + await personCache.SetAsync(key, new PersonCacheItem("john2"), considerUow: true); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john3")), considerUow: true); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john2"); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john4")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + } + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john5")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + } + + [Fact] + public async Task Cache_Should_Only_Available_In_Uow_For_RemoveAsync() + { + const string key = "testkey"; + + using (var uow = GetRequiredService().Begin()) + { + var personCache = GetRequiredService>(); + + await personCache.SetAsync(key, new PersonCacheItem("john"), considerUow: true); + + var cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john2")), considerUow: true); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + + await personCache.RemoveAsync(key, considerUow: true); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john3")), considerUow: true); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john3"); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john4")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john4"); + + uow.OnCompleted(async () => + { + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john5")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john3"); + }); + + await uow.CompleteAsync(); + } + } + + public async Task Cache_Should_Rollback_With_Uow_For_RemoveAsync() + { + const string key = "testkey"; + var personCache = GetRequiredService>(); + + var cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + + using (var uow = GetRequiredService().Begin()) + { + await personCache.SetAsync(key, new PersonCacheItem("john2"), considerUow: true); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john")), considerUow: true); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john2"); + + await personCache.RemoveAsync(key, considerUow: true); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john3")), considerUow: true); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john3")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + } + + cacheValue = await personCache.GetOrCreateAsync(key, () => Task.FromResult(new PersonCacheItem("john")), considerUow: false); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + } + + [Fact] + public async Task Should_Remove_Multiple_Items_Async() + { + var testkey = "testkey"; + var testkey2 = "testkey2"; + var testkey3 = new[] { testkey, testkey2 }; + + var personCache = GetRequiredService>(); + + var cacheValue = await personCache.GetOrCreateAsync(testkey, () => Task.FromResult(new PersonCacheItem("john"))); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john"); + + cacheValue = await personCache.GetOrCreateAsync(testkey2, () => Task.FromResult(new PersonCacheItem("jack"))); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("jack"); + + await personCache.RemoveManyAsync(testkey3); + + cacheValue = await personCache.GetOrCreateAsync(testkey, () => Task.FromResult(new PersonCacheItem("john2"))); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("john2"); + + cacheValue = await personCache.GetOrCreateAsync(testkey2, () => Task.FromResult(new PersonCacheItem("jack2"))); + cacheValue.ShouldNotBeNull(); + cacheValue.Name.ShouldBe("jack2"); + } + + [Fact] + public async Task Should_Get_Same_Cache_Set_When_Resolve_With_Or_Without_Key() + { + var cache1 = GetRequiredService>(); + var cache2 = GetRequiredService>(); + + cache1.InternalCache.ShouldBe(cache2); + + await cache1.SetAsync("john", new PersonCacheItem("john")); + + var item1 = await cache1.GetOrCreateAsync("john", () => Task.FromResult(new PersonCacheItem("john2"))); + item1.ShouldNotBeNull(); + item1.Name.ShouldBe("john"); + + var item2 = await cache1.GetOrCreateAsync("john", () => Task.FromResult(new PersonCacheItem("john3"))); + item2.ShouldNotBeNull(); + item2.Name.ShouldBe("john"); + } +} diff --git a/framework/test/Volo.Abp.Castle.Core.Tests/Volo.Abp.Castle.Core.Tests.csproj b/framework/test/Volo.Abp.Castle.Core.Tests/Volo.Abp.Castle.Core.Tests.csproj index a7379d185e..0e657614ed 100644 --- a/framework/test/Volo.Abp.Castle.Core.Tests/Volo.Abp.Castle.Core.Tests.csproj +++ b/framework/test/Volo.Abp.Castle.Core.Tests/Volo.Abp.Castle.Core.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Cli.Core.Tests/Volo.Abp.Cli.Core.Tests.csproj b/framework/test/Volo.Abp.Cli.Core.Tests/Volo.Abp.Cli.Core.Tests.csproj index 7751376511..d5dea43adf 100644 --- a/framework/test/Volo.Abp.Cli.Core.Tests/Volo.Abp.Cli.Core.Tests.csproj +++ b/framework/test/Volo.Abp.Cli.Core.Tests/Volo.Abp.Cli.Core.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Core.Tests/Volo.Abp.Core.Tests.csproj b/framework/test/Volo.Abp.Core.Tests/Volo.Abp.Core.Tests.csproj index dfc0fd3da0..81061016a8 100644 --- a/framework/test/Volo.Abp.Core.Tests/Volo.Abp.Core.Tests.csproj +++ b/framework/test/Volo.Abp.Core.Tests/Volo.Abp.Core.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Dapper.Tests/Volo.Abp.Dapper.Tests.csproj b/framework/test/Volo.Abp.Dapper.Tests/Volo.Abp.Dapper.Tests.csproj index c04f5dc194..039a8b870b 100644 --- a/framework/test/Volo.Abp.Dapper.Tests/Volo.Abp.Dapper.Tests.csproj +++ b/framework/test/Volo.Abp.Dapper.Tests/Volo.Abp.Dapper.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Data.Tests/Volo.Abp.Data.Tests.csproj b/framework/test/Volo.Abp.Data.Tests/Volo.Abp.Data.Tests.csproj index f1a2551864..63bceec44a 100644 --- a/framework/test/Volo.Abp.Data.Tests/Volo.Abp.Data.Tests.csproj +++ b/framework/test/Volo.Abp.Data.Tests/Volo.Abp.Data.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Ddd.Tests/Volo.Abp.Ddd.Tests.csproj b/framework/test/Volo.Abp.Ddd.Tests/Volo.Abp.Ddd.Tests.csproj index bbfbb21265..d0d73c0212 100644 --- a/framework/test/Volo.Abp.Ddd.Tests/Volo.Abp.Ddd.Tests.csproj +++ b/framework/test/Volo.Abp.Ddd.Tests/Volo.Abp.Ddd.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.DistributedLocking.Abstractions.Tests/Volo.Abp.DistributedLocking.Abstractions.Tests.csproj b/framework/test/Volo.Abp.DistributedLocking.Abstractions.Tests/Volo.Abp.DistributedLocking.Abstractions.Tests.csproj index de36c22cf5..59d87e6315 100644 --- a/framework/test/Volo.Abp.DistributedLocking.Abstractions.Tests/Volo.Abp.DistributedLocking.Abstractions.Tests.csproj +++ b/framework/test/Volo.Abp.DistributedLocking.Abstractions.Tests/Volo.Abp.DistributedLocking.Abstractions.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 true diff --git a/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj b/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj index 71b4d48c66..e94aae9cd5 100644 --- a/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj +++ b/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.EntityFrameworkCore.Tests.SecondContext/Volo.Abp.EntityFrameworkCore.Tests.SecondContext.csproj b/framework/test/Volo.Abp.EntityFrameworkCore.Tests.SecondContext/Volo.Abp.EntityFrameworkCore.Tests.SecondContext.csproj index e9c28a4d3d..c9fdfffc12 100644 --- a/framework/test/Volo.Abp.EntityFrameworkCore.Tests.SecondContext/Volo.Abp.EntityFrameworkCore.Tests.SecondContext.csproj +++ b/framework/test/Volo.Abp.EntityFrameworkCore.Tests.SecondContext/Volo.Abp.EntityFrameworkCore.Tests.SecondContext.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; true true diff --git a/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo.Abp.EntityFrameworkCore.Tests.csproj b/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo.Abp.EntityFrameworkCore.Tests.csproj index 6642e42caf..8e819bbd1c 100644 --- a/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo.Abp.EntityFrameworkCore.Tests.csproj +++ b/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo.Abp.EntityFrameworkCore.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo/Abp/EntityFrameworkCore/AbpEntityFrameworkCoreTestModule.cs b/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo/Abp/EntityFrameworkCore/AbpEntityFrameworkCoreTestModule.cs index a13aea2945..e75af9a556 100644 --- a/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo/Abp/EntityFrameworkCore/AbpEntityFrameworkCoreTestModule.cs +++ b/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo/Abp/EntityFrameworkCore/AbpEntityFrameworkCoreTestModule.cs @@ -80,7 +80,6 @@ public class AbpEntityFrameworkCoreTestModule : AbpModule public override void OnPreApplicationInitialization(ApplicationInitializationContext context) { context.ServiceProvider.GetRequiredService().Database.Migrate(); - using (var scope = context.ServiceProvider.CreateScope()) { var categoryRepository = scope.ServiceProvider.GetRequiredService>(); diff --git a/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo/Abp/EntityFrameworkCore/ValueConverters/EFCore_DateTimeKindTests.cs b/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo/Abp/EntityFrameworkCore/ValueConverters/EFCore_DateTimeKindTests.cs index 24b8081d8e..9cb1c003ba 100644 --- a/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo/Abp/EntityFrameworkCore/ValueConverters/EFCore_DateTimeKindTests.cs +++ b/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo/Abp/EntityFrameworkCore/ValueConverters/EFCore_DateTimeKindTests.cs @@ -11,7 +11,7 @@ namespace Volo.Abp.EntityFrameworkCore.ValueConverters; public abstract class EFCore_DateTimeKindTests : DateTimeKind_Tests { - [Fact] + [Fact(Skip = "https://github.com/dotnet/efcore/issues/34760")] public async Task DateTime_Kind_Should_Be_Normalized_In_View_Query_Test() { var personName = "bob lee"; @@ -37,6 +37,7 @@ public abstract class EFCore_DateTimeKindTests : DateTimeKind_Tests - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.ExceptionHandling.Tests/Volo.Abp.ExceptionHandling.Tests.csproj b/framework/test/Volo.Abp.ExceptionHandling.Tests/Volo.Abp.ExceptionHandling.Tests.csproj index 0c56c7190c..7e05f96701 100644 --- a/framework/test/Volo.Abp.ExceptionHandling.Tests/Volo.Abp.ExceptionHandling.Tests.csproj +++ b/framework/test/Volo.Abp.ExceptionHandling.Tests/Volo.Abp.ExceptionHandling.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Features.Tests/Volo.Abp.Features.Tests.csproj b/framework/test/Volo.Abp.Features.Tests/Volo.Abp.Features.Tests.csproj index 80b750f618..55b773bc91 100644 --- a/framework/test/Volo.Abp.Features.Tests/Volo.Abp.Features.Tests.csproj +++ b/framework/test/Volo.Abp.Features.Tests/Volo.Abp.Features.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.FluentValidation.Tests/Volo.Abp.FluentValidation.Tests.csproj b/framework/test/Volo.Abp.FluentValidation.Tests/Volo.Abp.FluentValidation.Tests.csproj index 62603ef3a6..75e1ddc169 100644 --- a/framework/test/Volo.Abp.FluentValidation.Tests/Volo.Abp.FluentValidation.Tests.csproj +++ b/framework/test/Volo.Abp.FluentValidation.Tests/Volo.Abp.FluentValidation.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.GlobalFeatures.Tests/Volo.Abp.GlobalFeatures.Tests.csproj b/framework/test/Volo.Abp.GlobalFeatures.Tests/Volo.Abp.GlobalFeatures.Tests.csproj index 23e6ebfa3d..43f9fd638f 100644 --- a/framework/test/Volo.Abp.GlobalFeatures.Tests/Volo.Abp.GlobalFeatures.Tests.csproj +++ b/framework/test/Volo.Abp.GlobalFeatures.Tests/Volo.Abp.GlobalFeatures.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Http.Client.IdentityModel.Web.Tests/Volo.Abp.Http.Client.IdentityModel.Web.Tests.csproj b/framework/test/Volo.Abp.Http.Client.IdentityModel.Web.Tests/Volo.Abp.Http.Client.IdentityModel.Web.Tests.csproj index 2046533f87..ffa03ba7a6 100644 --- a/framework/test/Volo.Abp.Http.Client.IdentityModel.Web.Tests/Volo.Abp.Http.Client.IdentityModel.Web.Tests.csproj +++ b/framework/test/Volo.Abp.Http.Client.IdentityModel.Web.Tests/Volo.Abp.Http.Client.IdentityModel.Web.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Http.Client.Tests/Volo.Abp.Http.Client.Tests.csproj b/framework/test/Volo.Abp.Http.Client.Tests/Volo.Abp.Http.Client.Tests.csproj index 4afd08a8c8..0c0c086083 100644 --- a/framework/test/Volo.Abp.Http.Client.Tests/Volo.Abp.Http.Client.Tests.csproj +++ b/framework/test/Volo.Abp.Http.Client.Tests/Volo.Abp.Http.Client.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Http.Tests/Volo.Abp.Http.Tests.csproj b/framework/test/Volo.Abp.Http.Tests/Volo.Abp.Http.Tests.csproj index f697edc3f5..9ccebb3dbc 100644 --- a/framework/test/Volo.Abp.Http.Tests/Volo.Abp.Http.Tests.csproj +++ b/framework/test/Volo.Abp.Http.Tests/Volo.Abp.Http.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.IdentityModel.Tests/Volo.Abp.IdentityModel.Tests.csproj b/framework/test/Volo.Abp.IdentityModel.Tests/Volo.Abp.IdentityModel.Tests.csproj index ad31038b1d..ddf17d5b46 100644 --- a/framework/test/Volo.Abp.IdentityModel.Tests/Volo.Abp.IdentityModel.Tests.csproj +++ b/framework/test/Volo.Abp.IdentityModel.Tests/Volo.Abp.IdentityModel.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Imaging.Abstractions.Tests/Volo.Abp.Imaging.Abstractions.Tests.csproj b/framework/test/Volo.Abp.Imaging.Abstractions.Tests/Volo.Abp.Imaging.Abstractions.Tests.csproj index a0445e1c72..302dcbdfaa 100644 --- a/framework/test/Volo.Abp.Imaging.Abstractions.Tests/Volo.Abp.Imaging.Abstractions.Tests.csproj +++ b/framework/test/Volo.Abp.Imaging.Abstractions.Tests/Volo.Abp.Imaging.Abstractions.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Imaging.AspNetCore.Tests/Volo.Abp.Imaging.AspNetCore.Tests.csproj b/framework/test/Volo.Abp.Imaging.AspNetCore.Tests/Volo.Abp.Imaging.AspNetCore.Tests.csproj index 9efc1e789d..f7f6093622 100644 --- a/framework/test/Volo.Abp.Imaging.AspNetCore.Tests/Volo.Abp.Imaging.AspNetCore.Tests.csproj +++ b/framework/test/Volo.Abp.Imaging.AspNetCore.Tests/Volo.Abp.Imaging.AspNetCore.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Imaging.ImageSharp.Tests/Volo.Abp.Imaging.ImageSharp.Tests.csproj b/framework/test/Volo.Abp.Imaging.ImageSharp.Tests/Volo.Abp.Imaging.ImageSharp.Tests.csproj index b61ef43582..bc7a5c6341 100644 --- a/framework/test/Volo.Abp.Imaging.ImageSharp.Tests/Volo.Abp.Imaging.ImageSharp.Tests.csproj +++ b/framework/test/Volo.Abp.Imaging.ImageSharp.Tests/Volo.Abp.Imaging.ImageSharp.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Imaging.MagickNet.Tests/Volo.Abp.Imaging.MagickNet.Tests.csproj b/framework/test/Volo.Abp.Imaging.MagickNet.Tests/Volo.Abp.Imaging.MagickNet.Tests.csproj index 747bc6f7b9..5229f382af 100644 --- a/framework/test/Volo.Abp.Imaging.MagickNet.Tests/Volo.Abp.Imaging.MagickNet.Tests.csproj +++ b/framework/test/Volo.Abp.Imaging.MagickNet.Tests/Volo.Abp.Imaging.MagickNet.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Imaging.SkiaSharp.Tests/Volo.Abp.Imaging.SkiaSharp.Tests.csproj b/framework/test/Volo.Abp.Imaging.SkiaSharp.Tests/Volo.Abp.Imaging.SkiaSharp.Tests.csproj index 3272fc325a..5d0b2d1bc6 100644 --- a/framework/test/Volo.Abp.Imaging.SkiaSharp.Tests/Volo.Abp.Imaging.SkiaSharp.Tests.csproj +++ b/framework/test/Volo.Abp.Imaging.SkiaSharp.Tests/Volo.Abp.Imaging.SkiaSharp.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Json.Tests/Volo.Abp.Json.Tests.csproj b/framework/test/Volo.Abp.Json.Tests/Volo.Abp.Json.Tests.csproj index bba73b272f..458deff71c 100644 --- a/framework/test/Volo.Abp.Json.Tests/Volo.Abp.Json.Tests.csproj +++ b/framework/test/Volo.Abp.Json.Tests/Volo.Abp.Json.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Ldap.Tests/Volo.Abp.Ldap.Tests.csproj b/framework/test/Volo.Abp.Ldap.Tests/Volo.Abp.Ldap.Tests.csproj index 2ff378dd5b..a4ccb3b226 100644 --- a/framework/test/Volo.Abp.Ldap.Tests/Volo.Abp.Ldap.Tests.csproj +++ b/framework/test/Volo.Abp.Ldap.Tests/Volo.Abp.Ldap.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Localization.Tests/Volo.Abp.Localization.Tests.csproj b/framework/test/Volo.Abp.Localization.Tests/Volo.Abp.Localization.Tests.csproj index b3cb64d141..a51d355555 100644 --- a/framework/test/Volo.Abp.Localization.Tests/Volo.Abp.Localization.Tests.csproj +++ b/framework/test/Volo.Abp.Localization.Tests/Volo.Abp.Localization.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.MailKit.Tests/Volo.Abp.MailKit.Tests.csproj b/framework/test/Volo.Abp.MailKit.Tests/Volo.Abp.MailKit.Tests.csproj index 3e9c389745..a9270400ee 100644 --- a/framework/test/Volo.Abp.MailKit.Tests/Volo.Abp.MailKit.Tests.csproj +++ b/framework/test/Volo.Abp.MailKit.Tests/Volo.Abp.MailKit.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.MemoryDb.Tests/Volo.Abp.MemoryDb.Tests.csproj b/framework/test/Volo.Abp.MemoryDb.Tests/Volo.Abp.MemoryDb.Tests.csproj index 2544a6303f..f8d2feb9b0 100644 --- a/framework/test/Volo.Abp.MemoryDb.Tests/Volo.Abp.MemoryDb.Tests.csproj +++ b/framework/test/Volo.Abp.MemoryDb.Tests/Volo.Abp.MemoryDb.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Minify.Tests/Volo.Abp.Minify.Tests.csproj b/framework/test/Volo.Abp.Minify.Tests/Volo.Abp.Minify.Tests.csproj index 0c8ec44f1d..646ba5c75c 100644 --- a/framework/test/Volo.Abp.Minify.Tests/Volo.Abp.Minify.Tests.csproj +++ b/framework/test/Volo.Abp.Minify.Tests/Volo.Abp.Minify.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.MongoDB.Tests.SecondContext/Volo.Abp.MongoDB.Tests.SecondContext.csproj b/framework/test/Volo.Abp.MongoDB.Tests.SecondContext/Volo.Abp.MongoDB.Tests.SecondContext.csproj index 5682bb07e6..cd769f6f2e 100644 --- a/framework/test/Volo.Abp.MongoDB.Tests.SecondContext/Volo.Abp.MongoDB.Tests.SecondContext.csproj +++ b/framework/test/Volo.Abp.MongoDB.Tests.SecondContext/Volo.Abp.MongoDB.Tests.SecondContext.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; true true diff --git a/framework/test/Volo.Abp.MongoDB.Tests/Volo.Abp.MongoDB.Tests.csproj b/framework/test/Volo.Abp.MongoDB.Tests/Volo.Abp.MongoDB.Tests.csproj index e36c148b05..ae688f1640 100644 --- a/framework/test/Volo.Abp.MongoDB.Tests/Volo.Abp.MongoDB.Tests.csproj +++ b/framework/test/Volo.Abp.MongoDB.Tests/Volo.Abp.MongoDB.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.MultiLingualObjects.Tests/Volo.Abp.MultiLingualObjects.Tests.csproj b/framework/test/Volo.Abp.MultiLingualObjects.Tests/Volo.Abp.MultiLingualObjects.Tests.csproj index acf78feb9f..656113d1c5 100644 --- a/framework/test/Volo.Abp.MultiLingualObjects.Tests/Volo.Abp.MultiLingualObjects.Tests.csproj +++ b/framework/test/Volo.Abp.MultiLingualObjects.Tests/Volo.Abp.MultiLingualObjects.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable diff --git a/framework/test/Volo.Abp.MultiTenancy.Tests/Volo.Abp.MultiTenancy.Tests.csproj b/framework/test/Volo.Abp.MultiTenancy.Tests/Volo.Abp.MultiTenancy.Tests.csproj index df7bd56e35..0ca67847dd 100644 --- a/framework/test/Volo.Abp.MultiTenancy.Tests/Volo.Abp.MultiTenancy.Tests.csproj +++ b/framework/test/Volo.Abp.MultiTenancy.Tests/Volo.Abp.MultiTenancy.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.ObjectExtending.Tests/Volo.Abp.ObjectExtending.Tests.csproj b/framework/test/Volo.Abp.ObjectExtending.Tests/Volo.Abp.ObjectExtending.Tests.csproj index b8c9de1a28..f5793043c3 100644 --- a/framework/test/Volo.Abp.ObjectExtending.Tests/Volo.Abp.ObjectExtending.Tests.csproj +++ b/framework/test/Volo.Abp.ObjectExtending.Tests/Volo.Abp.ObjectExtending.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.ObjectMapping.Tests/Volo.Abp.ObjectMapping.Tests.csproj b/framework/test/Volo.Abp.ObjectMapping.Tests/Volo.Abp.ObjectMapping.Tests.csproj index 78e2faef67..ca98151b9e 100644 --- a/framework/test/Volo.Abp.ObjectMapping.Tests/Volo.Abp.ObjectMapping.Tests.csproj +++ b/framework/test/Volo.Abp.ObjectMapping.Tests/Volo.Abp.ObjectMapping.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.RemoteServices.Tests/Volo.Abp.RemoteServices.Tests.csproj b/framework/test/Volo.Abp.RemoteServices.Tests/Volo.Abp.RemoteServices.Tests.csproj index 45236b1241..d13d1545bf 100644 --- a/framework/test/Volo.Abp.RemoteServices.Tests/Volo.Abp.RemoteServices.Tests.csproj +++ b/framework/test/Volo.Abp.RemoteServices.Tests/Volo.Abp.RemoteServices.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Security.Tests/Volo.Abp.Security.Tests.csproj b/framework/test/Volo.Abp.Security.Tests/Volo.Abp.Security.Tests.csproj index 2672978f72..8faa9d22ef 100644 --- a/framework/test/Volo.Abp.Security.Tests/Volo.Abp.Security.Tests.csproj +++ b/framework/test/Volo.Abp.Security.Tests/Volo.Abp.Security.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Serialization.Tests/Volo.Abp.Serialization.Tests.csproj b/framework/test/Volo.Abp.Serialization.Tests/Volo.Abp.Serialization.Tests.csproj index 2a288ec31d..34da8cb6d0 100644 --- a/framework/test/Volo.Abp.Serialization.Tests/Volo.Abp.Serialization.Tests.csproj +++ b/framework/test/Volo.Abp.Serialization.Tests/Volo.Abp.Serialization.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Settings.Tests/Volo.Abp.Settings.Tests.csproj b/framework/test/Volo.Abp.Settings.Tests/Volo.Abp.Settings.Tests.csproj index c96aed4ae4..83045d9b1d 100644 --- a/framework/test/Volo.Abp.Settings.Tests/Volo.Abp.Settings.Tests.csproj +++ b/framework/test/Volo.Abp.Settings.Tests/Volo.Abp.Settings.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Sms.Aliyun.Tests/Volo.Abp.Sms.Aliyun.Tests.csproj b/framework/test/Volo.Abp.Sms.Aliyun.Tests/Volo.Abp.Sms.Aliyun.Tests.csproj index b69fbe3191..9382d8f925 100644 --- a/framework/test/Volo.Abp.Sms.Aliyun.Tests/Volo.Abp.Sms.Aliyun.Tests.csproj +++ b/framework/test/Volo.Abp.Sms.Aliyun.Tests/Volo.Abp.Sms.Aliyun.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 9f0d2c00-80c1-435b-bfab-2c39c8249091 diff --git a/framework/test/Volo.Abp.Specifications.Tests/Volo.Abp.Specifications.Tests.csproj b/framework/test/Volo.Abp.Specifications.Tests/Volo.Abp.Specifications.Tests.csproj index 4f8b44e447..87728d2c93 100644 --- a/framework/test/Volo.Abp.Specifications.Tests/Volo.Abp.Specifications.Tests.csproj +++ b/framework/test/Volo.Abp.Specifications.Tests/Volo.Abp.Specifications.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.TestApp.Tests/Volo.Abp.TestApp.Tests.csproj b/framework/test/Volo.Abp.TestApp.Tests/Volo.Abp.TestApp.Tests.csproj index 1cb2ab1e5e..d39e1a441b 100644 --- a/framework/test/Volo.Abp.TestApp.Tests/Volo.Abp.TestApp.Tests.csproj +++ b/framework/test/Volo.Abp.TestApp.Tests/Volo.Abp.TestApp.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.TestApp/Volo.Abp.TestApp.csproj b/framework/test/Volo.Abp.TestApp/Volo.Abp.TestApp.csproj index 4737a1e906..c70e5e5f99 100644 --- a/framework/test/Volo.Abp.TestApp/Volo.Abp.TestApp.csproj +++ b/framework/test/Volo.Abp.TestApp/Volo.Abp.TestApp.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 true diff --git a/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo.Abp.TextTemplating.Razor.Tests.csproj b/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo.Abp.TextTemplating.Razor.Tests.csproj index ee718f907f..1818c632af 100644 --- a/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo.Abp.TextTemplating.Razor.Tests.csproj +++ b/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo.Abp.TextTemplating.Razor.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo.Abp.TextTemplating.Scriban.Tests.csproj b/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo.Abp.TextTemplating.Scriban.Tests.csproj index f5a363b229..6865f367f3 100644 --- a/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo.Abp.TextTemplating.Scriban.Tests.csproj +++ b/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo.Abp.TextTemplating.Scriban.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.TextTemplating.Tests/Volo.Abp.TextTemplating.Tests.csproj b/framework/test/Volo.Abp.TextTemplating.Tests/Volo.Abp.TextTemplating.Tests.csproj index 03784c1eaf..1c2efdfd4e 100644 --- a/framework/test/Volo.Abp.TextTemplating.Tests/Volo.Abp.TextTemplating.Tests.csproj +++ b/framework/test/Volo.Abp.TextTemplating.Tests/Volo.Abp.TextTemplating.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Threading.Tests/Volo.Abp.Threading.Tests.csproj b/framework/test/Volo.Abp.Threading.Tests/Volo.Abp.Threading.Tests.csproj index 160b9b1fe7..63248e811e 100644 --- a/framework/test/Volo.Abp.Threading.Tests/Volo.Abp.Threading.Tests.csproj +++ b/framework/test/Volo.Abp.Threading.Tests/Volo.Abp.Threading.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.UI.Navigation.Tests/Volo.Abp.UI.Navigation.Tests.csproj b/framework/test/Volo.Abp.UI.Navigation.Tests/Volo.Abp.UI.Navigation.Tests.csproj index ceef63feed..4f4a48039d 100644 --- a/framework/test/Volo.Abp.UI.Navigation.Tests/Volo.Abp.UI.Navigation.Tests.csproj +++ b/framework/test/Volo.Abp.UI.Navigation.Tests/Volo.Abp.UI.Navigation.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Uow.Tests/Volo.Abp.Uow.Tests.csproj b/framework/test/Volo.Abp.Uow.Tests/Volo.Abp.Uow.Tests.csproj index 39b2b90a93..61344699f2 100644 --- a/framework/test/Volo.Abp.Uow.Tests/Volo.Abp.Uow.Tests.csproj +++ b/framework/test/Volo.Abp.Uow.Tests/Volo.Abp.Uow.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.Validation.Tests/Volo.Abp.Validation.Tests.csproj b/framework/test/Volo.Abp.Validation.Tests/Volo.Abp.Validation.Tests.csproj index 36112ef7d8..1969b6b6ce 100644 --- a/framework/test/Volo.Abp.Validation.Tests/Volo.Abp.Validation.Tests.csproj +++ b/framework/test/Volo.Abp.Validation.Tests/Volo.Abp.Validation.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/framework/test/Volo.Abp.VirtualFileSystem.Tests/Volo.Abp.VirtualFileSystem.Tests.csproj b/framework/test/Volo.Abp.VirtualFileSystem.Tests/Volo.Abp.VirtualFileSystem.Tests.csproj index 052650b5a8..9217473910 100644 --- a/framework/test/Volo.Abp.VirtualFileSystem.Tests/Volo.Abp.VirtualFileSystem.Tests.csproj +++ b/framework/test/Volo.Abp.VirtualFileSystem.Tests/Volo.Abp.VirtualFileSystem.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 true diff --git a/global.json b/global.json index 391ba3c2a3..83d8871ef2 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100", + "version": "9.0.100-rc.1.24452.12", "rollForward": "latestFeature" } } diff --git a/latest-versions.json b/latest-versions.json index f505ff8abd..0eff05a891 100644 --- a/latest-versions.json +++ b/latest-versions.json @@ -1,6 +1,6 @@ [ { - "version": "8.3.0", + "version": "8.3.1", "releaseDate": "", "type": "stable", "message": "" diff --git a/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.csproj b/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.csproj index 67e5aeaf95..f8275b0e45 100644 --- a/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.csproj +++ b/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.Account.Application.Contracts Volo.Abp.Account.Application.Contracts true diff --git a/modules/account/src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.csproj b/modules/account/src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.csproj index e43314c3d5..e32c705afb 100644 --- a/modules/account/src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.csproj +++ b/modules/account/src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Account.Application Volo.Abp.Account.Application true diff --git a/modules/account/src/Volo.Abp.Account.Blazor/Volo.Abp.Account.Blazor.csproj b/modules/account/src/Volo.Abp.Account.Blazor/Volo.Abp.Account.Blazor.csproj index dbf838fd44..0eaa3cd978 100644 --- a/modules/account/src/Volo.Abp.Account.Blazor/Volo.Abp.Account.Blazor.csproj +++ b/modules/account/src/Volo.Abp.Account.Blazor/Volo.Abp.Account.Blazor.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Account.Blazor diff --git a/modules/account/src/Volo.Abp.Account.HttpApi.Client/Volo.Abp.Account.HttpApi.Client.csproj b/modules/account/src/Volo.Abp.Account.HttpApi.Client/Volo.Abp.Account.HttpApi.Client.csproj index ee3f00333f..7b808a3da9 100644 --- a/modules/account/src/Volo.Abp.Account.HttpApi.Client/Volo.Abp.Account.HttpApi.Client.csproj +++ b/modules/account/src/Volo.Abp.Account.HttpApi.Client/Volo.Abp.Account.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.Account.HttpApi.Client Volo.Abp.Account.HttpApi.Client diff --git a/modules/account/src/Volo.Abp.Account.HttpApi/Volo.Abp.Account.HttpApi.csproj b/modules/account/src/Volo.Abp.Account.HttpApi/Volo.Abp.Account.HttpApi.csproj index a79380a7a0..fe90e00d1c 100644 --- a/modules/account/src/Volo.Abp.Account.HttpApi/Volo.Abp.Account.HttpApi.csproj +++ b/modules/account/src/Volo.Abp.Account.HttpApi/Volo.Abp.Account.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Account.HttpApi Volo.Abp.Account.HttpApi diff --git a/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj b/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj index 284925acd8..8ae730d20c 100644 --- a/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj +++ b/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/account/src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.csproj b/modules/account/src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.csproj index 7e7136d247..e4235dbd94 100644 --- a/modules/account/src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.csproj +++ b/modules/account/src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Account.Web.IdentityServer Volo.Abp.Account.Web.IdentityServer true diff --git a/modules/account/src/Volo.Abp.Account.Web.OpenIddict/Volo.Abp.Account.Web.OpenIddict.csproj b/modules/account/src/Volo.Abp.Account.Web.OpenIddict/Volo.Abp.Account.Web.OpenIddict.csproj index 21d270b8d8..3346a628e1 100644 --- a/modules/account/src/Volo.Abp.Account.Web.OpenIddict/Volo.Abp.Account.Web.OpenIddict.csproj +++ b/modules/account/src/Volo.Abp.Account.Web.OpenIddict/Volo.Abp.Account.Web.OpenIddict.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Account.Web.OpenIddict Volo.Abp.Account.Web.OpenIddict true diff --git a/modules/account/src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.csproj b/modules/account/src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.csproj index a2ad539865..efedb773fe 100644 --- a/modules/account/src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.csproj +++ b/modules/account/src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Account.Web Volo.Abp.Account.Web $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/account/test/Volo.Abp.Account.Application.Tests/Volo.Abp.Account.Application.Tests.csproj b/modules/account/test/Volo.Abp.Account.Application.Tests/Volo.Abp.Account.Application.Tests.csproj index 9065c6c774..218c21ea2e 100644 --- a/modules/account/test/Volo.Abp.Account.Application.Tests/Volo.Abp.Account.Application.Tests.csproj +++ b/modules/account/test/Volo.Abp.Account.Application.Tests/Volo.Abp.Account.Application.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo.Abp.AuditLogging.Domain.Shared.csproj b/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo.Abp.AuditLogging.Domain.Shared.csproj index a7adfdf5f3..f8c35b3f49 100644 --- a/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo.Abp.AuditLogging.Domain.Shared.csproj +++ b/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain.Shared/Volo.Abp.AuditLogging.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 true diff --git a/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain/Volo.Abp.AuditLogging.Domain.csproj b/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain/Volo.Abp.AuditLogging.Domain.csproj index 71b73f6a27..a93e5f5823 100644 --- a/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain/Volo.Abp.AuditLogging.Domain.csproj +++ b/modules/audit-logging/src/Volo.Abp.AuditLogging.Domain/Volo.Abp.AuditLogging.Domain.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/audit-logging/src/Volo.Abp.AuditLogging.EntityFrameworkCore/Volo.Abp.AuditLogging.EntityFrameworkCore.csproj b/modules/audit-logging/src/Volo.Abp.AuditLogging.EntityFrameworkCore/Volo.Abp.AuditLogging.EntityFrameworkCore.csproj index 0c10f33488..6117d5ac5e 100644 --- a/modules/audit-logging/src/Volo.Abp.AuditLogging.EntityFrameworkCore/Volo.Abp.AuditLogging.EntityFrameworkCore.csproj +++ b/modules/audit-logging/src/Volo.Abp.AuditLogging.EntityFrameworkCore/Volo.Abp.AuditLogging.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/audit-logging/src/Volo.Abp.AuditLogging.Installer/Volo.Abp.AuditLogging.Installer.csproj b/modules/audit-logging/src/Volo.Abp.AuditLogging.Installer/Volo.Abp.AuditLogging.Installer.csproj index 0e616b6b9d..717a214655 100644 --- a/modules/audit-logging/src/Volo.Abp.AuditLogging.Installer/Volo.Abp.AuditLogging.Installer.csproj +++ b/modules/audit-logging/src/Volo.Abp.AuditLogging.Installer/Volo.Abp.AuditLogging.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/audit-logging/src/Volo.Abp.AuditLogging.MongoDB/Volo.Abp.AuditLogging.MongoDB.csproj b/modules/audit-logging/src/Volo.Abp.AuditLogging.MongoDB/Volo.Abp.AuditLogging.MongoDB.csproj index 270e7375e5..652bd943a5 100644 --- a/modules/audit-logging/src/Volo.Abp.AuditLogging.MongoDB/Volo.Abp.AuditLogging.MongoDB.csproj +++ b/modules/audit-logging/src/Volo.Abp.AuditLogging.MongoDB/Volo.Abp.AuditLogging.MongoDB.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/audit-logging/test/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests.csproj b/modules/audit-logging/test/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests.csproj index ad777f43b5..99ad35711f 100644 --- a/modules/audit-logging/test/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests.csproj +++ b/modules/audit-logging/test/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/audit-logging/test/Volo.Abp.AuditLogging.MongoDB.Tests/Volo.Abp.AuditLogging.MongoDB.Tests.csproj b/modules/audit-logging/test/Volo.Abp.AuditLogging.MongoDB.Tests/Volo.Abp.AuditLogging.MongoDB.Tests.csproj index 0c62b41672..41718fda4e 100644 --- a/modules/audit-logging/test/Volo.Abp.AuditLogging.MongoDB.Tests/Volo.Abp.AuditLogging.MongoDB.Tests.csproj +++ b/modules/audit-logging/test/Volo.Abp.AuditLogging.MongoDB.Tests/Volo.Abp.AuditLogging.MongoDB.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/audit-logging/test/Volo.Abp.AuditLogging.TestBase/Volo.Abp.AuditLogging.TestBase.csproj b/modules/audit-logging/test/Volo.Abp.AuditLogging.TestBase/Volo.Abp.AuditLogging.TestBase.csproj index 546026a607..26af9d72a2 100644 --- a/modules/audit-logging/test/Volo.Abp.AuditLogging.TestBase/Volo.Abp.AuditLogging.TestBase.csproj +++ b/modules/audit-logging/test/Volo.Abp.AuditLogging.TestBase/Volo.Abp.AuditLogging.TestBase.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/audit-logging/test/Volo.Abp.AuditLogging.Tests/Volo.Abp.AuditLogging.Tests.csproj b/modules/audit-logging/test/Volo.Abp.AuditLogging.Tests/Volo.Abp.AuditLogging.Tests.csproj index 9ac094b81c..08d9788bb7 100644 --- a/modules/audit-logging/test/Volo.Abp.AuditLogging.Tests/Volo.Abp.AuditLogging.Tests.csproj +++ b/modules/audit-logging/test/Volo.Abp.AuditLogging.Tests/Volo.Abp.AuditLogging.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.HangFire/Volo.Abp.BackgroundJobs.DemoApp.HangFire.csproj b/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.HangFire/Volo.Abp.BackgroundJobs.DemoApp.HangFire.csproj index 07fab0a446..2236da5c2b 100644 --- a/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.HangFire/Volo.Abp.BackgroundJobs.DemoApp.HangFire.csproj +++ b/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.HangFire/Volo.Abp.BackgroundJobs.DemoApp.HangFire.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 diff --git a/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Quartz/Volo.Abp.BackgroundJobs.DemoApp.Quartz.csproj b/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Quartz/Volo.Abp.BackgroundJobs.DemoApp.Quartz.csproj index 62223b0fa5..b646707e44 100644 --- a/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Quartz/Volo.Abp.BackgroundJobs.DemoApp.Quartz.csproj +++ b/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Quartz/Volo.Abp.BackgroundJobs.DemoApp.Quartz.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 diff --git a/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.RabbitMq/Volo.Abp.BackgroundJobs.DemoApp.RabbitMq.csproj b/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.RabbitMq/Volo.Abp.BackgroundJobs.DemoApp.RabbitMq.csproj index d1ef90c128..5b3cb4a375 100644 --- a/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.RabbitMq/Volo.Abp.BackgroundJobs.DemoApp.RabbitMq.csproj +++ b/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.RabbitMq/Volo.Abp.BackgroundJobs.DemoApp.RabbitMq.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 diff --git a/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Shared/Volo.Abp.BackgroundJobs.DemoApp.Shared.csproj b/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Shared/Volo.Abp.BackgroundJobs.DemoApp.Shared.csproj index 324f6c95ea..3ba0c6b8d5 100644 --- a/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Shared/Volo.Abp.BackgroundJobs.DemoApp.Shared.csproj +++ b/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Shared/Volo.Abp.BackgroundJobs.DemoApp.Shared.csproj @@ -3,7 +3,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp/Volo.Abp.BackgroundJobs.DemoApp.csproj b/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp/Volo.Abp.BackgroundJobs.DemoApp.csproj index c170d528f3..4e377ce512 100644 --- a/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp/Volo.Abp.BackgroundJobs.DemoApp.csproj +++ b/modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp/Volo.Abp.BackgroundJobs.DemoApp.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 diff --git a/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain.Shared/Volo.Abp.BackgroundJobs.Domain.Shared.csproj b/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain.Shared/Volo.Abp.BackgroundJobs.Domain.Shared.csproj index 1ba9dfccc4..e68943924a 100644 --- a/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain.Shared/Volo.Abp.BackgroundJobs.Domain.Shared.csproj +++ b/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain.Shared/Volo.Abp.BackgroundJobs.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain/Volo.Abp.BackgroundJobs.Domain.csproj b/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain/Volo.Abp.BackgroundJobs.Domain.csproj index a88ae98514..9a23652a5a 100644 --- a/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain/Volo.Abp.BackgroundJobs.Domain.csproj +++ b/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain/Volo.Abp.BackgroundJobs.Domain.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/background-jobs/src/Volo.Abp.BackgroundJobs.EntityFrameworkCore/Volo.Abp.BackgroundJobs.EntityFrameworkCore.csproj b/modules/background-jobs/src/Volo.Abp.BackgroundJobs.EntityFrameworkCore/Volo.Abp.BackgroundJobs.EntityFrameworkCore.csproj index 37eb414f7a..87455326b3 100644 --- a/modules/background-jobs/src/Volo.Abp.BackgroundJobs.EntityFrameworkCore/Volo.Abp.BackgroundJobs.EntityFrameworkCore.csproj +++ b/modules/background-jobs/src/Volo.Abp.BackgroundJobs.EntityFrameworkCore/Volo.Abp.BackgroundJobs.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Installer/Volo.Abp.BackgroundJobs.Installer.csproj b/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Installer/Volo.Abp.BackgroundJobs.Installer.csproj index 469cfdcfdc..345066fac6 100644 --- a/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Installer/Volo.Abp.BackgroundJobs.Installer.csproj +++ b/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Installer/Volo.Abp.BackgroundJobs.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/background-jobs/src/Volo.Abp.BackgroundJobs.MongoDB/Volo.Abp.BackgroundJobs.MongoDB.csproj b/modules/background-jobs/src/Volo.Abp.BackgroundJobs.MongoDB/Volo.Abp.BackgroundJobs.MongoDB.csproj index ebe4bf7aab..46306dbda5 100644 --- a/modules/background-jobs/src/Volo.Abp.BackgroundJobs.MongoDB/Volo.Abp.BackgroundJobs.MongoDB.csproj +++ b/modules/background-jobs/src/Volo.Abp.BackgroundJobs.MongoDB/Volo.Abp.BackgroundJobs.MongoDB.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/background-jobs/test/Volo.Abp.BackgroundJobs.Domain.Tests/Volo.Abp.BackgroundJobs.Domain.Tests.csproj b/modules/background-jobs/test/Volo.Abp.BackgroundJobs.Domain.Tests/Volo.Abp.BackgroundJobs.Domain.Tests.csproj index 0f83bd983b..688801eb12 100644 --- a/modules/background-jobs/test/Volo.Abp.BackgroundJobs.Domain.Tests/Volo.Abp.BackgroundJobs.Domain.Tests.csproj +++ b/modules/background-jobs/test/Volo.Abp.BackgroundJobs.Domain.Tests/Volo.Abp.BackgroundJobs.Domain.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/background-jobs/test/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests.csproj b/modules/background-jobs/test/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests.csproj index 4e6bc983db..df7b4203b6 100644 --- a/modules/background-jobs/test/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests.csproj +++ b/modules/background-jobs/test/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/background-jobs/test/Volo.Abp.BackgroundJobs.MongoDB.Tests/Volo.Abp.BackgroundJobs.MongoDB.Tests.csproj b/modules/background-jobs/test/Volo.Abp.BackgroundJobs.MongoDB.Tests/Volo.Abp.BackgroundJobs.MongoDB.Tests.csproj index 73044de04f..c6a4b35a66 100644 --- a/modules/background-jobs/test/Volo.Abp.BackgroundJobs.MongoDB.Tests/Volo.Abp.BackgroundJobs.MongoDB.Tests.csproj +++ b/modules/background-jobs/test/Volo.Abp.BackgroundJobs.MongoDB.Tests/Volo.Abp.BackgroundJobs.MongoDB.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/background-jobs/test/Volo.Abp.BackgroundJobs.TestBase/Volo.Abp.BackgroundJobs.TestBase.csproj b/modules/background-jobs/test/Volo.Abp.BackgroundJobs.TestBase/Volo.Abp.BackgroundJobs.TestBase.csproj index 2487119c48..be0290295a 100644 --- a/modules/background-jobs/test/Volo.Abp.BackgroundJobs.TestBase/Volo.Abp.BackgroundJobs.TestBase.csproj +++ b/modules/background-jobs/test/Volo.Abp.BackgroundJobs.TestBase/Volo.Abp.BackgroundJobs.TestBase.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Server.BasicTheme/Volo.Abp.AspNetCore.Components.Server.BasicTheme.csproj b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Server.BasicTheme/Volo.Abp.AspNetCore.Components.Server.BasicTheme.csproj index 50905eea49..d324b434af 100644 --- a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Server.BasicTheme/Volo.Abp.AspNetCore.Components.Server.BasicTheme.csproj +++ b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Server.BasicTheme/Volo.Abp.AspNetCore.Components.Server.BasicTheme.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.BasicTheme/Volo.Abp.AspNetCore.Components.Web.BasicTheme.csproj b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.BasicTheme/Volo.Abp.AspNetCore.Components.Web.BasicTheme.csproj index 0263d014a2..154a2be3ff 100644 --- a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.BasicTheme/Volo.Abp.AspNetCore.Components.Web.BasicTheme.csproj +++ b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.Web.BasicTheme/Volo.Abp.AspNetCore.Components.Web.BasicTheme.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme.csproj b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme.csproj index 23f7859557..d7ee34d13c 100644 --- a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme.csproj +++ b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.csproj b/modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.csproj index 9ff991f618..b766fa0b81 100644 --- a/modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.csproj +++ b/modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic diff --git a/modules/basic-theme/src/Volo.Abp.BasicTheme.Installer/Volo.Abp.BasicTheme.Installer.csproj b/modules/basic-theme/src/Volo.Abp.BasicTheme.Installer/Volo.Abp.BasicTheme.Installer.csproj index d558129dcf..2cd8fe922f 100644 --- a/modules/basic-theme/src/Volo.Abp.BasicTheme.Installer/Volo.Abp.BasicTheme.Installer.csproj +++ b/modules/basic-theme/src/Volo.Abp.BasicTheme.Installer/Volo.Abp.BasicTheme.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests.csproj b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests.csproj index 979e65689a..5ea9ddce61 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests.csproj +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/AbpAspNetCoreMvcUiBootstrapDemoModule.cs b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/AbpAspNetCoreMvcUiBootstrapDemoModule.cs index 654ada13fc..92c8b7b30b 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/AbpAspNetCoreMvcUiBootstrapDemoModule.cs +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/AbpAspNetCoreMvcUiBootstrapDemoModule.cs @@ -31,7 +31,7 @@ public class AbpAspNetCoreMvcUiBootstrapDemoModule : AbpModule } app.UseRouting(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseConfiguredEndpoints(); } diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Dockerfile b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Dockerfile index 4e9b0e733a..b2a34f3bc8 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Dockerfile +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Dockerfile.azure b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Dockerfile.azure index 4586d6dc02..fa4f4d198a 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Dockerfile.azure +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Dockerfile.azure @@ -1,6 +1,6 @@ FROM node:16 AS nodebase -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build COPY --from=nodebase /usr/local/bin /usr/local/bin COPY --from=nodebase /usr/local/lib /usr/local/lib @@ -14,7 +14,7 @@ WORKDIR /app/abp/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.D RUN abp install-libs RUN dotnet publish -c Release -o bin/Release/publish -FROM mcr.microsoft.com/dotnet/aspnet:8.0 +FROM mcr.microsoft.com/dotnet/aspnet:9.0 WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.csproj b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.csproj index d4d781f281..f8202b97ec 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.csproj +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 true diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/AbpAspNetCoreMvcUiThemeBasicDemoModule.cs b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/AbpAspNetCoreMvcUiThemeBasicDemoModule.cs index 1b1a3f3469..4ebeb18498 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/AbpAspNetCoreMvcUiThemeBasicDemoModule.cs +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/AbpAspNetCoreMvcUiThemeBasicDemoModule.cs @@ -55,7 +55,7 @@ public class AbpAspNetCoreMvcUiThemeBasicDemoModule : AbpModule app.UseDeveloperExceptionPage(); } - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseConfiguredEndpoints(); } diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.csproj b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.csproj index 1524092d59..11c1c98679 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.csproj +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/blob-storing-database/host/BlobStoring.Database.Host.ConsoleApp/src/BlobStoring.Database.Host.ConsoleApp.ConsoleApp/BlobStoring.Database.Host.ConsoleApp.ConsoleApp.csproj b/modules/blob-storing-database/host/BlobStoring.Database.Host.ConsoleApp/src/BlobStoring.Database.Host.ConsoleApp.ConsoleApp/BlobStoring.Database.Host.ConsoleApp.ConsoleApp.csproj index 456278ece2..028552b088 100644 --- a/modules/blob-storing-database/host/BlobStoring.Database.Host.ConsoleApp/src/BlobStoring.Database.Host.ConsoleApp.ConsoleApp/BlobStoring.Database.Host.ConsoleApp.ConsoleApp.csproj +++ b/modules/blob-storing-database/host/BlobStoring.Database.Host.ConsoleApp/src/BlobStoring.Database.Host.ConsoleApp.ConsoleApp/BlobStoring.Database.Host.ConsoleApp.ConsoleApp.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 diff --git a/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Domain.Shared/Volo.Abp.BlobStoring.Database.Domain.Shared.csproj b/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Domain.Shared/Volo.Abp.BlobStoring.Database.Domain.Shared.csproj index 7ed418de4c..b1c1cf8226 100644 --- a/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Domain.Shared/Volo.Abp.BlobStoring.Database.Domain.Shared.csproj +++ b/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Domain.Shared/Volo.Abp.BlobStoring.Database.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Domain/Volo.Abp.BlobStoring.Database.Domain.csproj b/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Domain/Volo.Abp.BlobStoring.Database.Domain.csproj index 3d796b1ac8..8f2ec18714 100644 --- a/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Domain/Volo.Abp.BlobStoring.Database.Domain.csproj +++ b/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Domain/Volo.Abp.BlobStoring.Database.Domain.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.EntityFrameworkCore/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.csproj b/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.EntityFrameworkCore/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.csproj index 451b5d0969..af7a098577 100644 --- a/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.EntityFrameworkCore/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.csproj +++ b/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.EntityFrameworkCore/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Installer/Volo.Abp.BlobStoring.Database.Installer.csproj b/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Installer/Volo.Abp.BlobStoring.Database.Installer.csproj index bf190d6c56..3543278561 100644 --- a/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Installer/Volo.Abp.BlobStoring.Database.Installer.csproj +++ b/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.Installer/Volo.Abp.BlobStoring.Database.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.MongoDB/Volo.Abp.BlobStoring.Database.MongoDB.csproj b/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.MongoDB/Volo.Abp.BlobStoring.Database.MongoDB.csproj index 552d85d2ab..817549f442 100644 --- a/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.MongoDB/Volo.Abp.BlobStoring.Database.MongoDB.csproj +++ b/modules/blob-storing-database/src/Volo.Abp.BlobStoring.Database.MongoDB/Volo.Abp.BlobStoring.Database.MongoDB.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.Domain.Tests/Volo.Abp.BlobStoring.Database.Domain.Tests.csproj b/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.Domain.Tests/Volo.Abp.BlobStoring.Database.Domain.Tests.csproj index 5ca77576ca..4dc289e2bc 100644 --- a/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.Domain.Tests/Volo.Abp.BlobStoring.Database.Domain.Tests.csproj +++ b/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.Domain.Tests/Volo.Abp.BlobStoring.Database.Domain.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.BlobStoring.Database diff --git a/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests.csproj b/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests.csproj index b48e29993d..1794eba7b5 100644 --- a/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests.csproj +++ b/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.BlobStoring.Database diff --git a/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.MongoDB.Tests/Volo.Abp.BlobStoring.Database.MongoDB.Tests.csproj b/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.MongoDB.Tests/Volo.Abp.BlobStoring.Database.MongoDB.Tests.csproj index 3c891425af..1bd05f4357 100644 --- a/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.MongoDB.Tests/Volo.Abp.BlobStoring.Database.MongoDB.Tests.csproj +++ b/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.MongoDB.Tests/Volo.Abp.BlobStoring.Database.MongoDB.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.BlobStoring.Database diff --git a/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.TestBase/Volo.Abp.BlobStoring.Database.TestBase.csproj b/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.TestBase/Volo.Abp.BlobStoring.Database.TestBase.csproj index 6b0aea6e03..8168f52edb 100644 --- a/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.TestBase/Volo.Abp.BlobStoring.Database.TestBase.csproj +++ b/modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.TestBase/Volo.Abp.BlobStoring.Database.TestBase.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.BlobStoring.Database diff --git a/modules/blogging/app/Volo.BloggingTestApp.EntityFrameworkCore/Volo.BloggingTestApp.EntityFrameworkCore.csproj b/modules/blogging/app/Volo.BloggingTestApp.EntityFrameworkCore/Volo.BloggingTestApp.EntityFrameworkCore.csproj index 8e7342b580..c6b77b8b2c 100644 --- a/modules/blogging/app/Volo.BloggingTestApp.EntityFrameworkCore/Volo.BloggingTestApp.EntityFrameworkCore.csproj +++ b/modules/blogging/app/Volo.BloggingTestApp.EntityFrameworkCore/Volo.BloggingTestApp.EntityFrameworkCore.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/blogging/app/Volo.BloggingTestApp.MongoDB/Volo.BloggingTestApp.MongoDB.csproj b/modules/blogging/app/Volo.BloggingTestApp.MongoDB/Volo.BloggingTestApp.MongoDB.csproj index 0cdcbcf40d..efa14361a2 100644 --- a/modules/blogging/app/Volo.BloggingTestApp.MongoDB/Volo.BloggingTestApp.MongoDB.csproj +++ b/modules/blogging/app/Volo.BloggingTestApp.MongoDB/Volo.BloggingTestApp.MongoDB.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs b/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs index 37ce9e4f69..6e2383dcbd 100644 --- a/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs +++ b/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs @@ -161,7 +161,7 @@ namespace Volo.BloggingTestApp app.UseErrorPage(); } - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); diff --git a/modules/blogging/app/Volo.BloggingTestApp/Volo.BloggingTestApp.csproj b/modules/blogging/app/Volo.BloggingTestApp/Volo.BloggingTestApp.csproj index 0653e75c25..4e58d52df0 100644 --- a/modules/blogging/app/Volo.BloggingTestApp/Volo.BloggingTestApp.csproj +++ b/modules/blogging/app/Volo.BloggingTestApp/Volo.BloggingTestApp.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 InProcess diff --git a/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo.Blogging.Admin.Application.Contracts.csproj b/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo.Blogging.Admin.Application.Contracts.csproj index 193d5ef5c0..7e764d9f88 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo.Blogging.Admin.Application.Contracts.csproj +++ b/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo.Blogging.Admin.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Blogging.Admin.Application.Contracts Volo.Blogging.Admin.Application.Contracts true diff --git a/modules/blogging/src/Volo.Blogging.Admin.Application/Volo.Blogging.Admin.Application.csproj b/modules/blogging/src/Volo.Blogging.Admin.Application/Volo.Blogging.Admin.Application.csproj index 515ce2de5d..45863cd86c 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.Application/Volo.Blogging.Admin.Application.csproj +++ b/modules/blogging/src/Volo.Blogging.Admin.Application/Volo.Blogging.Admin.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Blogging.Admin.Application Volo.Blogging.Admin.Application diff --git a/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/Volo.Blogging.Admin.HttpApi.Client.csproj b/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/Volo.Blogging.Admin.HttpApi.Client.csproj index 5e9c037ca9..1bd0e02c67 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/Volo.Blogging.Admin.HttpApi.Client.csproj +++ b/modules/blogging/src/Volo.Blogging.Admin.HttpApi.Client/Volo.Blogging.Admin.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Blogging.Admin.HttpApi.Client Volo.Blogging.Admin.HttpApi.Client diff --git a/modules/blogging/src/Volo.Blogging.Admin.HttpApi/Volo.Blogging.Admin.HttpApi.csproj b/modules/blogging/src/Volo.Blogging.Admin.HttpApi/Volo.Blogging.Admin.HttpApi.csproj index d5870ab593..2aea7d6494 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.HttpApi/Volo.Blogging.Admin.HttpApi.csproj +++ b/modules/blogging/src/Volo.Blogging.Admin.HttpApi/Volo.Blogging.Admin.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Blogging.Admin.HttpApi Volo.Blogging.Admin.HttpApi diff --git a/modules/blogging/src/Volo.Blogging.Admin.Web/Volo.Blogging.Admin.Web.csproj b/modules/blogging/src/Volo.Blogging.Admin.Web/Volo.Blogging.Admin.Web.csproj index c6d757172d..04df5c550d 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.Web/Volo.Blogging.Admin.Web.csproj +++ b/modules/blogging/src/Volo.Blogging.Admin.Web/Volo.Blogging.Admin.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Blogging.Admin.Web Volo.Blogging.Admin.Web 2.8 diff --git a/modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo.Blogging.Application.Contracts.Shared.csproj b/modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo.Blogging.Application.Contracts.Shared.csproj index 85184f09da..8a223b0a5f 100644 --- a/modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo.Blogging.Application.Contracts.Shared.csproj +++ b/modules/blogging/src/Volo.Blogging.Application.Contracts.Shared/Volo.Blogging.Application.Contracts.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Blogging.Application.Contracts.Shared Volo.Blogging.Application.Contracts.Shared diff --git a/modules/blogging/src/Volo.Blogging.Application.Contracts/Volo.Blogging.Application.Contracts.csproj b/modules/blogging/src/Volo.Blogging.Application.Contracts/Volo.Blogging.Application.Contracts.csproj index 22296dc25f..b2ce64a90a 100644 --- a/modules/blogging/src/Volo.Blogging.Application.Contracts/Volo.Blogging.Application.Contracts.csproj +++ b/modules/blogging/src/Volo.Blogging.Application.Contracts/Volo.Blogging.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Blogging.Application.Contracts Volo.Blogging.Application.Contracts true diff --git a/modules/blogging/src/Volo.Blogging.Application/Volo.Blogging.Application.csproj b/modules/blogging/src/Volo.Blogging.Application/Volo.Blogging.Application.csproj index 2d15d02620..5119993b9c 100644 --- a/modules/blogging/src/Volo.Blogging.Application/Volo.Blogging.Application.csproj +++ b/modules/blogging/src/Volo.Blogging.Application/Volo.Blogging.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Blogging.Application Volo.Blogging.Application diff --git a/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo.Blogging.Domain.Shared.csproj b/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo.Blogging.Domain.Shared.csproj index f8f7b3560b..7c5a78f4f6 100644 --- a/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo.Blogging.Domain.Shared.csproj +++ b/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo.Blogging.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Blogging.Domain.Shared Volo.Blogging.Domain.Shared true diff --git a/modules/blogging/src/Volo.Blogging.Domain/Volo.Blogging.Domain.csproj b/modules/blogging/src/Volo.Blogging.Domain/Volo.Blogging.Domain.csproj index 3e2d210d8d..ff0dbba17b 100644 --- a/modules/blogging/src/Volo.Blogging.Domain/Volo.Blogging.Domain.csproj +++ b/modules/blogging/src/Volo.Blogging.Domain/Volo.Blogging.Domain.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Blogging.Domain Volo.Blogging.Domain diff --git a/modules/blogging/src/Volo.Blogging.EntityFrameworkCore/Volo.Blogging.EntityFrameworkCore.csproj b/modules/blogging/src/Volo.Blogging.EntityFrameworkCore/Volo.Blogging.EntityFrameworkCore.csproj index a51f7d7769..3dd83af0c5 100644 --- a/modules/blogging/src/Volo.Blogging.EntityFrameworkCore/Volo.Blogging.EntityFrameworkCore.csproj +++ b/modules/blogging/src/Volo.Blogging.EntityFrameworkCore/Volo.Blogging.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Blogging.EntityFrameworkCore Volo.Blogging.EntityFrameworkCore diff --git a/modules/blogging/src/Volo.Blogging.HttpApi.Client/Volo.Blogging.HttpApi.Client.csproj b/modules/blogging/src/Volo.Blogging.HttpApi.Client/Volo.Blogging.HttpApi.Client.csproj index 12fab4fb08..a2d58217fb 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi.Client/Volo.Blogging.HttpApi.Client.csproj +++ b/modules/blogging/src/Volo.Blogging.HttpApi.Client/Volo.Blogging.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Blogging.HttpApi.Client Volo.Blogging.HttpApi.Client diff --git a/modules/blogging/src/Volo.Blogging.HttpApi/Volo.Blogging.HttpApi.csproj b/modules/blogging/src/Volo.Blogging.HttpApi/Volo.Blogging.HttpApi.csproj index 95a0fdc426..5a6480abd6 100644 --- a/modules/blogging/src/Volo.Blogging.HttpApi/Volo.Blogging.HttpApi.csproj +++ b/modules/blogging/src/Volo.Blogging.HttpApi/Volo.Blogging.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Blogging.HttpApi Volo.Blogging.HttpApi diff --git a/modules/blogging/src/Volo.Blogging.Installer/Volo.Blogging.Installer.csproj b/modules/blogging/src/Volo.Blogging.Installer/Volo.Blogging.Installer.csproj index 679c55f061..a5fbe01cca 100644 --- a/modules/blogging/src/Volo.Blogging.Installer/Volo.Blogging.Installer.csproj +++ b/modules/blogging/src/Volo.Blogging.Installer/Volo.Blogging.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/blogging/src/Volo.Blogging.MongoDB/Volo.Blogging.MongoDB.csproj b/modules/blogging/src/Volo.Blogging.MongoDB/Volo.Blogging.MongoDB.csproj index 1614e3285d..bbe4963401 100644 --- a/modules/blogging/src/Volo.Blogging.MongoDB/Volo.Blogging.MongoDB.csproj +++ b/modules/blogging/src/Volo.Blogging.MongoDB/Volo.Blogging.MongoDB.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Blogging.MongoDB Volo.Blogging.MongoDB diff --git a/modules/blogging/src/Volo.Blogging.Web/Volo.Blogging.Web.csproj b/modules/blogging/src/Volo.Blogging.Web/Volo.Blogging.Web.csproj index 84891ab800..06133868ab 100644 --- a/modules/blogging/src/Volo.Blogging.Web/Volo.Blogging.Web.csproj +++ b/modules/blogging/src/Volo.Blogging.Web/Volo.Blogging.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Blogging.Web Volo.Blogging.Web 2.8 diff --git a/modules/blogging/test/Volo.Blogging.Application.Tests/Volo.Blogging.Application.Tests.csproj b/modules/blogging/test/Volo.Blogging.Application.Tests/Volo.Blogging.Application.Tests.csproj index 1d9f0b810d..c08a315a33 100644 --- a/modules/blogging/test/Volo.Blogging.Application.Tests/Volo.Blogging.Application.Tests.csproj +++ b/modules/blogging/test/Volo.Blogging.Application.Tests/Volo.Blogging.Application.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/blogging/test/Volo.Blogging.Domain.Tests/Volo.Blogging.Domain.Tests.csproj b/modules/blogging/test/Volo.Blogging.Domain.Tests/Volo.Blogging.Domain.Tests.csproj index e379b5b016..6e9d3c5fa0 100644 --- a/modules/blogging/test/Volo.Blogging.Domain.Tests/Volo.Blogging.Domain.Tests.csproj +++ b/modules/blogging/test/Volo.Blogging.Domain.Tests/Volo.Blogging.Domain.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/blogging/test/Volo.Blogging.EntityFrameworkCore.Tests/Volo.Blogging.EntityFrameworkCore.Tests.csproj b/modules/blogging/test/Volo.Blogging.EntityFrameworkCore.Tests/Volo.Blogging.EntityFrameworkCore.Tests.csproj index 1fdf71171b..d5c859a42f 100644 --- a/modules/blogging/test/Volo.Blogging.EntityFrameworkCore.Tests/Volo.Blogging.EntityFrameworkCore.Tests.csproj +++ b/modules/blogging/test/Volo.Blogging.EntityFrameworkCore.Tests/Volo.Blogging.EntityFrameworkCore.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/blogging/test/Volo.Blogging.MongoDB.Tests/Volo.Blogging.MongoDB.Tests.csproj b/modules/blogging/test/Volo.Blogging.MongoDB.Tests/Volo.Blogging.MongoDB.Tests.csproj index e52a6dceb0..88cd171a55 100644 --- a/modules/blogging/test/Volo.Blogging.MongoDB.Tests/Volo.Blogging.MongoDB.Tests.csproj +++ b/modules/blogging/test/Volo.Blogging.MongoDB.Tests/Volo.Blogging.MongoDB.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/blogging/test/Volo.Blogging.TestBase/Volo.Blogging.TestBase.csproj b/modules/blogging/test/Volo.Blogging.TestBase/Volo.Blogging.TestBase.csproj index 432081645b..657be0068d 100644 --- a/modules/blogging/test/Volo.Blogging.TestBase/Volo.Blogging.TestBase.csproj +++ b/modules/blogging/test/Volo.Blogging.TestBase/Volo.Blogging.TestBase.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/ClientSimulationDemoModule.cs b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/ClientSimulationDemoModule.cs index 006fb8c3a5..90b1c903f5 100644 --- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/ClientSimulationDemoModule.cs +++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/ClientSimulationDemoModule.cs @@ -40,7 +40,7 @@ public class ClientSimulationDemoModule : AbpModule app.UseDeveloperExceptionPage(); } - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseConfiguredEndpoints(); } diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/Volo.ClientSimulation.Demo.csproj b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/Volo.ClientSimulation.Demo.csproj index 0af72b5fbe..7f808baab7 100644 --- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/Volo.ClientSimulation.Demo.csproj +++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/Volo.ClientSimulation.Demo.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/client-simulation/src/Volo.ClientSimulation.Web/Volo.ClientSimulation.Web.csproj b/modules/client-simulation/src/Volo.ClientSimulation.Web/Volo.ClientSimulation.Web.csproj index 09ac77536d..3488db3c1c 100644 --- a/modules/client-simulation/src/Volo.ClientSimulation.Web/Volo.ClientSimulation.Web.csproj +++ b/modules/client-simulation/src/Volo.ClientSimulation.Web/Volo.ClientSimulation.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.ClientSimulation.Web Volo.ClientSimulation.Web Library diff --git a/modules/client-simulation/src/Volo.ClientSimulation/Volo.ClientSimulation.csproj b/modules/client-simulation/src/Volo.ClientSimulation/Volo.ClientSimulation.csproj index 0cba5a1f61..2cab8fce07 100644 --- a/modules/client-simulation/src/Volo.ClientSimulation/Volo.ClientSimulation.csproj +++ b/modules/client-simulation/src/Volo.ClientSimulation/Volo.ClientSimulation.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.ClientSimulation Volo.ClientSimulation diff --git a/modules/cms-kit/database/Dockerfile b/modules/cms-kit/database/Dockerfile index 45eebace1c..2eb1345cd0 100644 --- a/modules/cms-kit/database/Dockerfile +++ b/modules/cms-kit/database/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build COPY . . WORKDIR /templates/service/host/IdentityServerHost diff --git a/modules/cms-kit/host/Volo.CmsKit.Host.Shared/Volo.CmsKit.Host.Shared.csproj b/modules/cms-kit/host/Volo.CmsKit.Host.Shared/Volo.CmsKit.Host.Shared.csproj index f8dc1ff901..6c638dab0e 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Host.Shared/Volo.CmsKit.Host.Shared.csproj +++ b/modules/cms-kit/host/Volo.CmsKit.Host.Shared/Volo.CmsKit.Host.Shared.csproj @@ -1,7 +1,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.CmsKit diff --git a/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/CmsKitHttpApiHostModule.cs b/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/CmsKitHttpApiHostModule.cs index aeb45bea02..523dec994f 100644 --- a/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/CmsKitHttpApiHostModule.cs +++ b/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/CmsKitHttpApiHostModule.cs @@ -172,7 +172,7 @@ public class CmsKitHttpApiHostModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(DefaultCorsPolicyName); app.UseAuthentication(); diff --git a/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/Dockerfile b/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/Dockerfile index c0f3b2536f..e9718e16d6 100644 --- a/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/Dockerfile +++ b/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/Dockerfile @@ -1,9 +1,9 @@ -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build WORKDIR /src COPY . . WORKDIR /src/templates/service/host/Volo.CmsKit.HttpApi.Host diff --git a/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/Volo.CmsKit.HttpApi.Host.csproj b/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/Volo.CmsKit.HttpApi.Host.csproj index 406fb16a62..92c5715372 100644 --- a/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/Volo.CmsKit.HttpApi.Host.csproj +++ b/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/Volo.CmsKit.HttpApi.Host.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.CmsKit true Volo.CmsKit-c2d31439-b723-48e2-b061-5ebd7aeb6010 diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/CmsKitIdentityServerModule.cs b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/CmsKitIdentityServerModule.cs index 070508d178..623b417bc7 100644 --- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/CmsKitIdentityServerModule.cs +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/CmsKitIdentityServerModule.cs @@ -195,7 +195,7 @@ public class CmsKitIdentityServerModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(DefaultCorsPolicyName); app.UseAuthentication(); diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/Dockerfile b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/Dockerfile index ae0a783949..c9f7f1a020 100644 --- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/Dockerfile +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/Dockerfile @@ -1,9 +1,9 @@ -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build WORKDIR /src COPY . . WORKDIR /src/templates/service/host/Volo.CmsKit.IdentityServer diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/Volo.CmsKit.IdentityServer.csproj b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/Volo.CmsKit.IdentityServer.csproj index 193dc4b29b..2f0f9c0fee 100644 --- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/Volo.CmsKit.IdentityServer.csproj +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/Volo.CmsKit.IdentityServer.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.CmsKit true Volo.CmsKit-c2d31439-b723-48e2-b061-5ebd7aeb6010 diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Host/CmsKitWebHostModule.cs b/modules/cms-kit/host/Volo.CmsKit.Web.Host/CmsKitWebHostModule.cs index 4ca31dc44a..7f2f539d7e 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/CmsKitWebHostModule.cs +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/CmsKitWebHostModule.cs @@ -222,7 +222,7 @@ public class CmsKitWebHostModule : AbpModule } app.UseHttpsRedirection(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Host/Volo.CmsKit.Web.Host.csproj b/modules/cms-kit/host/Volo.CmsKit.Web.Host/Volo.CmsKit.Web.Host.csproj index 7f5d887af7..214328168c 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/Volo.CmsKit.Web.Host.csproj +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/Volo.CmsKit.Web.Host.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.CmsKit true Volo.CmsKit-c2d31439-b723-48e2-b061-5ebd7aeb6010 diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/CmsKitWebUnifiedModule.cs b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/CmsKitWebUnifiedModule.cs index cb515032b6..c216a6ba38 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/CmsKitWebUnifiedModule.cs +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/CmsKitWebUnifiedModule.cs @@ -263,7 +263,7 @@ public class CmsKitWebUnifiedModule : AbpModule } app.UseHttpsRedirection(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/Volo.CmsKit.Web.Unified.csproj b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/Volo.CmsKit.Web.Unified.csproj index 996655cc62..4ffdf018d1 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/Volo.CmsKit.Web.Unified.csproj +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/Volo.CmsKit.Web.Unified.csproj @@ -1,7 +1,7 @@  - net8.0 + net9.0 Volo.CmsKit true Volo.CmsKit-c2d31439-b723-48e2-b061-5ebd7aeb6010 diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.Application.Contracts/Volo.CmsKit.Admin.Application.Contracts.csproj b/modules/cms-kit/src/Volo.CmsKit.Admin.Application.Contracts/Volo.CmsKit.Admin.Application.Contracts.csproj index e00b83818e..9b8e5b4df2 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.Application.Contracts/Volo.CmsKit.Admin.Application.Contracts.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.Application.Contracts/Volo.CmsKit.Admin.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.Application/Volo.CmsKit.Admin.Application.csproj b/modules/cms-kit/src/Volo.CmsKit.Admin.Application/Volo.CmsKit.Admin.Application.csproj index ef9bb92ab3..a7a998e292 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.Application/Volo.CmsKit.Admin.Application.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.Application/Volo.CmsKit.Admin.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/Volo.CmsKit.Admin.HttpApi.Client.csproj b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/Volo.CmsKit.Admin.HttpApi.Client.csproj index 33c941354e..f39bcbc3be 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/Volo.CmsKit.Admin.HttpApi.Client.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi.Client/Volo.CmsKit.Admin.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi/Volo.CmsKit.Admin.HttpApi.csproj b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi/Volo.CmsKit.Admin.HttpApi.csproj index 11da648e64..57f972c71b 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi/Volo.CmsKit.Admin.HttpApi.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.HttpApi/Volo.CmsKit.Admin.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Volo.CmsKit.Admin.Web.csproj b/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Volo.CmsKit.Admin.Web.csproj index a6c0d9cb0a..9323e3044e 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Volo.CmsKit.Admin.Web.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Volo.CmsKit.Admin.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; true Library diff --git a/modules/cms-kit/src/Volo.CmsKit.Application.Contracts/Volo.CmsKit.Application.Contracts.csproj b/modules/cms-kit/src/Volo.CmsKit.Application.Contracts/Volo.CmsKit.Application.Contracts.csproj index 906e6cd0f8..b42b8b9416 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Application.Contracts/Volo.CmsKit.Application.Contracts.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Application.Contracts/Volo.CmsKit.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Application/Volo.CmsKit.Application.csproj b/modules/cms-kit/src/Volo.CmsKit.Application/Volo.CmsKit.Application.csproj index 745e828a8a..0fa9332fd8 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Application/Volo.CmsKit.Application.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Application/Volo.CmsKit.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Common.Application.Contracts/Volo.CmsKit.Common.Application.Contracts.csproj b/modules/cms-kit/src/Volo.CmsKit.Common.Application.Contracts/Volo.CmsKit.Common.Application.Contracts.csproj index e28bd6df10..71d28ddecd 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Common.Application.Contracts/Volo.CmsKit.Common.Application.Contracts.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Common.Application.Contracts/Volo.CmsKit.Common.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Common.Application/Volo.CmsKit.Common.Application.csproj b/modules/cms-kit/src/Volo.CmsKit.Common.Application/Volo.CmsKit.Common.Application.csproj index 7d0e969b93..d7d88be59e 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Common.Application/Volo.CmsKit.Common.Application.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Common.Application/Volo.CmsKit.Common.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/Volo.CmsKit.Common.HttpApi.Client.csproj b/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/Volo.CmsKit.Common.HttpApi.Client.csproj index 15b6a47c2c..ca7f703938 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/Volo.CmsKit.Common.HttpApi.Client.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi.Client/Volo.CmsKit.Common.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi/Volo.CmsKit.Common.HttpApi.csproj b/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi/Volo.CmsKit.Common.HttpApi.csproj index 373181dba3..4adeeb3970 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi/Volo.CmsKit.Common.HttpApi.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Common.HttpApi/Volo.CmsKit.Common.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Common.Web/Volo.CmsKit.Common.Web.csproj b/modules/cms-kit/src/Volo.CmsKit.Common.Web/Volo.CmsKit.Common.Web.csproj index 9b8de76772..f051498795 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Common.Web/Volo.CmsKit.Common.Web.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Common.Web/Volo.CmsKit.Common.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; true Library diff --git a/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo.CmsKit.Domain.Shared.csproj b/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo.CmsKit.Domain.Shared.csproj index 5a3bcd90d4..72815bbb76 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo.CmsKit.Domain.Shared.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo.CmsKit.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 true diff --git a/modules/cms-kit/src/Volo.CmsKit.Domain/Volo.CmsKit.Domain.csproj b/modules/cms-kit/src/Volo.CmsKit.Domain/Volo.CmsKit.Domain.csproj index d54c87c4f9..927f724956 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Domain/Volo.CmsKit.Domain.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Domain/Volo.CmsKit.Domain.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.EntityFrameworkCore/Volo.CmsKit.EntityFrameworkCore.csproj b/modules/cms-kit/src/Volo.CmsKit.EntityFrameworkCore/Volo.CmsKit.EntityFrameworkCore.csproj index 3072a1545f..5724ccb86a 100644 --- a/modules/cms-kit/src/Volo.CmsKit.EntityFrameworkCore/Volo.CmsKit.EntityFrameworkCore.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.EntityFrameworkCore/Volo.CmsKit.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.HttpApi.Client/Volo.CmsKit.HttpApi.Client.csproj b/modules/cms-kit/src/Volo.CmsKit.HttpApi.Client/Volo.CmsKit.HttpApi.Client.csproj index 0872a1f731..fee3bcf3ab 100644 --- a/modules/cms-kit/src/Volo.CmsKit.HttpApi.Client/Volo.CmsKit.HttpApi.Client.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.HttpApi.Client/Volo.CmsKit.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.HttpApi/Volo.CmsKit.HttpApi.csproj b/modules/cms-kit/src/Volo.CmsKit.HttpApi/Volo.CmsKit.HttpApi.csproj index 3d6ec9aaa3..8713737078 100644 --- a/modules/cms-kit/src/Volo.CmsKit.HttpApi/Volo.CmsKit.HttpApi.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.HttpApi/Volo.CmsKit.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Installer/Volo.CmsKit.Installer.csproj b/modules/cms-kit/src/Volo.CmsKit.Installer/Volo.CmsKit.Installer.csproj index a4cc845142..702c31f0b7 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Installer/Volo.CmsKit.Installer.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Installer/Volo.CmsKit.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/cms-kit/src/Volo.CmsKit.MongoDB/Volo.CmsKit.MongoDB.csproj b/modules/cms-kit/src/Volo.CmsKit.MongoDB/Volo.CmsKit.MongoDB.csproj index 474b31d4a5..600d04ce18 100644 --- a/modules/cms-kit/src/Volo.CmsKit.MongoDB/Volo.CmsKit.MongoDB.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.MongoDB/Volo.CmsKit.MongoDB.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.Application.Contracts/Volo.CmsKit.Public.Application.Contracts.csproj b/modules/cms-kit/src/Volo.CmsKit.Public.Application.Contracts/Volo.CmsKit.Public.Application.Contracts.csproj index fc65657274..18442a25c4 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.Application.Contracts/Volo.CmsKit.Public.Application.Contracts.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Public.Application.Contracts/Volo.CmsKit.Public.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.Application/Volo.CmsKit.Public.Application.csproj b/modules/cms-kit/src/Volo.CmsKit.Public.Application/Volo.CmsKit.Public.Application.csproj index d1625e8c7c..cfda642b4f 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.Application/Volo.CmsKit.Public.Application.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Public.Application/Volo.CmsKit.Public.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/Volo.CmsKit.Public.HttpApi.Client.csproj b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/Volo.CmsKit.Public.HttpApi.Client.csproj index 2867f0f575..a52f5b01d8 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/Volo.CmsKit.Public.HttpApi.Client.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi.Client/Volo.CmsKit.Public.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi/Volo.CmsKit.Public.HttpApi.csproj b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi/Volo.CmsKit.Public.HttpApi.csproj index fa88cf9a84..75e416d875 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi/Volo.CmsKit.Public.HttpApi.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Public.HttpApi/Volo.CmsKit.Public.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.Web/Volo.CmsKit.Public.Web.csproj b/modules/cms-kit/src/Volo.CmsKit.Public.Web/Volo.CmsKit.Public.Web.csproj index 165eae38c9..103f291d29 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Public.Web/Volo.CmsKit.Public.Web.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Public.Web/Volo.CmsKit.Public.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; true Library diff --git a/modules/cms-kit/src/Volo.CmsKit.Web/Volo.CmsKit.Web.csproj b/modules/cms-kit/src/Volo.CmsKit.Web/Volo.CmsKit.Web.csproj index bc32c8d734..53b80f3ed8 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Web/Volo.CmsKit.Web.csproj +++ b/modules/cms-kit/src/Volo.CmsKit.Web/Volo.CmsKit.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; true Library diff --git a/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Comments/CommentPublicAppService_Tests.cs b/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Comments/CommentPublicAppService_Tests.cs index 9e682b2e26..a60c57c725 100644 --- a/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Comments/CommentPublicAppService_Tests.cs +++ b/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Comments/CommentPublicAppService_Tests.cs @@ -64,7 +64,7 @@ public class CommentPublicAppService_Tests : CmsKitApplicationTestBase .ShouldBeTrue(); }); } - + [Theory] [InlineData("https://abp.io/features")] public async Task CreateAsync_ShouldCreateComment_If_Url_Allowed(string text) @@ -94,7 +94,7 @@ public class CommentPublicAppService_Tests : CmsKitApplicationTestBase await _commentAppService.CreateAsync( _cmsKitTestData.EntityType1, _cmsKitTestData.EntityId1, - new CreateCommentInput + new CreateCommentInput { RepliedCommentId = null, Text = text, //not allowed URL @@ -104,7 +104,7 @@ public class CommentPublicAppService_Tests : CmsKitApplicationTestBase } [Fact] - public async Task CreateAsync_ShouldThrowUserFriendlyException_If_IdempotencyToken_Not_Unique() + public async Task CreateAsync_ShouldThrowUserFriendlyException_If_IdempotencyToken_Not_Unique() { _currentUser.Id.Returns(_cmsKitTestData.User2Id); @@ -112,10 +112,10 @@ public class CommentPublicAppService_Tests : CmsKitApplicationTestBase await _commentAppService.CreateAsync( _cmsKitTestData.EntityType1, _cmsKitTestData.EntityId1, - new CreateCommentInput + new CreateCommentInput { RepliedCommentId = null, - Text = "", + Text = "", IdempotencyToken = _cmsKitTestData.IdempotencyToken_1 } )); @@ -139,7 +139,7 @@ public class CommentPublicAppService_Tests : CmsKitApplicationTestBase comment.Text.ShouldBe("I'm Updated"); }); } - + [Fact] public async Task UpdateAsync_ShouldThrowUserFriendlyException_If_Url_UnAllowed() { @@ -148,7 +148,7 @@ public class CommentPublicAppService_Tests : CmsKitApplicationTestBase await Should.ThrowAsync(async () => await _commentAppService.UpdateAsync( _cmsKitTestData.CommentWithChildId, - new UpdateCommentInput + new UpdateCommentInput { Text = "[ABP Community - Update](https://community.abp.io/)", //not allowed URL } diff --git a/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Volo.CmsKit.Application.Tests.csproj b/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Volo.CmsKit.Application.Tests.csproj index 045432f8e9..400fcf237a 100644 --- a/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Volo.CmsKit.Application.Tests.csproj +++ b/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Volo.CmsKit.Application.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.CmsKit diff --git a/modules/cms-kit/test/Volo.CmsKit.Domain.Tests/Volo.CmsKit.Domain.Tests.csproj b/modules/cms-kit/test/Volo.CmsKit.Domain.Tests/Volo.CmsKit.Domain.Tests.csproj index e460903a38..7b9c185003 100644 --- a/modules/cms-kit/test/Volo.CmsKit.Domain.Tests/Volo.CmsKit.Domain.Tests.csproj +++ b/modules/cms-kit/test/Volo.CmsKit.Domain.Tests/Volo.CmsKit.Domain.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.CmsKit diff --git a/modules/cms-kit/test/Volo.CmsKit.EntityFrameworkCore.Tests/Volo.CmsKit.EntityFrameworkCore.Tests.csproj b/modules/cms-kit/test/Volo.CmsKit.EntityFrameworkCore.Tests/Volo.CmsKit.EntityFrameworkCore.Tests.csproj index 1d38b305d2..288da13edf 100644 --- a/modules/cms-kit/test/Volo.CmsKit.EntityFrameworkCore.Tests/Volo.CmsKit.EntityFrameworkCore.Tests.csproj +++ b/modules/cms-kit/test/Volo.CmsKit.EntityFrameworkCore.Tests/Volo.CmsKit.EntityFrameworkCore.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.CmsKit diff --git a/modules/cms-kit/test/Volo.CmsKit.HttpApi.Client.ConsoleTestApp/Volo.CmsKit.HttpApi.Client.ConsoleTestApp.csproj b/modules/cms-kit/test/Volo.CmsKit.HttpApi.Client.ConsoleTestApp/Volo.CmsKit.HttpApi.Client.ConsoleTestApp.csproj index 56d8f1057f..c9aefb1d39 100644 --- a/modules/cms-kit/test/Volo.CmsKit.HttpApi.Client.ConsoleTestApp/Volo.CmsKit.HttpApi.Client.ConsoleTestApp.csproj +++ b/modules/cms-kit/test/Volo.CmsKit.HttpApi.Client.ConsoleTestApp/Volo.CmsKit.HttpApi.Client.ConsoleTestApp.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 Volo.CmsKit diff --git a/modules/cms-kit/test/Volo.CmsKit.MongoDB.Tests/Volo.CmsKit.MongoDB.Tests.csproj b/modules/cms-kit/test/Volo.CmsKit.MongoDB.Tests/Volo.CmsKit.MongoDB.Tests.csproj index 1bc03be9ae..17c6dfe717 100644 --- a/modules/cms-kit/test/Volo.CmsKit.MongoDB.Tests/Volo.CmsKit.MongoDB.Tests.csproj +++ b/modules/cms-kit/test/Volo.CmsKit.MongoDB.Tests/Volo.CmsKit.MongoDB.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.CmsKit diff --git a/modules/cms-kit/test/Volo.CmsKit.TestBase/Volo.CmsKit.TestBase.csproj b/modules/cms-kit/test/Volo.CmsKit.TestBase/Volo.CmsKit.TestBase.csproj index 839be10d90..4551360a30 100644 --- a/modules/cms-kit/test/Volo.CmsKit.TestBase/Volo.CmsKit.TestBase.csproj +++ b/modules/cms-kit/test/Volo.CmsKit.TestBase/Volo.CmsKit.TestBase.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.CmsKit diff --git a/modules/docs/app/VoloDocs.EntityFrameworkCore/VoloDocs.EntityFrameworkCore.csproj b/modules/docs/app/VoloDocs.EntityFrameworkCore/VoloDocs.EntityFrameworkCore.csproj index 6372a706b4..38f85e7541 100644 --- a/modules/docs/app/VoloDocs.EntityFrameworkCore/VoloDocs.EntityFrameworkCore.csproj +++ b/modules/docs/app/VoloDocs.EntityFrameworkCore/VoloDocs.EntityFrameworkCore.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/docs/app/VoloDocs.Migrator/Dockerfile b/modules/docs/app/VoloDocs.Migrator/Dockerfile index 2da1892ad6..8f3dabcb5c 100644 --- a/modules/docs/app/VoloDocs.Migrator/Dockerfile +++ b/modules/docs/app/VoloDocs.Migrator/Dockerfile @@ -1,9 +1,9 @@ -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build WORKDIR /src COPY . . WORKDIR "/src/modules/docs/app/VoloDocs.Migrator" diff --git a/modules/docs/app/VoloDocs.Migrator/VoloDocs.Migrator.csproj b/modules/docs/app/VoloDocs.Migrator/VoloDocs.Migrator.csproj index bc97264d1f..9b66dec4ef 100644 --- a/modules/docs/app/VoloDocs.Migrator/VoloDocs.Migrator.csproj +++ b/modules/docs/app/VoloDocs.Migrator/VoloDocs.Migrator.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 Exe win-x64;linux-x64;osx-x64 diff --git a/modules/docs/app/VoloDocs.Web/Dockerfile b/modules/docs/app/VoloDocs.Web/Dockerfile index e7a3f1f7ee..c5b14533fd 100644 --- a/modules/docs/app/VoloDocs.Web/Dockerfile +++ b/modules/docs/app/VoloDocs.Web/Dockerfile @@ -1,9 +1,9 @@ -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build WORKDIR /src COPY . . WORKDIR "/src/modules/docs/app/VoloDocs.Web" diff --git a/modules/docs/app/VoloDocs.Web/Program.cs b/modules/docs/app/VoloDocs.Web/Program.cs index 5a0860f727..c0373525db 100644 --- a/modules/docs/app/VoloDocs.Web/Program.cs +++ b/modules/docs/app/VoloDocs.Web/Program.cs @@ -1,6 +1,9 @@ using System; using System.IO; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Serilog; using Serilog.Events; @@ -9,7 +12,7 @@ namespace VoloDocs.Web { public class Program { - public static int Main(string[] args) + public async static Task Main(string[] args) { Log.Logger = new LoggerConfiguration() .MinimumLevel.Debug() //TODO: Should be configurable! @@ -22,7 +25,14 @@ namespace VoloDocs.Web try { Log.Information("Starting web host."); - CreateHostBuilder(args).Build().Run(); + var builder = WebApplication.CreateBuilder(args); + builder.Host + .UseAutofac() + .UseSerilog(); + await builder.AddApplicationAsync(); + var app = builder.Build(); + await app.InitializeApplicationAsync(); + await app.RunAsync(); return 0; } catch (Exception ex) @@ -32,17 +42,8 @@ namespace VoloDocs.Web } finally { - Log.CloseAndFlush(); + await Log.CloseAndFlushAsync(); } } - - internal static IHostBuilder CreateHostBuilder(string[] args) => - Host.CreateDefaultBuilder(args) - .ConfigureWebHostDefaults(webBuilder => - { - webBuilder.UseStartup(); - }) - .UseAutofac() - .UseSerilog(); } } diff --git a/modules/docs/app/VoloDocs.Web/Properties/launchSettings.json b/modules/docs/app/VoloDocs.Web/Properties/launchSettings.json index 08e2199ddb..2d88b20c15 100644 --- a/modules/docs/app/VoloDocs.Web/Properties/launchSettings.json +++ b/modules/docs/app/VoloDocs.Web/Properties/launchSettings.json @@ -3,8 +3,8 @@ "windowsAuthentication": false, "anonymousAuthentication": true, "iisExpress": { - "applicationUrl": "https://localhost:44333/", - "sslPort": 0 + "applicationUrl": "https://localhost:5001/", + "sslPort": 5001 } }, "profiles": { @@ -21,7 +21,7 @@ "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" }, - "applicationUrl": "https://localhost:44333/" + "applicationUrl": "https://localhost:5001/" } } } diff --git a/modules/docs/app/VoloDocs.Web/Startup.cs b/modules/docs/app/VoloDocs.Web/Startup.cs deleted file mode 100644 index 22d7b980c5..0000000000 --- a/modules/docs/app/VoloDocs.Web/Startup.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; -using Microsoft.AspNetCore.Builder; -using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Logging; -using Volo.Abp; - -namespace VoloDocs.Web -{ - public class Startup - { - public void ConfigureServices(IServiceCollection services) - { - services.AddApplication(); - } - - public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ILoggerFactory loggerFactory) - { - app.InitializeApplication(); - } - } -} diff --git a/modules/docs/app/VoloDocs.Web/VoloDocs.Web.csproj b/modules/docs/app/VoloDocs.Web/VoloDocs.Web.csproj index bc6c12fc77..0a59f42c87 100644 --- a/modules/docs/app/VoloDocs.Web/VoloDocs.Web.csproj +++ b/modules/docs/app/VoloDocs.Web/VoloDocs.Web.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 true true false diff --git a/modules/docs/app/VoloDocs.Web/VoloDocsWebModule.cs b/modules/docs/app/VoloDocs.Web/VoloDocsWebModule.cs index 8651c0d3fd..743944c6d3 100644 --- a/modules/docs/app/VoloDocs.Web/VoloDocsWebModule.cs +++ b/modules/docs/app/VoloDocs.Web/VoloDocsWebModule.cs @@ -177,7 +177,7 @@ namespace VoloDocs.Web var app = context.GetApplicationBuilder(); var env = context.GetEnvironment(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); diff --git a/modules/docs/src/Volo.Docs.Admin.Application.Contracts/Volo.Docs.Admin.Application.Contracts.csproj b/modules/docs/src/Volo.Docs.Admin.Application.Contracts/Volo.Docs.Admin.Application.Contracts.csproj index 7114f8531e..a49d9146db 100644 --- a/modules/docs/src/Volo.Docs.Admin.Application.Contracts/Volo.Docs.Admin.Application.Contracts.csproj +++ b/modules/docs/src/Volo.Docs.Admin.Application.Contracts/Volo.Docs.Admin.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Docs.Admin.Application.Contracts Volo.Docs.Admin.Application.Contracts true diff --git a/modules/docs/src/Volo.Docs.Admin.Application/Volo.Docs.Admin.Application.csproj b/modules/docs/src/Volo.Docs.Admin.Application/Volo.Docs.Admin.Application.csproj index d221ef849b..3d947ead5e 100644 --- a/modules/docs/src/Volo.Docs.Admin.Application/Volo.Docs.Admin.Application.csproj +++ b/modules/docs/src/Volo.Docs.Admin.Application/Volo.Docs.Admin.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Docs.Admin.Application Volo.Docs.Admin.Application diff --git a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/Volo.Docs.Admin.HttpApi.Client.csproj b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/Volo.Docs.Admin.HttpApi.Client.csproj index ff0832d636..36aa447f74 100644 --- a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/Volo.Docs.Admin.HttpApi.Client.csproj +++ b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/Volo.Docs.Admin.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Docs.Admin.HttpApi.Client Volo.Docs.Admin.HttpApi.Client diff --git a/modules/docs/src/Volo.Docs.Admin.HttpApi/Volo.Docs.Admin.HttpApi.csproj b/modules/docs/src/Volo.Docs.Admin.HttpApi/Volo.Docs.Admin.HttpApi.csproj index 95a6c3fca7..6d718f03bb 100644 --- a/modules/docs/src/Volo.Docs.Admin.HttpApi/Volo.Docs.Admin.HttpApi.csproj +++ b/modules/docs/src/Volo.Docs.Admin.HttpApi/Volo.Docs.Admin.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Docs.Admin.HttpApi Volo.Docs.Admin.HttpApi diff --git a/modules/docs/src/Volo.Docs.Admin.Web/Volo.Docs.Admin.Web.csproj b/modules/docs/src/Volo.Docs.Admin.Web/Volo.Docs.Admin.Web.csproj index 09527663c7..b706561d9d 100644 --- a/modules/docs/src/Volo.Docs.Admin.Web/Volo.Docs.Admin.Web.csproj +++ b/modules/docs/src/Volo.Docs.Admin.Web/Volo.Docs.Admin.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Docs.Admin.Web Volo.Docs.Admin.Web Library diff --git a/modules/docs/src/Volo.Docs.Application.Contracts/Volo.Docs.Application.Contracts.csproj b/modules/docs/src/Volo.Docs.Application.Contracts/Volo.Docs.Application.Contracts.csproj index 6ce1f84c53..d6d7c37d07 100644 --- a/modules/docs/src/Volo.Docs.Application.Contracts/Volo.Docs.Application.Contracts.csproj +++ b/modules/docs/src/Volo.Docs.Application.Contracts/Volo.Docs.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Docs.Application.Contracts Volo.Docs.Application.Contracts diff --git a/modules/docs/src/Volo.Docs.Application/Volo.Docs.Application.csproj b/modules/docs/src/Volo.Docs.Application/Volo.Docs.Application.csproj index 37f9115edb..0bbf42da7e 100644 --- a/modules/docs/src/Volo.Docs.Application/Volo.Docs.Application.csproj +++ b/modules/docs/src/Volo.Docs.Application/Volo.Docs.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Docs.Application Volo.Docs.Application diff --git a/modules/docs/src/Volo.Docs.Domain.Shared/Volo.Docs.Domain.Shared.csproj b/modules/docs/src/Volo.Docs.Domain.Shared/Volo.Docs.Domain.Shared.csproj index 10c5bbaa14..8a4911b9b9 100644 --- a/modules/docs/src/Volo.Docs.Domain.Shared/Volo.Docs.Domain.Shared.csproj +++ b/modules/docs/src/Volo.Docs.Domain.Shared/Volo.Docs.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Docs.Domain.Shared Volo.Docs.Domain.Shared diff --git a/modules/docs/src/Volo.Docs.Domain/Volo.Docs.Domain.csproj b/modules/docs/src/Volo.Docs.Domain/Volo.Docs.Domain.csproj index cc93092b37..5f2c9b6206 100644 --- a/modules/docs/src/Volo.Docs.Domain/Volo.Docs.Domain.csproj +++ b/modules/docs/src/Volo.Docs.Domain/Volo.Docs.Domain.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Docs.Domain Volo.Docs.Domain true diff --git a/modules/docs/src/Volo.Docs.Domain/Volo/Docs/FileSystem/Documents/FileSystemDocumentSource.cs b/modules/docs/src/Volo.Docs.Domain/Volo/Docs/FileSystem/Documents/FileSystemDocumentSource.cs index aba271272a..e16f81d2c9 100644 --- a/modules/docs/src/Volo.Docs.Domain/Volo/Docs/FileSystem/Documents/FileSystemDocumentSource.cs +++ b/modules/docs/src/Volo.Docs.Domain/Volo/Docs/FileSystem/Documents/FileSystemDocumentSource.cs @@ -32,6 +32,8 @@ namespace Volo.Docs.FileSystem.Documents localDirectory = documentName.Substring(0, documentName.LastIndexOf('/')); } + version = File.GetLastWriteTime(path).ToString("yyyyMMddHHmmss"); + return new Document(GuidGenerator.Create(), project.Id, documentName, diff --git a/modules/docs/src/Volo.Docs.EntityFrameworkCore/Volo.Docs.EntityFrameworkCore.csproj b/modules/docs/src/Volo.Docs.EntityFrameworkCore/Volo.Docs.EntityFrameworkCore.csproj index 2001b7c029..e87654ccfb 100644 --- a/modules/docs/src/Volo.Docs.EntityFrameworkCore/Volo.Docs.EntityFrameworkCore.csproj +++ b/modules/docs/src/Volo.Docs.EntityFrameworkCore/Volo.Docs.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Docs.EntityFrameworkCore Volo.Docs.EntityFrameworkCore diff --git a/modules/docs/src/Volo.Docs.HttpApi.Client/Volo.Docs.HttpApi.Client.csproj b/modules/docs/src/Volo.Docs.HttpApi.Client/Volo.Docs.HttpApi.Client.csproj index 08cd3439ec..4527cf93b4 100644 --- a/modules/docs/src/Volo.Docs.HttpApi.Client/Volo.Docs.HttpApi.Client.csproj +++ b/modules/docs/src/Volo.Docs.HttpApi.Client/Volo.Docs.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Docs.HttpApi.Client Volo.Docs.HttpApi.Client diff --git a/modules/docs/src/Volo.Docs.HttpApi/Volo.Docs.HttpApi.csproj b/modules/docs/src/Volo.Docs.HttpApi/Volo.Docs.HttpApi.csproj index 8f58989609..6a05569bbb 100644 --- a/modules/docs/src/Volo.Docs.HttpApi/Volo.Docs.HttpApi.csproj +++ b/modules/docs/src/Volo.Docs.HttpApi/Volo.Docs.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Docs.HttpApi Volo.Docs.HttpApi diff --git a/modules/docs/src/Volo.Docs.Installer/Volo.Docs.Installer.csproj b/modules/docs/src/Volo.Docs.Installer/Volo.Docs.Installer.csproj index 8af37e1793..9d8e51269c 100644 --- a/modules/docs/src/Volo.Docs.Installer/Volo.Docs.Installer.csproj +++ b/modules/docs/src/Volo.Docs.Installer/Volo.Docs.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/docs/src/Volo.Docs.MongoDB/Volo.Docs.MongoDB.csproj b/modules/docs/src/Volo.Docs.MongoDB/Volo.Docs.MongoDB.csproj index 753a8b826d..f32a441f86 100644 --- a/modules/docs/src/Volo.Docs.MongoDB/Volo.Docs.MongoDB.csproj +++ b/modules/docs/src/Volo.Docs.MongoDB/Volo.Docs.MongoDB.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Docs.MongoDB Volo.Docs.MongoDB diff --git a/modules/docs/src/Volo.Docs.Web/Volo.Docs.Web.csproj b/modules/docs/src/Volo.Docs.Web/Volo.Docs.Web.csproj index 488cbd7d17..1d6e0e1ace 100644 --- a/modules/docs/src/Volo.Docs.Web/Volo.Docs.Web.csproj +++ b/modules/docs/src/Volo.Docs.Web/Volo.Docs.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Docs.Web Volo.Docs.Web Library diff --git a/modules/docs/test/Volo.Docs.Admin.Application.Tests/Volo.Docs.Admin.Application.Tests.csproj b/modules/docs/test/Volo.Docs.Admin.Application.Tests/Volo.Docs.Admin.Application.Tests.csproj index a42d7da5c9..46528e0fdb 100644 --- a/modules/docs/test/Volo.Docs.Admin.Application.Tests/Volo.Docs.Admin.Application.Tests.csproj +++ b/modules/docs/test/Volo.Docs.Admin.Application.Tests/Volo.Docs.Admin.Application.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/docs/test/Volo.Docs.Application.Tests/Volo.Docs.Application.Tests.csproj b/modules/docs/test/Volo.Docs.Application.Tests/Volo.Docs.Application.Tests.csproj index e6c22e0a20..c72f5ecfac 100644 --- a/modules/docs/test/Volo.Docs.Application.Tests/Volo.Docs.Application.Tests.csproj +++ b/modules/docs/test/Volo.Docs.Application.Tests/Volo.Docs.Application.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/docs/test/Volo.Docs.Domain.Tests/Volo.Docs.Domain.Tests.csproj b/modules/docs/test/Volo.Docs.Domain.Tests/Volo.Docs.Domain.Tests.csproj index 959a14fac7..7cf5568023 100644 --- a/modules/docs/test/Volo.Docs.Domain.Tests/Volo.Docs.Domain.Tests.csproj +++ b/modules/docs/test/Volo.Docs.Domain.Tests/Volo.Docs.Domain.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/docs/test/Volo.Docs.EntityFrameworkCore.Tests/Volo.Docs.EntityFrameworkCore.Tests.csproj b/modules/docs/test/Volo.Docs.EntityFrameworkCore.Tests/Volo.Docs.EntityFrameworkCore.Tests.csproj index f6b4cfcfe4..fe001e348f 100644 --- a/modules/docs/test/Volo.Docs.EntityFrameworkCore.Tests/Volo.Docs.EntityFrameworkCore.Tests.csproj +++ b/modules/docs/test/Volo.Docs.EntityFrameworkCore.Tests/Volo.Docs.EntityFrameworkCore.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/docs/test/Volo.Docs.MongoDB.Tests/Volo.Docs.MongoDB.Tests.csproj b/modules/docs/test/Volo.Docs.MongoDB.Tests/Volo.Docs.MongoDB.Tests.csproj index 821ffee44a..5c3f98c351 100644 --- a/modules/docs/test/Volo.Docs.MongoDB.Tests/Volo.Docs.MongoDB.Tests.csproj +++ b/modules/docs/test/Volo.Docs.MongoDB.Tests/Volo.Docs.MongoDB.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/docs/test/Volo.Docs.TestBase/Volo.Docs.TestBase.csproj b/modules/docs/test/Volo.Docs.TestBase/Volo.Docs.TestBase.csproj index 9b82d26ce1..5fe7e024ea 100644 --- a/modules/docs/test/Volo.Docs.TestBase/Volo.Docs.TestBase.csproj +++ b/modules/docs/test/Volo.Docs.TestBase/Volo.Docs.TestBase.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Application.Contracts/Volo.Abp.FeatureManagement.Application.Contracts.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Application.Contracts/Volo.Abp.FeatureManagement.Application.Contracts.csproj index 11958e0528..d1474589ba 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Application.Contracts/Volo.Abp.FeatureManagement.Application.Contracts.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Application.Contracts/Volo.Abp.FeatureManagement.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Application/Volo.Abp.FeatureManagement.Application.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Application/Volo.Abp.FeatureManagement.Application.csproj index c4cc3948a6..1d377de8e1 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Application/Volo.Abp.FeatureManagement.Application.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Application/Volo.Abp.FeatureManagement.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.Server/Volo.Abp.FeatureManagement.Blazor.Server.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.Server/Volo.Abp.FeatureManagement.Blazor.Server.csproj index e3a4b1a8e9..b1ba7d7d32 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.Server/Volo.Abp.FeatureManagement.Blazor.Server.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.Server/Volo.Abp.FeatureManagement.Blazor.Server.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.WebAssembly/Volo.Abp.FeatureManagement.Blazor.WebAssembly.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.WebAssembly/Volo.Abp.FeatureManagement.Blazor.WebAssembly.csproj index f536087fd2..f9a635c22f 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.WebAssembly/Volo.Abp.FeatureManagement.Blazor.WebAssembly.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.WebAssembly/Volo.Abp.FeatureManagement.Blazor.WebAssembly.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor/Volo.Abp.FeatureManagement.Blazor.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor/Volo.Abp.FeatureManagement.Blazor.csproj index c5b0087bb1..c0fc137c9b 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor/Volo.Abp.FeatureManagement.Blazor.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor/Volo.Abp.FeatureManagement.Blazor.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain.Shared/Volo.Abp.FeatureManagement.Domain.Shared.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain.Shared/Volo.Abp.FeatureManagement.Domain.Shared.csproj index b1f2c7faa1..72b9c1740b 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain.Shared/Volo.Abp.FeatureManagement.Domain.Shared.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain.Shared/Volo.Abp.FeatureManagement.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 true diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain/Volo.Abp.FeatureManagement.Domain.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain/Volo.Abp.FeatureManagement.Domain.csproj index a78f9f2d36..2d6dfdf7ba 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain/Volo.Abp.FeatureManagement.Domain.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain/Volo.Abp.FeatureManagement.Domain.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.EntityFrameworkCore/Volo.Abp.FeatureManagement.EntityFrameworkCore.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.EntityFrameworkCore/Volo.Abp.FeatureManagement.EntityFrameworkCore.csproj index f44aaee65b..a0da1e90fe 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.EntityFrameworkCore/Volo.Abp.FeatureManagement.EntityFrameworkCore.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.EntityFrameworkCore/Volo.Abp.FeatureManagement.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi.Client/Volo.Abp.FeatureManagement.HttpApi.Client.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi.Client/Volo.Abp.FeatureManagement.HttpApi.Client.csproj index ace3a51275..d72a7a7dcb 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi.Client/Volo.Abp.FeatureManagement.HttpApi.Client.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi.Client/Volo.Abp.FeatureManagement.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi/Volo.Abp.FeatureManagement.HttpApi.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi/Volo.Abp.FeatureManagement.HttpApi.csproj index 478b0b6046..567b2c0ee7 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi/Volo.Abp.FeatureManagement.HttpApi.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.HttpApi/Volo.Abp.FeatureManagement.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Installer/Volo.Abp.FeatureManagement.Installer.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Installer/Volo.Abp.FeatureManagement.Installer.csproj index 42ca9d48d3..ec1b57ffa1 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Installer/Volo.Abp.FeatureManagement.Installer.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Installer/Volo.Abp.FeatureManagement.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.MongoDB/Volo.Abp.FeatureManagement.MongoDB.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.MongoDB/Volo.Abp.FeatureManagement.MongoDB.csproj index e92161b24d..09e5046a86 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.MongoDB/Volo.Abp.FeatureManagement.MongoDB.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.MongoDB/Volo.Abp.FeatureManagement.MongoDB.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Volo.Abp.FeatureManagement.Web.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Volo.Abp.FeatureManagement.Web.csproj index 3da708dada..3b60a8e3a9 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Volo.Abp.FeatureManagement.Web.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Volo.Abp.FeatureManagement.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; true Library diff --git a/modules/feature-management/test/Volo.Abp.FeatureManagement.Application.Tests/Volo.Abp.FeatureManagement.Application.Tests.csproj b/modules/feature-management/test/Volo.Abp.FeatureManagement.Application.Tests/Volo.Abp.FeatureManagement.Application.Tests.csproj index 8d9e570c4f..f4e761fa58 100644 --- a/modules/feature-management/test/Volo.Abp.FeatureManagement.Application.Tests/Volo.Abp.FeatureManagement.Application.Tests.csproj +++ b/modules/feature-management/test/Volo.Abp.FeatureManagement.Application.Tests/Volo.Abp.FeatureManagement.Application.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/test/Volo.Abp.FeatureManagement.Domain.Tests/Volo.Abp.FeatureManagement.Domain.Tests.csproj b/modules/feature-management/test/Volo.Abp.FeatureManagement.Domain.Tests/Volo.Abp.FeatureManagement.Domain.Tests.csproj index 8449927e7a..1c26413abb 100644 --- a/modules/feature-management/test/Volo.Abp.FeatureManagement.Domain.Tests/Volo.Abp.FeatureManagement.Domain.Tests.csproj +++ b/modules/feature-management/test/Volo.Abp.FeatureManagement.Domain.Tests/Volo.Abp.FeatureManagement.Domain.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/test/Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests/Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests.csproj b/modules/feature-management/test/Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests/Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests.csproj index abf92185e2..c62851d87d 100644 --- a/modules/feature-management/test/Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests/Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests.csproj +++ b/modules/feature-management/test/Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests/Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/test/Volo.Abp.FeatureManagement.MongoDB.Tests/Volo.Abp.FeatureManagement.MongoDB.Tests.csproj b/modules/feature-management/test/Volo.Abp.FeatureManagement.MongoDB.Tests/Volo.Abp.FeatureManagement.MongoDB.Tests.csproj index 065eb7c06e..bfc01a429f 100644 --- a/modules/feature-management/test/Volo.Abp.FeatureManagement.MongoDB.Tests/Volo.Abp.FeatureManagement.MongoDB.Tests.csproj +++ b/modules/feature-management/test/Volo.Abp.FeatureManagement.MongoDB.Tests/Volo.Abp.FeatureManagement.MongoDB.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/feature-management/test/Volo.Abp.FeatureManagement.TestBase/Volo.Abp.FeatureManagement.TestBase.csproj b/modules/feature-management/test/Volo.Abp.FeatureManagement.TestBase/Volo.Abp.FeatureManagement.TestBase.csproj index 85e88061f8..087b722b89 100644 --- a/modules/feature-management/test/Volo.Abp.FeatureManagement.TestBase/Volo.Abp.FeatureManagement.TestBase.csproj +++ b/modules/feature-management/test/Volo.Abp.FeatureManagement.TestBase/Volo.Abp.FeatureManagement.TestBase.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/identity/src/Volo.Abp.Identity.Application.Contracts/Volo.Abp.Identity.Application.Contracts.csproj b/modules/identity/src/Volo.Abp.Identity.Application.Contracts/Volo.Abp.Identity.Application.Contracts.csproj index c0cfc5ad56..b3e4f60a44 100644 --- a/modules/identity/src/Volo.Abp.Identity.Application.Contracts/Volo.Abp.Identity.Application.Contracts.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Application.Contracts/Volo.Abp.Identity.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.Identity.Application.Contracts Volo.Abp.Identity.Application.Contracts $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/src/Volo.Abp.Identity.Application/Volo.Abp.Identity.Application.csproj b/modules/identity/src/Volo.Abp.Identity.Application/Volo.Abp.Identity.Application.csproj index b1c86f75e7..0b3693b5d1 100644 --- a/modules/identity/src/Volo.Abp.Identity.Application/Volo.Abp.Identity.Application.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Application/Volo.Abp.Identity.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.Application Volo.Abp.Identity.Application $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo.Abp.Identity.AspNetCore.csproj b/modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo.Abp.Identity.AspNetCore.csproj index 417a290c59..a2300c6fe8 100644 --- a/modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo.Abp.Identity.AspNetCore.csproj +++ b/modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo.Abp.Identity.AspNetCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.AspNetCore Volo.Abp.Identity.AspNetCore $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor.Server/Volo.Abp.Identity.Blazor.Server.csproj b/modules/identity/src/Volo.Abp.Identity.Blazor.Server/Volo.Abp.Identity.Blazor.Server.csproj index b0842bab2b..48bf39d389 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor.Server/Volo.Abp.Identity.Blazor.Server.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Blazor.Server/Volo.Abp.Identity.Blazor.Server.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor.WebAssembly/Volo.Abp.Identity.Blazor.WebAssembly.csproj b/modules/identity/src/Volo.Abp.Identity.Blazor.WebAssembly/Volo.Abp.Identity.Blazor.WebAssembly.csproj index eb0c59491d..c50aa8226a 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor.WebAssembly/Volo.Abp.Identity.Blazor.WebAssembly.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Blazor.WebAssembly/Volo.Abp.Identity.Blazor.WebAssembly.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor/Volo.Abp.Identity.Blazor.csproj b/modules/identity/src/Volo.Abp.Identity.Blazor/Volo.Abp.Identity.Blazor.csproj index cb14673ade..355cb4294a 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor/Volo.Abp.Identity.Blazor.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Blazor/Volo.Abp.Identity.Blazor.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj b/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj index 88810a15c8..eeff061007 100644 --- a/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.Identity.Domain.Shared Volo.Abp.Identity.Domain.Shared $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/Identity/IdentitySessionConsts.cs b/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/Identity/IdentitySessionConsts.cs index 96cb8df5c9..ca047730ee 100644 --- a/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/Identity/IdentitySessionConsts.cs +++ b/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/Identity/IdentitySessionConsts.cs @@ -10,5 +10,5 @@ public class IdentitySessionConsts public static int MaxClientIdLength { get; set; } = 64; - public static int MaxIpAddressesLength { get; set; } = 256; + public static int MaxIpAddressesLength { get; set; } = 2048; } diff --git a/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/ObjectExtending/IdentityModuleExtensionConfiguration.cs b/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/ObjectExtending/IdentityModuleExtensionConfiguration.cs index 4bcf4f01e3..bb8386dda9 100644 --- a/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/ObjectExtending/IdentityModuleExtensionConfiguration.cs +++ b/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/ObjectExtending/IdentityModuleExtensionConfiguration.cs @@ -40,4 +40,13 @@ public class IdentityModuleExtensionConfiguration : ModuleExtensionConfiguration configureAction ); } + + public IdentityModuleExtensionConfiguration ConfigureIdentitySession( + Action configureAction) + { + return this.ConfigureEntity( + IdentityModuleExtensionConsts.EntityNames.IdentitySession, + configureAction + ); + } } diff --git a/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/ObjectExtending/IdentityModuleExtensionConsts.cs b/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/ObjectExtending/IdentityModuleExtensionConsts.cs index 5135cf22b8..4e3c5ab4a2 100644 --- a/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/ObjectExtending/IdentityModuleExtensionConsts.cs +++ b/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo/Abp/ObjectExtending/IdentityModuleExtensionConsts.cs @@ -13,6 +13,8 @@ public static class IdentityModuleExtensionConsts public const string ClaimType = "ClaimType"; public const string OrganizationUnit = "OrganizationUnit"; + + public const string IdentitySession = "IdentitySession"; } public static class ConfigurationNames diff --git a/modules/identity/src/Volo.Abp.Identity.Domain/Volo.Abp.Identity.Domain.csproj b/modules/identity/src/Volo.Abp.Identity.Domain/Volo.Abp.Identity.Domain.csproj index ae1703110e..fadd6e4109 100644 --- a/modules/identity/src/Volo.Abp.Identity.Domain/Volo.Abp.Identity.Domain.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Domain/Volo.Abp.Identity.Domain.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.Domain Volo.Abp.Identity.Domain $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/AbpIdentityDomainModule.cs b/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/AbpIdentityDomainModule.cs index 49f353153b..baf0871c58 100644 --- a/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/AbpIdentityDomainModule.cs +++ b/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/AbpIdentityDomainModule.cs @@ -99,6 +99,12 @@ public class AbpIdentityDomainModule : AbpModule IdentityModuleExtensionConsts.EntityNames.OrganizationUnit, typeof(OrganizationUnit) ); + + ModuleExtensionConfigurationHelper.ApplyEntityConfigurationToEntity( + IdentityModuleExtensionConsts.ModuleName, + IdentityModuleExtensionConsts.EntityNames.IdentitySession, + typeof(IdentitySession) + ); }); } } diff --git a/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentitySession.cs b/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentitySession.cs index c25a6b2e82..717bc7f989 100644 --- a/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentitySession.cs +++ b/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentitySession.cs @@ -5,7 +5,7 @@ using Volo.Abp.MultiTenancy; namespace Volo.Abp.Identity; -public class IdentitySession : BasicAggregateRoot, IMultiTenant +public class IdentitySession : AggregateRoot, IMultiTenant { public virtual string SessionId { get; protected set; } @@ -80,7 +80,22 @@ public class IdentitySession : BasicAggregateRoot, IMultiTenant private static string JoinAsString(IEnumerable list) { var serialized = string.Join(",", list); - return serialized.IsNullOrWhiteSpace() ? null : serialized; + if (serialized.IsNullOrWhiteSpace()) + { + return null; + } + + while (serialized.Length > IdentitySessionConsts.MaxIpAddressesLength) + { + var lastCommaIndex = serialized.IndexOf(','); + if (lastCommaIndex < 0) + { + return serialized; + } + serialized = serialized.Substring(lastCommaIndex + 1); + } + + return serialized; } private string[] GetArrayFromString(string str) diff --git a/modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo.Abp.Identity.EntityFrameworkCore.csproj b/modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo.Abp.Identity.EntityFrameworkCore.csproj index 794c28d1a2..b94b3f7637 100644 --- a/modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo.Abp.Identity.EntityFrameworkCore.csproj +++ b/modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo.Abp.Identity.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.EntityFrameworkCore Volo.Abp.Identity.EntityFrameworkCore $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo.Abp.Identity.HttpApi.Client.csproj b/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo.Abp.Identity.HttpApi.Client.csproj index 488b4c0678..d47d10bcac 100644 --- a/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo.Abp.Identity.HttpApi.Client.csproj +++ b/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo.Abp.Identity.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.Identity.HttpApi.Client Volo.Abp.Identity.HttpApi.Client $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/src/Volo.Abp.Identity.HttpApi/Volo.Abp.Identity.HttpApi.csproj b/modules/identity/src/Volo.Abp.Identity.HttpApi/Volo.Abp.Identity.HttpApi.csproj index a5d6550574..1c76f7e9a2 100644 --- a/modules/identity/src/Volo.Abp.Identity.HttpApi/Volo.Abp.Identity.HttpApi.csproj +++ b/modules/identity/src/Volo.Abp.Identity.HttpApi/Volo.Abp.Identity.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.HttpApi Volo.Abp.Identity.HttpApi $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj b/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj index 870786b900..bed3e27a0e 100644 --- a/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/identity/src/Volo.Abp.Identity.MongoDB/Volo.Abp.Identity.MongoDB.csproj b/modules/identity/src/Volo.Abp.Identity.MongoDB/Volo.Abp.Identity.MongoDB.csproj index cc1b206cd2..dade845737 100644 --- a/modules/identity/src/Volo.Abp.Identity.MongoDB/Volo.Abp.Identity.MongoDB.csproj +++ b/modules/identity/src/Volo.Abp.Identity.MongoDB/Volo.Abp.Identity.MongoDB.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.MongoDB Volo.Abp.Identity.MongoDB $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/src/Volo.Abp.Identity.Web/Volo.Abp.Identity.Web.csproj b/modules/identity/src/Volo.Abp.Identity.Web/Volo.Abp.Identity.Web.csproj index 14aeb0e98f..8a77024b52 100644 --- a/modules/identity/src/Volo.Abp.Identity.Web/Volo.Abp.Identity.Web.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Web/Volo.Abp.Identity.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.Web Volo.Abp.Identity.Web $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/src/Volo.Abp.PermissionManagement.Domain.Identity/Volo.Abp.PermissionManagement.Domain.Identity.csproj b/modules/identity/src/Volo.Abp.PermissionManagement.Domain.Identity/Volo.Abp.PermissionManagement.Domain.Identity.csproj index 35ce121c09..c4ebdc3e96 100644 --- a/modules/identity/src/Volo.Abp.PermissionManagement.Domain.Identity/Volo.Abp.PermissionManagement.Domain.Identity.csproj +++ b/modules/identity/src/Volo.Abp.PermissionManagement.Domain.Identity/Volo.Abp.PermissionManagement.Domain.Identity.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.PermissionManagement.Domain.Identity Volo.Abp.PermissionManagement.Domain.Identity $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identity/test/Volo.Abp.Identity.Application.Tests/Volo.Abp.Identity.Application.Tests.csproj b/modules/identity/test/Volo.Abp.Identity.Application.Tests/Volo.Abp.Identity.Application.Tests.csproj index 5c9aa60fe3..9668507cba 100644 --- a/modules/identity/test/Volo.Abp.Identity.Application.Tests/Volo.Abp.Identity.Application.Tests.csproj +++ b/modules/identity/test/Volo.Abp.Identity.Application.Tests/Volo.Abp.Identity.Application.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.Application.Tests Volo.Abp.Identity.Application.Tests true diff --git a/modules/identity/test/Volo.Abp.Identity.AspNetCore.Tests/Volo.Abp.Identity.AspNetCore.Tests.csproj b/modules/identity/test/Volo.Abp.Identity.AspNetCore.Tests/Volo.Abp.Identity.AspNetCore.Tests.csproj index 942b19aa65..f90059007e 100644 --- a/modules/identity/test/Volo.Abp.Identity.AspNetCore.Tests/Volo.Abp.Identity.AspNetCore.Tests.csproj +++ b/modules/identity/test/Volo.Abp.Identity.AspNetCore.Tests/Volo.Abp.Identity.AspNetCore.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.AspNetCore.Tests Volo.Abp.Identity.AspNetCore.Tests true diff --git a/modules/identity/test/Volo.Abp.Identity.Domain.Tests/Volo.Abp.Identity.Domain.Tests.csproj b/modules/identity/test/Volo.Abp.Identity.Domain.Tests/Volo.Abp.Identity.Domain.Tests.csproj index 9d1799e5ac..07e83cfa5c 100644 --- a/modules/identity/test/Volo.Abp.Identity.Domain.Tests/Volo.Abp.Identity.Domain.Tests.csproj +++ b/modules/identity/test/Volo.Abp.Identity.Domain.Tests/Volo.Abp.Identity.Domain.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.Domain.Tests Volo.Abp.Identity.Domain.Tests true diff --git a/modules/identity/test/Volo.Abp.Identity.EntityFrameworkCore.Tests/Volo.Abp.Identity.EntityFrameworkCore.Tests.csproj b/modules/identity/test/Volo.Abp.Identity.EntityFrameworkCore.Tests/Volo.Abp.Identity.EntityFrameworkCore.Tests.csproj index 279f967d04..30834f6ae0 100644 --- a/modules/identity/test/Volo.Abp.Identity.EntityFrameworkCore.Tests/Volo.Abp.Identity.EntityFrameworkCore.Tests.csproj +++ b/modules/identity/test/Volo.Abp.Identity.EntityFrameworkCore.Tests/Volo.Abp.Identity.EntityFrameworkCore.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.EntityFrameworkCore.Tests Volo.Abp.Identity.EntityFrameworkCore.Tests true diff --git a/modules/identity/test/Volo.Abp.Identity.MongoDB.Tests/Volo.Abp.Identity.MongoDB.Tests.csproj b/modules/identity/test/Volo.Abp.Identity.MongoDB.Tests/Volo.Abp.Identity.MongoDB.Tests.csproj index 53277e236b..cc463e1cc8 100644 --- a/modules/identity/test/Volo.Abp.Identity.MongoDB.Tests/Volo.Abp.Identity.MongoDB.Tests.csproj +++ b/modules/identity/test/Volo.Abp.Identity.MongoDB.Tests/Volo.Abp.Identity.MongoDB.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.MongoDB.Tests Volo.Abp.Identity.MongoDB.Tests true diff --git a/modules/identity/test/Volo.Abp.Identity.TestBase/Volo.Abp.Identity.TestBase.csproj b/modules/identity/test/Volo.Abp.Identity.TestBase/Volo.Abp.Identity.TestBase.csproj index 7e7b09e0a8..164db72591 100644 --- a/modules/identity/test/Volo.Abp.Identity.TestBase/Volo.Abp.Identity.TestBase.csproj +++ b/modules/identity/test/Volo.Abp.Identity.TestBase/Volo.Abp.Identity.TestBase.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.Identity.TestBase Volo.Abp.Identity.TestBase true diff --git a/modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo.Abp.IdentityServer.Domain.Shared.csproj b/modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo.Abp.IdentityServer.Domain.Shared.csproj index 3ad8161ddd..e1809e87c7 100644 --- a/modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo.Abp.IdentityServer.Domain.Shared.csproj +++ b/modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo.Abp.IdentityServer.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.IdentityServer.Domain.Shared Volo.Abp.IdentityServer.Domain.Shared $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo.Abp.IdentityServer.Domain.csproj b/modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo.Abp.IdentityServer.Domain.csproj index 8adcd1b64e..fd856b4ca3 100644 --- a/modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo.Abp.IdentityServer.Domain.csproj +++ b/modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo.Abp.IdentityServer.Domain.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.IdentityServer.Domain Volo.Abp.IdentityServer.Domain $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore/Volo.Abp.IdentityServer.EntityFrameworkCore.csproj b/modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore/Volo.Abp.IdentityServer.EntityFrameworkCore.csproj index 84fcc79e2b..fd395e18c5 100644 --- a/modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore/Volo.Abp.IdentityServer.EntityFrameworkCore.csproj +++ b/modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore/Volo.Abp.IdentityServer.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.IdentityServer.EntityFrameworkCore Volo.Abp.IdentityServer.EntityFrameworkCore $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identityserver/src/Volo.Abp.IdentityServer.Installer/Volo.Abp.IdentityServer.Installer.csproj b/modules/identityserver/src/Volo.Abp.IdentityServer.Installer/Volo.Abp.IdentityServer.Installer.csproj index 9948359539..70ff74a757 100644 --- a/modules/identityserver/src/Volo.Abp.IdentityServer.Installer/Volo.Abp.IdentityServer.Installer.csproj +++ b/modules/identityserver/src/Volo.Abp.IdentityServer.Installer/Volo.Abp.IdentityServer.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/identityserver/src/Volo.Abp.IdentityServer.MongoDB/Volo.Abp.IdentityServer.MongoDB.csproj b/modules/identityserver/src/Volo.Abp.IdentityServer.MongoDB/Volo.Abp.IdentityServer.MongoDB.csproj index d435497011..6ff4707b67 100644 --- a/modules/identityserver/src/Volo.Abp.IdentityServer.MongoDB/Volo.Abp.IdentityServer.MongoDB.csproj +++ b/modules/identityserver/src/Volo.Abp.IdentityServer.MongoDB/Volo.Abp.IdentityServer.MongoDB.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.IdentityServer.MongoDB Volo.Abp.IdentityServer.MongoDB $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identityserver/src/Volo.Abp.PermissionManagement.Domain.IdentityServer/Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj b/modules/identityserver/src/Volo.Abp.PermissionManagement.Domain.IdentityServer/Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj index 9d64701972..0790df6eeb 100644 --- a/modules/identityserver/src/Volo.Abp.PermissionManagement.Domain.IdentityServer/Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj +++ b/modules/identityserver/src/Volo.Abp.PermissionManagement.Domain.IdentityServer/Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.PermissionManagement.Domain.IdentityServer Volo.Abp.PermissionManagement.Domain.IdentityServer $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/identityserver/test/Volo.Abp.IdentityServer.Domain.Tests/Volo.Abp.IdentityServer.Domain.Tests.csproj b/modules/identityserver/test/Volo.Abp.IdentityServer.Domain.Tests/Volo.Abp.IdentityServer.Domain.Tests.csproj index 9182b5c000..44df7ababd 100644 --- a/modules/identityserver/test/Volo.Abp.IdentityServer.Domain.Tests/Volo.Abp.IdentityServer.Domain.Tests.csproj +++ b/modules/identityserver/test/Volo.Abp.IdentityServer.Domain.Tests/Volo.Abp.IdentityServer.Domain.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.IdentityServer.Domain.Tests Volo.Abp.IdentityServer.Domain.Tests true diff --git a/modules/identityserver/test/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests.csproj b/modules/identityserver/test/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests.csproj index 544010110e..5187ebb3e4 100644 --- a/modules/identityserver/test/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests.csproj +++ b/modules/identityserver/test/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.IdentityServer.EntityFrameworkCore.Tests Volo.Abp.IdentityServer.EntityFrameworkCore.Tests true diff --git a/modules/identityserver/test/Volo.Abp.IdentityServer.MongoDB.Tests/Volo.Abp.IdentityServer.MongoDB.Tests.csproj b/modules/identityserver/test/Volo.Abp.IdentityServer.MongoDB.Tests/Volo.Abp.IdentityServer.MongoDB.Tests.csproj index 18b4e020cd..d2d7bf8a0e 100644 --- a/modules/identityserver/test/Volo.Abp.IdentityServer.MongoDB.Tests/Volo.Abp.IdentityServer.MongoDB.Tests.csproj +++ b/modules/identityserver/test/Volo.Abp.IdentityServer.MongoDB.Tests/Volo.Abp.IdentityServer.MongoDB.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.IdentityServer.MongoDB.Tests Volo.Abp.IdentityServer.MongoDB.Tests true diff --git a/modules/identityserver/test/Volo.Abp.IdentityServer.TestBase/Volo.Abp.IdentityServer.TestBase.csproj b/modules/identityserver/test/Volo.Abp.IdentityServer.TestBase/Volo.Abp.IdentityServer.TestBase.csproj index 01ba3c46be..01d50ea26f 100644 --- a/modules/identityserver/test/Volo.Abp.IdentityServer.TestBase/Volo.Abp.IdentityServer.TestBase.csproj +++ b/modules/identityserver/test/Volo.Abp.IdentityServer.TestBase/Volo.Abp.IdentityServer.TestBase.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.IdentityServer.TestBase Volo.Abp.IdentityServer.TestBase true diff --git a/modules/openiddict/app/OpenIddict.Demo.API/OpenIddict.Demo.API.csproj b/modules/openiddict/app/OpenIddict.Demo.API/OpenIddict.Demo.API.csproj index cf0cd880b2..ea9fc99387 100644 --- a/modules/openiddict/app/OpenIddict.Demo.API/OpenIddict.Demo.API.csproj +++ b/modules/openiddict/app/OpenIddict.Demo.API/OpenIddict.Demo.API.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable diff --git a/modules/openiddict/app/OpenIddict.Demo.Client.BlazorWASM/OpenIddict.Demo.Client.BlazorWASM.csproj b/modules/openiddict/app/OpenIddict.Demo.Client.BlazorWASM/OpenIddict.Demo.Client.BlazorWASM.csproj index 36e3fbc1e2..05f4b7ddab 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Client.BlazorWASM/OpenIddict.Demo.Client.BlazorWASM.csproj +++ b/modules/openiddict/app/OpenIddict.Demo.Client.BlazorWASM/OpenIddict.Demo.Client.BlazorWASM.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable diff --git a/modules/openiddict/app/OpenIddict.Demo.Client.Console/OpenIddict.Demo.Client.Console.csproj b/modules/openiddict/app/OpenIddict.Demo.Client.Console/OpenIddict.Demo.Client.Console.csproj index df2cf07651..153955d3ad 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Client.Console/OpenIddict.Demo.Client.Console.csproj +++ b/modules/openiddict/app/OpenIddict.Demo.Client.Console/OpenIddict.Demo.Client.Console.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 enable enable diff --git a/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/OpenIddict.Demo.Client.Mvc.csproj b/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/OpenIddict.Demo.Client.Mvc.csproj index f4a7e24d6e..981a815659 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/OpenIddict.Demo.Client.Mvc.csproj +++ b/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/OpenIddict.Demo.Client.Mvc.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable diff --git a/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/Program.cs b/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/Program.cs index 108919797a..3f9afcfcbc 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/Program.cs +++ b/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/Program.cs @@ -49,7 +49,7 @@ if (!app.Environment.IsDevelopment()) } app.UseHttpsRedirection(); -app.UseStaticFiles(); +app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240427010513_Initial.Designer.cs b/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240829013142_Initial.Designer.cs similarity index 95% rename from modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240427010513_Initial.Designer.cs rename to modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240829013142_Initial.Designer.cs index dfea4e41ba..158f345fbe 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240427010513_Initial.Designer.cs +++ b/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240829013142_Initial.Designer.cs @@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; namespace OpenIddict.Demo.Server.Migrations { [DbContext(typeof(ServerDbContext))] - [Migration("20240427010513_Initial")] + [Migration("20240829013142_Initial")] partial class Initial { /// @@ -22,7 +22,7 @@ namespace OpenIddict.Demo.Server.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "8.0.4") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -990,41 +990,11 @@ namespace OpenIddict.Demo.Server.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1149,22 +1119,6 @@ namespace OpenIddict.Demo.Server.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1173,20 +1127,6 @@ namespace OpenIddict.Demo.Server.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240427010513_Initial.cs b/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240829013142_Initial.cs similarity index 97% rename from modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240427010513_Initial.cs rename to modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240829013142_Initial.cs index dabfc5ffa3..537745685f 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240427010513_Initial.cs +++ b/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/20240829013142_Initial.cs @@ -614,14 +614,7 @@ namespace OpenIddict.Demo.Server.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -650,14 +643,7 @@ namespace OpenIddict.Demo.Server.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/ServerDbContextModelSnapshot.cs b/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/ServerDbContextModelSnapshot.cs index a2be3405db..bdbb1fca9b 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/ServerDbContextModelSnapshot.cs +++ b/modules/openiddict/app/OpenIddict.Demo.Server/Migrations/ServerDbContextModelSnapshot.cs @@ -19,7 +19,7 @@ namespace OpenIddict.Demo.Server.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "8.0.4") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -987,41 +987,11 @@ namespace OpenIddict.Demo.Server.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1146,22 +1116,6 @@ namespace OpenIddict.Demo.Server.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1170,20 +1124,6 @@ namespace OpenIddict.Demo.Server.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/OpenIddict.Demo.Server.csproj b/modules/openiddict/app/OpenIddict.Demo.Server/OpenIddict.Demo.Server.csproj index 60bbb53ee8..4c283c18ce 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Server/OpenIddict.Demo.Server.csproj +++ b/modules/openiddict/app/OpenIddict.Demo.Server/OpenIddict.Demo.Server.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/OpenIddictServerModule.cs b/modules/openiddict/app/OpenIddict.Demo.Server/OpenIddictServerModule.cs index e73bb0e77f..b6e262ee32 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Server/OpenIddictServerModule.cs +++ b/modules/openiddict/app/OpenIddict.Demo.Server/OpenIddictServerModule.cs @@ -34,6 +34,7 @@ using Volo.Abp.SettingManagement.Web; using Volo.Abp.TenantManagement; using Volo.Abp.TenantManagement.EntityFrameworkCore; using Volo.Abp.TenantManagement.Web; +using Volo.Abp.Uow; namespace OpenIddict.Demo.Server; @@ -116,7 +117,7 @@ public class OpenIddictServerModule : AbpModule PreConfigure(options => { options.EnableWildcardDomainSupport = true; - options.WildcardDomainsFormat.Add("https://{0}.abp.io/signin-oidc"); + options.WildcardDomainsFormat.Add("https://*.abp.io"); }); PreConfigure(builder => @@ -155,8 +156,19 @@ public class OpenIddictServerModule : AbpModule }); } - public async override Task OnApplicationInitializationAsync(ApplicationInitializationContext context) + public async override Task OnPreApplicationInitializationAsync(ApplicationInitializationContext context) { + using var uow = context.ServiceProvider.GetRequiredService().Begin(); + { + var dbContext = await context.ServiceProvider.GetRequiredService>().GetDbContextAsync(); + if ((await dbContext.Database.GetPendingMigrationsAsync()).Any()) + { + await dbContext.Database.MigrateAsync(); + } + + await uow.CompleteAsync(); + } + await context.ServiceProvider .GetRequiredService() .SeedAsync(); diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/Program.cs b/modules/openiddict/app/OpenIddict.Demo.Server/Program.cs index dd16dfb75b..9b3126f594 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Server/Program.cs +++ b/modules/openiddict/app/OpenIddict.Demo.Server/Program.cs @@ -47,7 +47,7 @@ if (!app.Environment.IsDevelopment()) } app.UseHttpsRedirection(); -app.UseStaticFiles(); +app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo.Abp.OpenIddict.AspNetCore.csproj b/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo.Abp.OpenIddict.AspNetCore.csproj index 3abe215eaf..b249bd5029 100644 --- a/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo.Abp.OpenIddict.AspNetCore.csproj +++ b/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo.Abp.OpenIddict.AspNetCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Library true diff --git a/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/WildcardDomains/AbpOpenIddictWildcardDomainBase.cs b/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/WildcardDomains/AbpOpenIddictWildcardDomainBase.cs index c3ba2c6bce..ccecad07c1 100644 --- a/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/WildcardDomains/AbpOpenIddictWildcardDomainBase.cs +++ b/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/WildcardDomains/AbpOpenIddictWildcardDomainBase.cs @@ -1,10 +1,12 @@ -using System; +using System.Collections.Generic; +using System.Linq; using System.Threading.Tasks; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging.Abstractions; using Microsoft.Extensions.Options; +using Microsoft.IdentityModel.Tokens; using OpenIddict.Server; -using Volo.Abp.Text.Formatting; +using Volo.Abp.Http; namespace Volo.Abp.OpenIddict.WildcardDomains; @@ -29,30 +31,24 @@ public abstract class AbpOpenIddictWildcardDomainBase CheckWildcardDomainAsync(string url) { - Logger.LogDebug("Checking wildcard domain for url: {url}", url); - - foreach (var domainFormat in WildcardDomainOptions.WildcardDomainsFormat) + if (WildcardDomainOptions.WildcardDomainsFormat.IsNullOrEmpty()) { - Logger.LogDebug("Checking wildcard domain format: {domainFormat}", domainFormat); - var extractResult = FormattedStringValueExtracter.Extract(url, domainFormat, ignoreCase: true); - if (extractResult.IsMatch) - { - Logger.LogDebug("Wildcard domain found for url: {url}", url); - return Task.FromResult(true); - } + Logger.LogDebug("No wildcard domain format configured."); + return Task.FromResult(false); } - foreach (var domainFormat in WildcardDomainOptions.WildcardDomainsFormat) + Logger.LogDebug("Checking wildcard domain for url: {url}", url); + foreach (var domain in WildcardDomainOptions.WildcardDomainsFormat.Select(domainFormat => domainFormat.Replace("{0}", "*"))) { - Logger.LogDebug("Checking wildcard domain format: {domainFormat}", domainFormat); - if (domainFormat.Replace("{0}.", "").Equals(url, StringComparison.OrdinalIgnoreCase)) + Logger.LogDebug("Checking wildcard domain format: {domain}", domain); + if (UrlHelpers.IsSubdomainOf(url, domain)) { - Logger.LogDebug("Wildcard domain found for url: {url}", url); + Logger.LogDebug("The url: {url} is a wildcard domain of: {domain}", url, domain); return Task.FromResult(true); } } - Logger.LogDebug("Wildcard domain not found for url: {url}", url); + Logger.LogDebug("No wildcard domain found for url: {url}", url); return Task.FromResult(false); } } diff --git a/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/WildcardDomains/AbpOpenIddictWildcardDomainOptions.cs b/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/WildcardDomains/AbpOpenIddictWildcardDomainOptions.cs index 358974e3d6..54c56178f9 100644 --- a/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/WildcardDomains/AbpOpenIddictWildcardDomainOptions.cs +++ b/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/WildcardDomains/AbpOpenIddictWildcardDomainOptions.cs @@ -6,6 +6,9 @@ public class AbpOpenIddictWildcardDomainOptions { public bool EnableWildcardDomainSupport { get; set; } + /// + /// Wildcard domains format. For example: https://*.abp.io + /// public HashSet WildcardDomainsFormat { get; } public AbpOpenIddictWildcardDomainOptions() diff --git a/modules/openiddict/src/Volo.Abp.OpenIddict.Domain.Shared/Volo.Abp.OpenIddict.Domain.Shared.csproj b/modules/openiddict/src/Volo.Abp.OpenIddict.Domain.Shared/Volo.Abp.OpenIddict.Domain.Shared.csproj index af678beb83..4354eb9b4c 100644 --- a/modules/openiddict/src/Volo.Abp.OpenIddict.Domain.Shared/Volo.Abp.OpenIddict.Domain.Shared.csproj +++ b/modules/openiddict/src/Volo.Abp.OpenIddict.Domain.Shared/Volo.Abp.OpenIddict.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 true diff --git a/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo.Abp.OpenIddict.Domain.csproj b/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo.Abp.OpenIddict.Domain.csproj index 997895b1dd..553882da72 100644 --- a/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo.Abp.OpenIddict.Domain.csproj +++ b/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo.Abp.OpenIddict.Domain.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo/Abp/OpenIddict/Authorizations/OpenIddictAuthorization.cs b/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo/Abp/OpenIddict/Authorizations/OpenIddictAuthorization.cs index 76ea7d5d51..25870174ff 100644 --- a/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo/Abp/OpenIddict/Authorizations/OpenIddictAuthorization.cs +++ b/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo/Abp/OpenIddict/Authorizations/OpenIddictAuthorization.cs @@ -1,10 +1,10 @@ using System; -using Volo.Abp.Domain.Entities.Auditing; +using Volo.Abp.Domain.Entities; using Volo.Abp.Timing; namespace Volo.Abp.OpenIddict.Authorizations; -public class OpenIddictAuthorization : FullAuditedAggregateRoot +public class OpenIddictAuthorization : AggregateRoot { public OpenIddictAuthorization() { diff --git a/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo/Abp/OpenIddict/Tokens/AbpOpenIddictTokenStore.cs b/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo/Abp/OpenIddict/Tokens/AbpOpenIddictTokenStore.cs index c8d1f0895c..7e2bf3dff3 100644 --- a/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo/Abp/OpenIddict/Tokens/AbpOpenIddictTokenStore.cs +++ b/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo/Abp/OpenIddict/Tokens/AbpOpenIddictTokenStore.cs @@ -63,7 +63,7 @@ public class AbpOpenIddictTokenStore : AbpOpenIddictStoreBase +public class OpenIddictToken : AggregateRoot { public OpenIddictToken() { diff --git a/modules/openiddict/src/Volo.Abp.OpenIddict.EntityFrameworkCore/Volo.Abp.OpenIddict.EntityFrameworkCore.csproj b/modules/openiddict/src/Volo.Abp.OpenIddict.EntityFrameworkCore/Volo.Abp.OpenIddict.EntityFrameworkCore.csproj index b41e5d6ec7..14a48c7513 100644 --- a/modules/openiddict/src/Volo.Abp.OpenIddict.EntityFrameworkCore/Volo.Abp.OpenIddict.EntityFrameworkCore.csproj +++ b/modules/openiddict/src/Volo.Abp.OpenIddict.EntityFrameworkCore/Volo.Abp.OpenIddict.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/openiddict/src/Volo.Abp.OpenIddict.Installer/Volo.Abp.OpenIddict.Installer.csproj b/modules/openiddict/src/Volo.Abp.OpenIddict.Installer/Volo.Abp.OpenIddict.Installer.csproj index 88d9ceeaad..8892ec0ef3 100644 --- a/modules/openiddict/src/Volo.Abp.OpenIddict.Installer/Volo.Abp.OpenIddict.Installer.csproj +++ b/modules/openiddict/src/Volo.Abp.OpenIddict.Installer/Volo.Abp.OpenIddict.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/openiddict/src/Volo.Abp.OpenIddict.MongoDB/Volo.Abp.OpenIddict.MongoDB.csproj b/modules/openiddict/src/Volo.Abp.OpenIddict.MongoDB/Volo.Abp.OpenIddict.MongoDB.csproj index 799e4b3c23..e2d05620bf 100644 --- a/modules/openiddict/src/Volo.Abp.OpenIddict.MongoDB/Volo.Abp.OpenIddict.MongoDB.csproj +++ b/modules/openiddict/src/Volo.Abp.OpenIddict.MongoDB/Volo.Abp.OpenIddict.MongoDB.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/openiddict/src/Volo.Abp.PermissionManagement.Domain.OpenIddict/Volo.Abp.PermissionManagement.Domain.OpenIddict.csproj b/modules/openiddict/src/Volo.Abp.PermissionManagement.Domain.OpenIddict/Volo.Abp.PermissionManagement.Domain.OpenIddict.csproj index 0a1e2b64b6..838ddbcd86 100644 --- a/modules/openiddict/src/Volo.Abp.PermissionManagement.Domain.OpenIddict/Volo.Abp.PermissionManagement.Domain.OpenIddict.csproj +++ b/modules/openiddict/src/Volo.Abp.PermissionManagement.Domain.OpenIddict/Volo.Abp.PermissionManagement.Domain.OpenIddict.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.PermissionManagement.Domain.OpenIddict Volo.Abp.PermissionManagement.Domain.OpenIddict $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/openiddict/test/Volo.Abp.OpenIddict.Domain.Tests/Volo.Abp.OpenIddict.Domain.Tests.csproj b/modules/openiddict/test/Volo.Abp.OpenIddict.Domain.Tests/Volo.Abp.OpenIddict.Domain.Tests.csproj index 89dbebe707..b38ab6f567 100644 --- a/modules/openiddict/test/Volo.Abp.OpenIddict.Domain.Tests/Volo.Abp.OpenIddict.Domain.Tests.csproj +++ b/modules/openiddict/test/Volo.Abp.OpenIddict.Domain.Tests/Volo.Abp.OpenIddict.Domain.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/openiddict/test/Volo.Abp.OpenIddict.Domain.Tests/Volo/Abp/OpenIddict/Tokens/AbpOpenIddictTokenStore_Tests.cs b/modules/openiddict/test/Volo.Abp.OpenIddict.Domain.Tests/Volo/Abp/OpenIddict/Tokens/AbpOpenIddictTokenStore_Tests.cs index 94e5d5710d..feaa7b38a4 100644 --- a/modules/openiddict/test/Volo.Abp.OpenIddict.Domain.Tests/Volo/Abp/OpenIddict/Tokens/AbpOpenIddictTokenStore_Tests.cs +++ b/modules/openiddict/test/Volo.Abp.OpenIddict.Domain.Tests/Volo/Abp/OpenIddict/Tokens/AbpOpenIddictTokenStore_Tests.cs @@ -19,7 +19,7 @@ public class AbpOpenIddictTokenStore_Tests : OpenIddictDomainTestBase _tokenStore = ServiceProvider.GetRequiredService>(); _testData = ServiceProvider.GetRequiredService(); } - + [Fact] public async Task CountAsync() { @@ -30,18 +30,18 @@ public class AbpOpenIddictTokenStore_Tests : OpenIddictDomainTestBase [Fact] public async Task CreateAsync() { - await _tokenStore.CreateAsync(new OpenIddictTokenModel + await _tokenStore.CreateAsync(new OpenIddictTokenModel { ApplicationId = _testData.App1Id, Payload = "TestPayload3", Subject = "TestSubject3", Type = "TestType3", Status = OpenIddictConstants.Statuses.Inactive, - + }, CancellationToken.None); var tokens = await _tokenStore.FindBySubjectAsync("TestSubject3", CancellationToken.None).ToListAsync(); - + tokens.Count.ShouldBe(1); var token = tokens.First(); token.ApplicationId.ShouldBe(_testData.App1Id); @@ -50,11 +50,12 @@ public class AbpOpenIddictTokenStore_Tests : OpenIddictDomainTestBase token.Type.ShouldBe("TestType3"); token.Status.ShouldBe(OpenIddictConstants.Statuses.Inactive); } - + [Fact] public async Task DeleteAsync() { var token = await _tokenStore.FindByIdAsync(_testData.Token1Id.ToString(), CancellationToken.None); + token.ShouldNotBeNull(); await _tokenStore.DeleteAsync(token, CancellationToken.None); token = await _tokenStore.FindByIdAsync(_testData.Token1Id.ToString(), CancellationToken.None); @@ -65,15 +66,15 @@ public class AbpOpenIddictTokenStore_Tests : OpenIddictDomainTestBase public async Task FindAsync_Should_Return_Empty_If_Not_Found() { var tokens = await _tokenStore.FindAsync("non_existing_subject", _testData.App1Id.ToString(), "non_existing_status", "non_existing_type", CancellationToken.None).ToListAsync(); - + tokens.Count.ShouldBe(0); } - + [Fact] public async Task FindAsync_Should_Return_Tokens_If_Found() { var tokens = await _tokenStore.FindAsync("TestSubject1", _testData.App1Id.ToString(),OpenIddictConstants.Statuses.Redeemed, "TestType1", CancellationToken.None).ToListAsync(); - + tokens.Count.ShouldBe(1); } @@ -81,15 +82,15 @@ public class AbpOpenIddictTokenStore_Tests : OpenIddictDomainTestBase public async Task FindByApplicationIdAsync_Should_Return_Empty_If_Not_Found() { var tokens = await _tokenStore.FindByApplicationIdAsync(Guid.NewGuid().ToString(), CancellationToken.None).ToListAsync(); - + tokens.Count.ShouldBe(0); } - + [Fact] public async Task FindByApplicationIdAsync_Should_Return_Tokens_If_Found() { var tokens = await _tokenStore.FindByApplicationIdAsync(_testData.App1Id.ToString(), CancellationToken.None).ToListAsync(); - + tokens.Count.ShouldBe(1); } @@ -121,7 +122,7 @@ public class AbpOpenIddictTokenStore_Tests : OpenIddictDomainTestBase var token = await _tokenStore.FindByReferenceIdAsync(Guid.NewGuid().ToString(), CancellationToken.None); token.ShouldBeNull(); } - + [Fact] public async Task FindByReferenceIdAsync_Should_Return_Token_If_Found() { @@ -145,7 +146,7 @@ public class AbpOpenIddictTokenStore_Tests : OpenIddictDomainTestBase await _tokenStore.UpdateAsync(token, CancellationToken.None); token = await _tokenStore.FindByIdAsync(_testData.Token1Id.ToString(), CancellationToken.None); - + token.ApplicationId.ShouldBe(_testData.App2Id); token.Payload.ShouldBe("New payload"); token.Subject.ShouldBe("New subject"); @@ -153,4 +154,4 @@ public class AbpOpenIddictTokenStore_Tests : OpenIddictDomainTestBase token.Status.ShouldBe(OpenIddictConstants.Statuses.Revoked); token.ExpirationDate.ShouldBe(now); } -} \ No newline at end of file +} diff --git a/modules/openiddict/test/Volo.Abp.OpenIddict.EntityFrameworkCore.Tests/Volo.Abp.OpenIddict.EntityFrameworkCore.Tests.csproj b/modules/openiddict/test/Volo.Abp.OpenIddict.EntityFrameworkCore.Tests/Volo.Abp.OpenIddict.EntityFrameworkCore.Tests.csproj index 7641653d34..ebd5bfe6b0 100644 --- a/modules/openiddict/test/Volo.Abp.OpenIddict.EntityFrameworkCore.Tests/Volo.Abp.OpenIddict.EntityFrameworkCore.Tests.csproj +++ b/modules/openiddict/test/Volo.Abp.OpenIddict.EntityFrameworkCore.Tests/Volo.Abp.OpenIddict.EntityFrameworkCore.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/openiddict/test/Volo.Abp.OpenIddict.MongoDB.Tests/Volo.Abp.OpenIddict.MongoDB.Tests.csproj b/modules/openiddict/test/Volo.Abp.OpenIddict.MongoDB.Tests/Volo.Abp.OpenIddict.MongoDB.Tests.csproj index 0f34eb5279..56512b464c 100644 --- a/modules/openiddict/test/Volo.Abp.OpenIddict.MongoDB.Tests/Volo.Abp.OpenIddict.MongoDB.Tests.csproj +++ b/modules/openiddict/test/Volo.Abp.OpenIddict.MongoDB.Tests/Volo.Abp.OpenIddict.MongoDB.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/openiddict/test/Volo.Abp.OpenIddict.TestBase/Volo.Abp.OpenIddict.TestBase.csproj b/modules/openiddict/test/Volo.Abp.OpenIddict.TestBase/Volo.Abp.OpenIddict.TestBase.csproj index e37ded9c20..273ac1521a 100644 --- a/modules/openiddict/test/Volo.Abp.OpenIddict.TestBase/Volo.Abp.OpenIddict.TestBase.csproj +++ b/modules/openiddict/test/Volo.Abp.OpenIddict.TestBase/Volo.Abp.OpenIddict.TestBase.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Application.Contracts/Volo.Abp.PermissionManagement.Application.Contracts.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Application.Contracts/Volo.Abp.PermissionManagement.Application.Contracts.csproj index 3271cd6376..da1ddff466 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Application.Contracts/Volo.Abp.PermissionManagement.Application.Contracts.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Application.Contracts/Volo.Abp.PermissionManagement.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.PermissionManagement.Application.Contracts Volo.Abp.PermissionManagement.Application.Contracts $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Application/Volo.Abp.PermissionManagement.Application.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Application/Volo.Abp.PermissionManagement.Application.csproj index c53416628b..b6a3186f32 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Application/Volo.Abp.PermissionManagement.Application.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Application/Volo.Abp.PermissionManagement.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.PermissionManagement.Application Volo.Abp.PermissionManagement.Application $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.Server/Volo.Abp.PermissionManagement.Blazor.Server.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.Server/Volo.Abp.PermissionManagement.Blazor.Server.csproj index ae9e2f4c54..bb43d9f6bd 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.Server/Volo.Abp.PermissionManagement.Blazor.Server.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.Server/Volo.Abp.PermissionManagement.Blazor.Server.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.WebAssembly/Volo.Abp.PermissionManagement.Blazor.WebAssembly.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.WebAssembly/Volo.Abp.PermissionManagement.Blazor.WebAssembly.csproj index b910b0efa1..91ffc7c085 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.WebAssembly/Volo.Abp.PermissionManagement.Blazor.WebAssembly.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.WebAssembly/Volo.Abp.PermissionManagement.Blazor.WebAssembly.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.csproj index 534ee94f6c..4983eaa9f8 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain.Shared/Volo.Abp.PermissionManagement.Domain.Shared.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain.Shared/Volo.Abp.PermissionManagement.Domain.Shared.csproj index d51b4c0d6b..29f7fb0f0c 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain.Shared/Volo.Abp.PermissionManagement.Domain.Shared.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain.Shared/Volo.Abp.PermissionManagement.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.PermissionManagement.Domain.Shared Volo.Abp.PermissionManagement.Domain.Shared $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain/Volo.Abp.PermissionManagement.Domain.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain/Volo.Abp.PermissionManagement.Domain.csproj index da302b957f..ead68c6d4c 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain/Volo.Abp.PermissionManagement.Domain.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain/Volo.Abp.PermissionManagement.Domain.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.PermissionManagement.Domain Volo.Abp.PermissionManagement.Domain $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.EntityFrameworkCore/Volo.Abp.PermissionManagement.EntityFrameworkCore.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.EntityFrameworkCore/Volo.Abp.PermissionManagement.EntityFrameworkCore.csproj index 344e8a1399..237e86c632 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.EntityFrameworkCore/Volo.Abp.PermissionManagement.EntityFrameworkCore.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.EntityFrameworkCore/Volo.Abp.PermissionManagement.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.PermissionManagement.EntityFrameworkCore Volo.Abp.PermissionManagement.EntityFrameworkCore $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi.Client/Volo.Abp.PermissionManagement.HttpApi.Client.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi.Client/Volo.Abp.PermissionManagement.HttpApi.Client.csproj index efb9a77ab2..f45610359f 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi.Client/Volo.Abp.PermissionManagement.HttpApi.Client.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi.Client/Volo.Abp.PermissionManagement.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.PermissionManagement.HttpApi.Client Volo.Abp.PermissionManagement.HttpApi.Client $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi/Volo.Abp.PermissionManagement.HttpApi.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi/Volo.Abp.PermissionManagement.HttpApi.csproj index 4acd140303..bbf7a25e15 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi/Volo.Abp.PermissionManagement.HttpApi.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.HttpApi/Volo.Abp.PermissionManagement.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.PermissionManagement.HttpApi Volo.Abp.PermissionManagement.HttpApi $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj index 54ace45b86..a427c594de 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.MongoDB/Volo.Abp.PermissionManagement.MongoDB.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.MongoDB/Volo.Abp.PermissionManagement.MongoDB.csproj index f7cf47b9fe..9c1904d4e1 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.MongoDB/Volo.Abp.PermissionManagement.MongoDB.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.MongoDB/Volo.Abp.PermissionManagement.MongoDB.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.PermissionManagement.MongoDB Volo.Abp.PermissionManagement.MongoDB $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/Volo.Abp.PermissionManagement.Web.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/Volo.Abp.PermissionManagement.Web.csproj index 25cb96d41f..1c80dda96c 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/Volo.Abp.PermissionManagement.Web.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/Volo.Abp.PermissionManagement.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.PermissionManagement.Web Volo.Abp.PermissionManagement.Web $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/permission-management/test/Volo.Abp.PermissionManagement.Application.Tests/Volo.Abp.PermissionManagement.Application.Tests.csproj b/modules/permission-management/test/Volo.Abp.PermissionManagement.Application.Tests/Volo.Abp.PermissionManagement.Application.Tests.csproj index 5b0cee6811..02e66da5dc 100644 --- a/modules/permission-management/test/Volo.Abp.PermissionManagement.Application.Tests/Volo.Abp.PermissionManagement.Application.Tests.csproj +++ b/modules/permission-management/test/Volo.Abp.PermissionManagement.Application.Tests/Volo.Abp.PermissionManagement.Application.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/permission-management/test/Volo.Abp.PermissionManagement.Domain.Tests/Volo.Abp.PermissionManagement.Domain.Tests.csproj b/modules/permission-management/test/Volo.Abp.PermissionManagement.Domain.Tests/Volo.Abp.PermissionManagement.Domain.Tests.csproj index 6e9a4482fe..de6aa80960 100644 --- a/modules/permission-management/test/Volo.Abp.PermissionManagement.Domain.Tests/Volo.Abp.PermissionManagement.Domain.Tests.csproj +++ b/modules/permission-management/test/Volo.Abp.PermissionManagement.Domain.Tests/Volo.Abp.PermissionManagement.Domain.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.PermissionManagement.Tests Volo.Abp.PermissionManagement.Tests true diff --git a/modules/permission-management/test/Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests/Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests.csproj b/modules/permission-management/test/Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests/Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests.csproj index 557b11da6e..25d2f5f09b 100644 --- a/modules/permission-management/test/Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests/Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests.csproj +++ b/modules/permission-management/test/Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests/Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests true diff --git a/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo.Abp.PermissionManagement.MongoDB.Tests.csproj b/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo.Abp.PermissionManagement.MongoDB.Tests.csproj index b1df40a0ba..757b0f164c 100644 --- a/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo.Abp.PermissionManagement.MongoDB.Tests.csproj +++ b/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo.Abp.PermissionManagement.MongoDB.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.PermissionManagement.MongoDB.Tests Volo.Abp.PermissionManagement.MongoDB.Tests true diff --git a/modules/permission-management/test/Volo.Abp.PermissionManagement.TestBase/Volo.Abp.PermissionManagement.TestBase.csproj b/modules/permission-management/test/Volo.Abp.PermissionManagement.TestBase/Volo.Abp.PermissionManagement.TestBase.csproj index 3875a2d53a..256c55a52d 100644 --- a/modules/permission-management/test/Volo.Abp.PermissionManagement.TestBase/Volo.Abp.PermissionManagement.TestBase.csproj +++ b/modules/permission-management/test/Volo.Abp.PermissionManagement.TestBase/Volo.Abp.PermissionManagement.TestBase.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.PermissionManagement.TestBase Volo.Abp.PermissionManagement.TestBase true diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/DemoAppModule.cs b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/DemoAppModule.cs index 0f89cb54d9..cbb97606bd 100644 --- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/DemoAppModule.cs +++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/DemoAppModule.cs @@ -120,7 +120,7 @@ public class DemoAppModule : AbpModule } app.UseHttpsRedirection(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/Volo.Abp.SettingManagement.DemoApp.csproj b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/Volo.Abp.SettingManagement.DemoApp.csproj index cdfcce8920..1cff37fc8a 100644 --- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/Volo.Abp.SettingManagement.DemoApp.csproj +++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/Volo.Abp.SettingManagement.DemoApp.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 InProcess true diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Application.Contracts/Volo.Abp.SettingManagement.Application.Contracts.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Application.Contracts/Volo.Abp.SettingManagement.Application.Contracts.csproj index 82db7f5c2e..8319a01228 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Application.Contracts/Volo.Abp.SettingManagement.Application.Contracts.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Application.Contracts/Volo.Abp.SettingManagement.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Application/Volo.Abp.SettingManagement.Application.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Application/Volo.Abp.SettingManagement.Application.csproj index cf94e76ffd..21fa053b49 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Application/Volo.Abp.SettingManagement.Application.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Application/Volo.Abp.SettingManagement.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.Server/Volo.Abp.SettingManagement.Blazor.Server.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.Server/Volo.Abp.SettingManagement.Blazor.Server.csproj index 069cf7e673..8880782e02 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.Server/Volo.Abp.SettingManagement.Blazor.Server.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.Server/Volo.Abp.SettingManagement.Blazor.Server.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.WebAssembly/Volo.Abp.SettingManagement.Blazor.WebAssembly.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.WebAssembly/Volo.Abp.SettingManagement.Blazor.WebAssembly.csproj index 8a2fb3b5d9..9e1e76dd75 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.WebAssembly/Volo.Abp.SettingManagement.Blazor.WebAssembly.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor.WebAssembly/Volo.Abp.SettingManagement.Blazor.WebAssembly.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor/Volo.Abp.SettingManagement.Blazor.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor/Volo.Abp.SettingManagement.Blazor.csproj index 3e1021067e..61045cab96 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor/Volo.Abp.SettingManagement.Blazor.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor/Volo.Abp.SettingManagement.Blazor.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.SettingManagement.Blazor diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Domain.Shared/Volo.Abp.SettingManagement.Domain.Shared.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Domain.Shared/Volo.Abp.SettingManagement.Domain.Shared.csproj index a2fc69ee1a..0a830c222c 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Domain.Shared/Volo.Abp.SettingManagement.Domain.Shared.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Domain.Shared/Volo.Abp.SettingManagement.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.SettingManagement.Domain.Shared Volo.Abp.SettingManagement.Domain.Shared $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Domain/Volo.Abp.SettingManagement.Domain.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Domain/Volo.Abp.SettingManagement.Domain.csproj index 6ea7d63c35..c6f9cecb6c 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Domain/Volo.Abp.SettingManagement.Domain.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Domain/Volo.Abp.SettingManagement.Domain.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.SettingManagement.Domain Volo.Abp.SettingManagement.Domain $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.EntityFrameworkCore/Volo.Abp.SettingManagement.EntityFrameworkCore.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.EntityFrameworkCore/Volo.Abp.SettingManagement.EntityFrameworkCore.csproj index a1682ce3b0..39bf0abf4b 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.EntityFrameworkCore/Volo.Abp.SettingManagement.EntityFrameworkCore.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.EntityFrameworkCore/Volo.Abp.SettingManagement.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.SettingManagement.EntityFrameworkCore Volo.Abp.SettingManagement.EntityFrameworkCore $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi.Client/Volo.Abp.SettingManagement.HttpApi.Client.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi.Client/Volo.Abp.SettingManagement.HttpApi.Client.csproj index 0d9ba7afad..12b3d97de2 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi.Client/Volo.Abp.SettingManagement.HttpApi.Client.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi.Client/Volo.Abp.SettingManagement.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi/Volo.Abp.SettingManagement.HttpApi.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi/Volo.Abp.SettingManagement.HttpApi.csproj index b288b7db17..05588af7c3 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi/Volo.Abp.SettingManagement.HttpApi.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.HttpApi/Volo.Abp.SettingManagement.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Installer/Volo.Abp.SettingManagement.Installer.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Installer/Volo.Abp.SettingManagement.Installer.csproj index 5860058975..c0c5281afe 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Installer/Volo.Abp.SettingManagement.Installer.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Installer/Volo.Abp.SettingManagement.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.MongoDB/Volo.Abp.SettingManagement.MongoDB.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.MongoDB/Volo.Abp.SettingManagement.MongoDB.csproj index cdc1cf39ae..dd004f22f1 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.MongoDB/Volo.Abp.SettingManagement.MongoDB.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.MongoDB/Volo.Abp.SettingManagement.MongoDB.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.SettingManagement.MongoDB Volo.Abp.SettingManagement.MongoDB $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Web/Volo.Abp.SettingManagement.Web.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Web/Volo.Abp.SettingManagement.Web.csproj index 025368fef1..182fbb46cd 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Web/Volo.Abp.SettingManagement.Web.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Web/Volo.Abp.SettingManagement.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Library true $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/setting-management/test/Volo.Abp.SettingManagement.EntityFrameworkCore.Tests/Volo.Abp.SettingManagement.EntityFrameworkCore.Tests.csproj b/modules/setting-management/test/Volo.Abp.SettingManagement.EntityFrameworkCore.Tests/Volo.Abp.SettingManagement.EntityFrameworkCore.Tests.csproj index 613cab8289..f374055c4b 100644 --- a/modules/setting-management/test/Volo.Abp.SettingManagement.EntityFrameworkCore.Tests/Volo.Abp.SettingManagement.EntityFrameworkCore.Tests.csproj +++ b/modules/setting-management/test/Volo.Abp.SettingManagement.EntityFrameworkCore.Tests/Volo.Abp.SettingManagement.EntityFrameworkCore.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.SettingManagement.EntityFrameworkCore.Tests Volo.Abp.SettingManagement.EntityFrameworkCore.Tests true diff --git a/modules/setting-management/test/Volo.Abp.SettingManagement.MongoDB.Tests/Volo.Abp.SettingManagement.MongoDB.Tests.csproj b/modules/setting-management/test/Volo.Abp.SettingManagement.MongoDB.Tests/Volo.Abp.SettingManagement.MongoDB.Tests.csproj index 417b689ec1..65ea9436ee 100644 --- a/modules/setting-management/test/Volo.Abp.SettingManagement.MongoDB.Tests/Volo.Abp.SettingManagement.MongoDB.Tests.csproj +++ b/modules/setting-management/test/Volo.Abp.SettingManagement.MongoDB.Tests/Volo.Abp.SettingManagement.MongoDB.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.SettingManagement.MongoDB.Tests Volo.Abp.SettingManagement.MongoDB.Tests true diff --git a/modules/setting-management/test/Volo.Abp.SettingManagement.TestBase/Volo.Abp.SettingManagement.TestBase.csproj b/modules/setting-management/test/Volo.Abp.SettingManagement.TestBase/Volo.Abp.SettingManagement.TestBase.csproj index d68afd9a58..9d7ba9f841 100644 --- a/modules/setting-management/test/Volo.Abp.SettingManagement.TestBase/Volo.Abp.SettingManagement.TestBase.csproj +++ b/modules/setting-management/test/Volo.Abp.SettingManagement.TestBase/Volo.Abp.SettingManagement.TestBase.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.SettingManagement.TestBase Volo.Abp.SettingManagement.TestBase true diff --git a/modules/setting-management/test/Volo.Abp.SettingManagement.Tests/Volo.Abp.SettingManagement.Tests.csproj b/modules/setting-management/test/Volo.Abp.SettingManagement.Tests/Volo.Abp.SettingManagement.Tests.csproj index c5201187e1..87229b3349 100644 --- a/modules/setting-management/test/Volo.Abp.SettingManagement.Tests/Volo.Abp.SettingManagement.Tests.csproj +++ b/modules/setting-management/test/Volo.Abp.SettingManagement.Tests/Volo.Abp.SettingManagement.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.SettingManagement.Tests Volo.Abp.SettingManagement.Tests true diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Application.Contracts/Volo.Abp.TenantManagement.Application.Contracts.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Application.Contracts/Volo.Abp.TenantManagement.Application.Contracts.csproj index 8e849785b7..8d299b1896 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Application.Contracts/Volo.Abp.TenantManagement.Application.Contracts.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Application.Contracts/Volo.Abp.TenantManagement.Application.Contracts.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.TenantManagement.Application.Contracts Volo.Abp.TenantManagement.Application.Contracts $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Application/Volo.Abp.TenantManagement.Application.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Application/Volo.Abp.TenantManagement.Application.csproj index 2fb9857f74..a6f921751d 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Application/Volo.Abp.TenantManagement.Application.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Application/Volo.Abp.TenantManagement.Application.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.TenantManagement.Application Volo.Abp.TenantManagement.Application $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.Server/Volo.Abp.TenantManagement.Blazor.Server.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.Server/Volo.Abp.TenantManagement.Blazor.Server.csproj index ea0174cd16..ee41288671 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.Server/Volo.Abp.TenantManagement.Blazor.Server.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.Server/Volo.Abp.TenantManagement.Blazor.Server.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.WebAssembly/Volo.Abp.TenantManagement.Blazor.WebAssembly.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.WebAssembly/Volo.Abp.TenantManagement.Blazor.WebAssembly.csproj index 2e643b81c3..7a0f4f9a0d 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.WebAssembly/Volo.Abp.TenantManagement.Blazor.WebAssembly.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor.WebAssembly/Volo.Abp.TenantManagement.Blazor.WebAssembly.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor/Volo.Abp.TenantManagement.Blazor.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor/Volo.Abp.TenantManagement.Blazor.csproj index 1941958adf..1afbbf56c7 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor/Volo.Abp.TenantManagement.Blazor.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor/Volo.Abp.TenantManagement.Blazor.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain.Shared/Volo.Abp.TenantManagement.Domain.Shared.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain.Shared/Volo.Abp.TenantManagement.Domain.Shared.csproj index 5703cad735..fa8c439034 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain.Shared/Volo.Abp.TenantManagement.Domain.Shared.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain.Shared/Volo.Abp.TenantManagement.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.TenantManagement.Domain.Shared Volo.Abp.TenantManagement.Domain.Shared $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain/Volo.Abp.TenantManagement.Domain.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain/Volo.Abp.TenantManagement.Domain.csproj index 8ff4d73ffb..7a40ae4f71 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain/Volo.Abp.TenantManagement.Domain.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain/Volo.Abp.TenantManagement.Domain.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.TenantManagement.Domain Volo.Abp.TenantManagement.Domain $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.EntityFrameworkCore/Volo.Abp.TenantManagement.EntityFrameworkCore.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.EntityFrameworkCore/Volo.Abp.TenantManagement.EntityFrameworkCore.csproj index 9ba724478b..faa6c57245 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.EntityFrameworkCore/Volo.Abp.TenantManagement.EntityFrameworkCore.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.EntityFrameworkCore/Volo.Abp.TenantManagement.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.TenantManagement.EntityFrameworkCore Volo.Abp.TenantManagement.EntityFrameworkCore $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi.Client/Volo.Abp.TenantManagement.HttpApi.Client.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi.Client/Volo.Abp.TenantManagement.HttpApi.Client.csproj index 37d1e2c7ec..e278f919aa 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi.Client/Volo.Abp.TenantManagement.HttpApi.Client.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi.Client/Volo.Abp.TenantManagement.HttpApi.Client.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.TenantManagement.HttpApi.Client Volo.Abp.TenantManagement.HttpApi.Client $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi/Volo.Abp.TenantManagement.HttpApi.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi/Volo.Abp.TenantManagement.HttpApi.csproj index d18b022ac6..e0ca1b0f64 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi/Volo.Abp.TenantManagement.HttpApi.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.HttpApi/Volo.Abp.TenantManagement.HttpApi.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.TenantManagement.HttpApi Volo.Abp.TenantManagement.HttpApi $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Installer/Volo.Abp.TenantManagement.Installer.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Installer/Volo.Abp.TenantManagement.Installer.csproj index dca98603b4..1375f5bfe7 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Installer/Volo.Abp.TenantManagement.Installer.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Installer/Volo.Abp.TenantManagement.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo.Abp.TenantManagement.MongoDB.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo.Abp.TenantManagement.MongoDB.csproj index df6fa35bb3..109c918f6a 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo.Abp.TenantManagement.MongoDB.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo.Abp.TenantManagement.MongoDB.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.TenantManagement.MongoDB Volo.Abp.TenantManagement.MongoDB $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/Volo.Abp.TenantManagement.Web.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/Volo.Abp.TenantManagement.Web.csproj index 3eaf89d80f..0fe0724f15 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/Volo.Abp.TenantManagement.Web.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/Volo.Abp.TenantManagement.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.TenantManagement.Web Volo.Abp.TenantManagement.Web true diff --git a/modules/tenant-management/test/Volo.Abp.TenantManagement.Application.Tests/Volo.Abp.TenantManagement.Application.Tests.csproj b/modules/tenant-management/test/Volo.Abp.TenantManagement.Application.Tests/Volo.Abp.TenantManagement.Application.Tests.csproj index b3c65da569..62f9c550c7 100644 --- a/modules/tenant-management/test/Volo.Abp.TenantManagement.Application.Tests/Volo.Abp.TenantManagement.Application.Tests.csproj +++ b/modules/tenant-management/test/Volo.Abp.TenantManagement.Application.Tests/Volo.Abp.TenantManagement.Application.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.TenantManagement.Application.Tests Volo.Abp.TenantManagement.Application.Tests true diff --git a/modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo.Abp.TenantManagement.Domain.Tests.csproj b/modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo.Abp.TenantManagement.Domain.Tests.csproj index 1dec079046..d1e0506d51 100644 --- a/modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo.Abp.TenantManagement.Domain.Tests.csproj +++ b/modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo.Abp.TenantManagement.Domain.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/modules/tenant-management/test/Volo.Abp.TenantManagement.EntityFrameworkCore.Tests/Volo.Abp.TenantManagement.EntityFrameworkCore.Tests.csproj b/modules/tenant-management/test/Volo.Abp.TenantManagement.EntityFrameworkCore.Tests/Volo.Abp.TenantManagement.EntityFrameworkCore.Tests.csproj index ecbdecb242..109d16664a 100644 --- a/modules/tenant-management/test/Volo.Abp.TenantManagement.EntityFrameworkCore.Tests/Volo.Abp.TenantManagement.EntityFrameworkCore.Tests.csproj +++ b/modules/tenant-management/test/Volo.Abp.TenantManagement.EntityFrameworkCore.Tests/Volo.Abp.TenantManagement.EntityFrameworkCore.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.TenantManagement.EntityFrameworkCore.Tests Volo.Abp.TenantManagement.EntityFrameworkCore.Tests true diff --git a/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo.Abp.TenantManagement.MongoDB.Tests.csproj b/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo.Abp.TenantManagement.MongoDB.Tests.csproj index ab7113944a..c22da31998 100644 --- a/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo.Abp.TenantManagement.MongoDB.Tests.csproj +++ b/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo.Abp.TenantManagement.MongoDB.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.TenantManagement.MongoDB.Tests Volo.Abp.TenantManagement.MongoDB.Tests true diff --git a/modules/tenant-management/test/Volo.Abp.TenantManagement.TestBase/Volo.Abp.TenantManagement.TestBase.csproj b/modules/tenant-management/test/Volo.Abp.TenantManagement.TestBase/Volo.Abp.TenantManagement.TestBase.csproj index 601af67523..0f341dbcf8 100644 --- a/modules/tenant-management/test/Volo.Abp.TenantManagement.TestBase/Volo.Abp.TenantManagement.TestBase.csproj +++ b/modules/tenant-management/test/Volo.Abp.TenantManagement.TestBase/Volo.Abp.TenantManagement.TestBase.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 Volo.Abp.TenantManagement.TestBase Volo.Abp.TenantManagement.TestBase true diff --git a/modules/users/src/Volo.Abp.Users.Abstractions/Volo.Abp.Users.Abstractions.csproj b/modules/users/src/Volo.Abp.Users.Abstractions/Volo.Abp.Users.Abstractions.csproj index 36899c2df8..5263a78156 100644 --- a/modules/users/src/Volo.Abp.Users.Abstractions/Volo.Abp.Users.Abstractions.csproj +++ b/modules/users/src/Volo.Abp.Users.Abstractions/Volo.Abp.Users.Abstractions.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.Users.Abstractions Volo.Abp.Users.Abstractions $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/users/src/Volo.Abp.Users.Domain.Shared/Volo.Abp.Users.Domain.Shared.csproj b/modules/users/src/Volo.Abp.Users.Domain.Shared/Volo.Abp.Users.Domain.Shared.csproj index 74e3c687ec..57d545d477 100644 --- a/modules/users/src/Volo.Abp.Users.Domain.Shared/Volo.Abp.Users.Domain.Shared.csproj +++ b/modules/users/src/Volo.Abp.Users.Domain.Shared/Volo.Abp.Users.Domain.Shared.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.Users.Domain.Shared Volo.Abp.Users.Domain.Shared $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/users/src/Volo.Abp.Users.Domain/Volo.Abp.Users.Domain.csproj b/modules/users/src/Volo.Abp.Users.Domain/Volo.Abp.Users.Domain.csproj index bcd4c87e1a..da069c10bd 100644 --- a/modules/users/src/Volo.Abp.Users.Domain/Volo.Abp.Users.Domain.csproj +++ b/modules/users/src/Volo.Abp.Users.Domain/Volo.Abp.Users.Domain.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.Users.Domain Volo.Abp.Users.Domain $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/users/src/Volo.Abp.Users.EntityFrameworkCore/Volo.Abp.Users.EntityFrameworkCore.csproj b/modules/users/src/Volo.Abp.Users.EntityFrameworkCore/Volo.Abp.Users.EntityFrameworkCore.csproj index 461f77038e..a914b7df36 100644 --- a/modules/users/src/Volo.Abp.Users.EntityFrameworkCore/Volo.Abp.Users.EntityFrameworkCore.csproj +++ b/modules/users/src/Volo.Abp.Users.EntityFrameworkCore/Volo.Abp.Users.EntityFrameworkCore.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 Volo.Abp.Users.EntityFrameworkCore Volo.Abp.Users.EntityFrameworkCore $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/users/src/Volo.Abp.Users.Installer/Volo.Abp.Users.Installer.csproj b/modules/users/src/Volo.Abp.Users.Installer/Volo.Abp.Users.Installer.csproj index 7f7d976ea6..f77041cfca 100644 --- a/modules/users/src/Volo.Abp.Users.Installer/Volo.Abp.Users.Installer.csproj +++ b/modules/users/src/Volo.Abp.Users.Installer/Volo.Abp.Users.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/users/src/Volo.Abp.Users.MongoDB/Volo.Abp.Users.MongoDB.csproj b/modules/users/src/Volo.Abp.Users.MongoDB/Volo.Abp.Users.MongoDB.csproj index 39aa10d969..92a885e8bb 100644 --- a/modules/users/src/Volo.Abp.Users.MongoDB/Volo.Abp.Users.MongoDB.csproj +++ b/modules/users/src/Volo.Abp.Users.MongoDB/Volo.Abp.Users.MongoDB.csproj @@ -4,7 +4,7 @@ - netstandard2.0;netstandard2.1;net8.0 + netstandard2.0;netstandard2.1;net8.0;net9.0 Volo.Abp.Users.MongoDB Volo.Abp.Users.MongoDB $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/AbpVirtualFileExplorerDemoAppModule.cs b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/AbpVirtualFileExplorerDemoAppModule.cs index 4f6965207d..c7cc5f4484 100644 --- a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/AbpVirtualFileExplorerDemoAppModule.cs +++ b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/AbpVirtualFileExplorerDemoAppModule.cs @@ -38,7 +38,7 @@ public class AbpVirtualFileExplorerDemoAppModule : AbpModule { var app = context.GetApplicationBuilder(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAbpRequestLocalization(); app.UseConfiguredEndpoints(); diff --git a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/Volo.Abp.VirtualFileExplorer.DemoApp.csproj b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/Volo.Abp.VirtualFileExplorer.DemoApp.csproj index e6682e8200..683766e077 100644 --- a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/Volo.Abp.VirtualFileExplorer.DemoApp.csproj +++ b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/Volo.Abp.VirtualFileExplorer.DemoApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 aspnet-Volo.Abp.VirtualFileExplorer.DemoApp-234AF9E1-C3E0-4F8F-BD7D-840627CC8E46 diff --git a/modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Installer/Volo.Abp.VirtualFileExplorer.Installer.csproj b/modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Installer/Volo.Abp.VirtualFileExplorer.Installer.csproj index b9afd7e97f..5cc3ee10b8 100644 --- a/modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Installer/Volo.Abp.VirtualFileExplorer.Installer.csproj +++ b/modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Installer/Volo.Abp.VirtualFileExplorer.Installer.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 true diff --git a/modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Volo.Abp.VirtualFileExplorer.Web.csproj b/modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Volo.Abp.VirtualFileExplorer.Web.csproj index a64ef7603f..362207b447 100644 --- a/modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Volo.Abp.VirtualFileExplorer.Web.csproj +++ b/modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Volo.Abp.VirtualFileExplorer.Web.csproj @@ -4,7 +4,7 @@ - net8.0 + net9.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; false false diff --git a/npm/ng-packs/packages/core/src/lib/services/config-state.service.ts b/npm/ng-packs/packages/core/src/lib/services/config-state.service.ts index 97fcdbc40b..66cf601e3b 100644 --- a/npm/ng-packs/packages/core/src/lib/services/config-state.service.ts +++ b/npm/ng-packs/packages/core/src/lib/services/config-state.service.ts @@ -17,6 +17,8 @@ export class ConfigStateService { private updateSubject = new Subject(); private readonly store = new InternalStore({} as ApplicationConfigurationDto); + public uiCultureFromAuthCodeFlow: string; + setState(config: ApplicationConfigurationDto) { this.store.set(config); } @@ -53,8 +55,13 @@ export class ConfigStateService { if (!appState.localization.currentCulture.cultureName) { throw new Error('culture name should defined'); } - return this.getlocalizationResource(appState.localization.currentCulture.cultureName).pipe( + + const cultureName = + this.uiCultureFromAuthCodeFlow ?? appState.localization.currentCulture.cultureName; + + return this.getlocalizationResource(cultureName).pipe( map(result => ({ ...appState, localization: { ...appState.localization, ...result } })), + tap(() => (this.uiCultureFromAuthCodeFlow = undefined)), ); } @@ -71,10 +78,10 @@ export class ConfigStateService { } refreshLocalization(lang: string): Observable { - if(this.includeLocalizationResources){ + if (this.includeLocalizationResources) { return this.refreshAppState().pipe(map(() => null)); } - + return this.getlocalizationResource(lang) .pipe( tap(result => @@ -145,7 +152,7 @@ export class ConfigStateService { return keys.reduce((acc, key) => ({ ...acc, [key]: features.values[key] }), {}); } - getFeatures$(keys: string[]): Observable<{ [key: string]: string; } | undefined> { + getFeatures$(keys: string[]): Observable<{ [key: string]: string } | undefined> { return this.store.sliceState(({ features }) => { if (!features?.values) return; @@ -168,10 +175,13 @@ export class ConfigStateService { const keysFound = Object.keys(settings).filter(key => key.indexOf(keyword) > -1); - return keysFound.reduce((acc, key) => { - acc[key] = settings[key]; - return acc; - }, {} as Record); + return keysFound.reduce( + (acc, key) => { + acc[key] = settings[key]; + return acc; + }, + {} as Record, + ); } getSettings$(keyword?: string) { @@ -183,10 +193,13 @@ export class ConfigStateService { const keysFound = Object.keys(settings).filter(key => key.indexOf(keyword) > -1); - return keysFound.reduce((acc, key) => { - acc[key] = settings[key]; - return acc; - }, {} as Record); + return keysFound.reduce( + (acc, key) => { + acc[key] = settings[key]; + return acc; + }, + {} as Record, + ); }), ); } diff --git a/npm/ng-packs/packages/core/src/lib/services/window.service.ts b/npm/ng-packs/packages/core/src/lib/services/window.service.ts index 522bb19c94..6534065d0d 100644 --- a/npm/ng-packs/packages/core/src/lib/services/window.service.ts +++ b/npm/ng-packs/packages/core/src/lib/services/window.service.ts @@ -3,9 +3,9 @@ import { DOCUMENT } from '@angular/common'; @Injectable({ providedIn: 'root' }) export class AbpWindowService { - protected readonly document = inject(DOCUMENT); - protected readonly window = this.document.defaultView; - protected readonly navigator = this.window.navigator; + public readonly document = inject(DOCUMENT); + public readonly window = this.document.defaultView; + public readonly navigator = this.window.navigator; copyToClipboard(text: string): Promise { return this.navigator.clipboard.writeText(text); diff --git a/npm/ng-packs/packages/oauth/src/lib/strategies/auth-code-flow-strategy.ts b/npm/ng-packs/packages/oauth/src/lib/strategies/auth-code-flow-strategy.ts index 0452fdc899..4c239ac5e3 100644 --- a/npm/ng-packs/packages/oauth/src/lib/strategies/auth-code-flow-strategy.ts +++ b/npm/ng-packs/packages/oauth/src/lib/strategies/auth-code-flow-strategy.ts @@ -1,6 +1,6 @@ import { noop } from '@abp/ng.core'; import { Params } from '@angular/router'; -import { from, of } from 'rxjs'; +import { filter, from, of, take, tap } from 'rxjs'; import { AuthFlowStrategy } from './auth-flow-strategy'; import { isTokenExpired } from '../utils'; @@ -9,6 +9,7 @@ export class AuthCodeFlowStrategy extends AuthFlowStrategy { async init() { this.checkRememberMeOption(); + this.listenToTokenReceived(); return super .init() @@ -34,6 +35,46 @@ export class AuthCodeFlowStrategy extends AuthFlowStrategy { } } + private getCultureParams(queryParams?: Params) { + const lang = this.sessionState.getLanguage(); + const culture = { culture: lang, 'ui-culture': lang }; + return { ...(lang && culture), ...queryParams }; + } + + protected setUICulture() { + const urlParams = new URLSearchParams(window.location.search); + this.configState.uiCultureFromAuthCodeFlow = urlParams.get('ui-culture'); + } + + protected replaceURLParams() { + const location = this.windowService.window.location; + const history = this.windowService.window.history; + + const href = + location.origin + + location.pathname + + location.search + .replace(/iss=[^&$]*/, '') + .replace(/culture=[^&$]*/, '') + .replace(/ui-culture=[^&$]*/, '') + + location.hash; + + history.replaceState(null, '', href); + } + + protected listenToTokenReceived() { + this.oAuthService.events + .pipe( + filter(event => event.type === 'token_received'), + tap(() => { + this.setUICulture(); + this.replaceURLParams(); + }), + take(1), + ) + .subscribe(); + } + navigateToLogin(queryParams?: Params) { let additionalState = ''; if (queryParams?.returnUrl) { @@ -62,10 +103,4 @@ export class AuthCodeFlowStrategy extends AuthFlowStrategy { this.oAuthService.initCodeFlow('', this.getCultureParams(queryParams)); return of(null); } - - private getCultureParams(queryParams?: Params) { - const lang = this.sessionState.getLanguage(); - const culture = { culture: lang, 'ui-culture': lang }; - return { ...(lang && culture), ...queryParams }; - } } diff --git a/npm/ng-packs/packages/oauth/src/lib/strategies/auth-flow-strategy.ts b/npm/ng-packs/packages/oauth/src/lib/strategies/auth-flow-strategy.ts index dd7958b023..02e5dd4ea3 100644 --- a/npm/ng-packs/packages/oauth/src/lib/strategies/auth-flow-strategy.ts +++ b/npm/ng-packs/packages/oauth/src/lib/strategies/auth-flow-strategy.ts @@ -13,6 +13,7 @@ import { import { AbpLocalStorageService, + AbpWindowService, ConfigStateService, EnvironmentService, HttpErrorReporterService, @@ -38,6 +39,7 @@ export abstract class AuthFlowStrategy { protected sessionState: SessionStateService; protected localStorageService: AbpLocalStorageService; protected rememberMeService: RememberMeService; + protected windowService: AbpWindowService; protected tenantKey: string; protected router: Router; @@ -65,6 +67,7 @@ export abstract class AuthFlowStrategy { this.router = injector.get(Router); this.oAuthErrorFilterService = injector.get(OAuthErrorFilterService); this.rememberMeService = injector.get(RememberMeService); + this.windowService = injector.get(AbpWindowService); this.listenToOauthErrors(); } diff --git a/npm/packs/datatables.net-bs5/package.json b/npm/packs/datatables.net-bs5/package.json index baa947afb7..f4e8ae27f2 100644 --- a/npm/packs/datatables.net-bs5/package.json +++ b/npm/packs/datatables.net-bs5/package.json @@ -6,7 +6,7 @@ }, "dependencies": { "@abp/datatables.net": "~8.3.1", - "datatables.net-bs5": "^2.0.8" + "datatables.net-bs5": "^2.1.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/datatables.net/package.json b/npm/packs/datatables.net/package.json index 902c43e585..e4e842135f 100644 --- a/npm/packs/datatables.net/package.json +++ b/npm/packs/datatables.net/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@abp/jquery": "~8.3.1", - "datatables.net": "^2.0.8" + "datatables.net": "^2.1.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyCompanyName.MyProjectName.Blazor.Server.Mongo.csproj b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyCompanyName.MyProjectName.Blazor.Server.Mongo.csproj index 4d3fdf77cb..e7b625fa74 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyCompanyName.MyProjectName.Blazor.Server.Mongo.csproj +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyCompanyName.MyProjectName.Blazor.Server.Mongo.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable true @@ -82,7 +82,7 @@ - + diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyProjectNameModule.cs index 1a8c387482..988608d631 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyProjectNameModule.cs @@ -367,7 +367,7 @@ public class MyProjectNameModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Logs/logs.txt b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Logs/logs.txt deleted file mode 100644 index 6c6bb35235..0000000000 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Logs/logs.txt +++ /dev/null @@ -1,6192 +0,0 @@ -2024-06-24 11:26:10.636 +03:00 [INF] Started database migrations... -2024-06-24 11:26:10.637 +03:00 [INF] Migrating schema for host database... -2024-06-24 11:26:11.216 +03:00 [INF] Executing host database seed... -2024-06-24 11:26:11.821 +03:00 [INF] Successfully completed host database migrations. -2024-06-24 11:26:13.803 +03:00 [INF] Successfully completed all database migrations. -2024-06-24 11:26:13.803 +03:00 [INF] You can safely end this process... -2024-06-24 11:27:37.736 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:27:37.737 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:27:37.793 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:27:37.808 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:27:37.949 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:27:37.949 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:27:38.002 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:27:38.002 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:27:38.002 +03:00 [INF] Hosting environment: Development -2024-06-24 11:27:38.002 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:28:43.449 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:28:48.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:48.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:48.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:28:48.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:28:48.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:48.995 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:28:48.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:48.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:28:48.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:28:48.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:28:48.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:28:48.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:48.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:48.998 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:28:49.100 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:28:49.191 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:28:49.192 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:28:49.193 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:28:49.257 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:28:49.258 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:28:49.259 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:28:49.287 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:28:49.289 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:28:49.338 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:28:49.346 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 5897.471ms -2024-06-24 11:28:49.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:28:49.362 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:28:49.362 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:28:49.362 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:28:49.362 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:28:49.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:28:49.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:28:49.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:28:49.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:28:49.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:28:49.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:28:49.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:28:49.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:28:49.366 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:28:49.366 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:28:49.366 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:28:49.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:28:49.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:28:49.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:28:49.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:28:49.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:28:49.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:28:49.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:28:49.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:28:49.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:28:49.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:28:49.370 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:28:49.370 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 8.2926ms -2024-06-24 11:28:49.371 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:28:49.371 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:28:49.371 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:28:49.371 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:28:49.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 9.4604ms -2024-06-24 11:28:49.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 7.2084ms -2024-06-24 11:28:49.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 7.067ms -2024-06-24 11:28:49.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 4.2704ms -2024-06-24 11:28:49.372 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:28:49.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 7.2747ms -2024-06-24 11:28:49.372 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:28:49.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 10.3163ms -2024-06-24 11:28:49.372 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:28:49.372 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:28:49.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 7.1324ms -2024-06-24 11:28:49.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 7.4167ms -2024-06-24 11:28:49.373 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 8.6987ms -2024-06-24 11:28:49.374 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 7.7804ms -2024-06-24 11:28:49.374 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 10.3097ms -2024-06-24 11:28:49.374 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:28:49.374 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 10.1875ms -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 7.4885ms -2024-06-24 11:28:49.374 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 8.7437ms -2024-06-24 11:28:49.375 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:28:49.375 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 19.5717ms -2024-06-24 11:28:49.375 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:28:49.375 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 5.8847ms -2024-06-24 11:28:49.380 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:28:49.380 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 14.6989ms -2024-06-24 11:28:49.381 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:28:49.381 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 13.2201ms -2024-06-24 11:28:49.381 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:28:49.381 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 12.634ms -2024-06-24 11:28:49.384 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:28:49.384 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 16.7133ms -2024-06-24 11:28:49.388 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:28:49.388 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 19.1694ms -2024-06-24 11:28:49.395 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:28:49.395 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 27.1172ms -2024-06-24 11:28:49.395 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:28:49.395 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 33.1039ms -2024-06-24 11:28:49.397 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:28:49.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 29.503ms -2024-06-24 11:28:49.403 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:28:49.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 34.892ms -2024-06-24 11:28:49.619 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:28:49.621 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:28:49.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.9471ms -2024-06-24 11:28:49.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:28:49.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:28:49.643 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:28:49.643 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 9.3734ms -2024-06-24 11:28:49.644 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:28:49.644 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:28:49.644 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 9.7988ms -2024-06-24 11:28:49.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.646 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.646 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:28:49.648 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:28:49.649 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:28:49.649 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 5.8182ms -2024-06-24 11:28:49.653 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:28:49.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:28:49.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:28:49.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.656 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.656 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:28:49.657 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:28:49.658 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:28:49.658 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 5.0437ms -2024-06-24 11:28:49.660 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=zEkT6rkad6160Ki_3rux9w - null null -2024-06-24 11:28:49.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.661 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.661 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:28:49.662 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:28:49.717 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:28:49.717 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:28:49.718 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:28:49.719 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:28:49.720 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:28:49.720 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:28:49.723 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:28:49.723 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:28:49.735 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:28:49.740 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:28:49.747 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:28:49.747 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 12.2211ms -2024-06-24 11:28:49.749 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:28:49.749 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 8.5035ms -2024-06-24 11:28:49.749 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:28:49.749 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:28:49.760 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:28:49.760 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 10.7168ms -2024-06-24 11:28:49.776 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:28:49.776 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 26.6193ms -2024-06-24 11:28:49.839 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:28:49.843 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:28:49.844 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 4.1372ms -2024-06-24 11:29:49.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - null null -2024-06-24 11:29:49.355 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light-thumbnail.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light-thumbnail.png' -2024-06-24 11:29:49.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - 200 9230 image/png 1.7094ms -2024-06-24 11:29:49.601 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:29:49.620 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:29:49.620 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 19.2791ms -2024-06-24 11:29:50.312 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:29:50.322 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:29:50.322 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 9.5731ms -2024-06-24 11:35:05.152 +03:00 [INF] Application is shutting down... -2024-06-24 11:35:05.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:05.155 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=zEkT6rkad6160Ki_3rux9w - 200 null null 375494.912ms -2024-06-24 11:35:05.156 +03:00 [INF] Connection id "0HN4K4UKAFFIR", Request id "0HN4K4UKAFFIR:00000041": the application completed without reading the entire request body. -2024-06-24 11:35:05.157 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:35:17.290 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:35:17.290 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:35:17.357 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:35:17.372 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:35:17.514 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:35:17.514 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:35:17.555 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:35:17.555 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:35:17.555 +03:00 [INF] Hosting environment: Development -2024-06-24 11:35:17.555 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:35:20.958 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:35:22.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.338 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.340 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.348 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.350 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.350 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.350 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.351 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.461 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:35:22.544 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:35:22.545 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:35:22.546 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:35:22.564 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:35:22.564 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:35:22.565 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:35:22.591 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:35:22.593 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:35:22.639 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:35:22.642 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryD7fRmXMIwURlTlQG 359 -2024-06-24 11:35:22.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.644 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.644 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.647 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.648 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1690.3472ms -2024-06-24 11:35:22.651 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.651 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 9.5005ms -2024-06-24 11:35:22.659 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:35:22.666 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:35:22.666 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 6.6808ms -2024-06-24 11:35:22.668 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:35:22.668 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:35:22.669 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:35:22.669 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:35:22.670 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 1.2141ms -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.9437ms -2024-06-24 11:35:22.671 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:35:22.671 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:35:22.671 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:35:22.671 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.9661ms -2024-06-24 11:35:22.672 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:35:22.672 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 2.585ms -2024-06-24 11:35:22.672 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:35:22.672 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 2.9433ms -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:35:22.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 3.1187ms -2024-06-24 11:35:22.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:35:22.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:35:22.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 3.1544ms -2024-06-24 11:35:22.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:35:22.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 3.0858ms -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:35:22.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:35:22.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 2.7115ms -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:35:22.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 3.1902ms -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:35:22.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:35:22.674 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 2.7244ms -2024-06-24 11:35:22.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:35:22.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:35:22.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:35:22.674 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:35:22.674 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 1.203ms -2024-06-24 11:35:22.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:35:22.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:35:22.674 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:35:22.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 1.2988ms -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:35:22.675 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:35:22.675 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:35:22.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 4.3534ms -2024-06-24 11:35:22.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.9811ms -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:35:22.675 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:35:22.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 1.4644ms -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:35:22.676 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:35:22.678 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:35:22.678 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 3.6223ms -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.679 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:35:22.679 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.679 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 3.5111ms -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.679 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.680 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.680 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.682 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 7.8828ms -2024-06-24 11:35:22.682 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 404 0 null 7.3321ms -2024-06-24 11:35:22.682 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 404 0 null 7.6734ms -2024-06-24 11:35:22.682 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-community.png, Response status code: 404 -2024-06-24 11:35:22.682 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:35:22.682 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-support.png, Response status code: 404 -2024-06-24 11:35:22.683 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 404 0 null 8.741ms -2024-06-24 11:35:22.683 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-blog.png, Response status code: 404 -2024-06-24 11:35:22.686 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:35:22.686 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 12.1333ms -2024-06-24 11:35:22.686 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:35:22.686 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 11.4152ms -2024-06-24 11:35:22.686 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:35:22.686 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 11.1872ms -2024-06-24 11:35:22.687 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:35:22.687 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 11.3338ms -2024-06-24 11:35:22.687 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:35:22.687 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 11.892ms -2024-06-24 11:35:22.687 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:35:22.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 14.8381ms -2024-06-24 11:35:22.688 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:35:22.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 12.9688ms -2024-06-24 11:35:22.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:35:22.694 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:35:22.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.8587ms -2024-06-24 11:35:22.716 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:35:22.720 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:35:22.721 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 4.7184ms -2024-06-24 11:35:22.723 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - null null -2024-06-24 11:35:22.723 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light-thumbnail.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light-thumbnail.png' -2024-06-24 11:35:22.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - 200 9230 image/png 0.8414ms -2024-06-24 11:35:22.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:35:22.727 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:35:22.727 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 2.7897ms -2024-06-24 11:35:22.810 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:35:22.813 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:35:22.813 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 3.088ms -2024-06-24 11:35:22.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:35:22.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.816 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.816 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.818 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.819 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 5.2676ms -2024-06-24 11:35:22.827 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:35:22.828 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.829 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.829 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.833 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 5.7595ms -2024-06-24 11:35:22.837 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=cfmeM5zKIFlsXJizmn0u3Q - null null -2024-06-24 11:35:22.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.838 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.839 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.840 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.903 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:35:22.904 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:35:22.904 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:35:22.905 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:35:22.907 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:35:22.909 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:35:22.914 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:35:22.915 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:35:22.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:35:22.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:35:22.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:35:22.928 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.929 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.929 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.929 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.929 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.931 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.931 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 4.9582ms -2024-06-24 11:35:22.932 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:35:22.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 404 0 null 4.4639ms -2024-06-24 11:35:22.932 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-community.png, Response status code: 404 -2024-06-24 11:35:22.933 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 404 0 null 5.7893ms -2024-06-24 11:35:22.933 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-blog.png, Response status code: 404 -2024-06-24 11:35:22.934 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 404 0 null 7.0518ms -2024-06-24 11:35:22.934 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-support.png, Response status code: 404 -2024-06-24 11:35:22.938 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:35:22.939 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:35:22.939 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 1.2124ms -2024-06-24 11:35:22.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:35:22.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:35:22.942 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:35:22.942 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.6359ms -2024-06-24 11:35:22.943 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:35:22.943 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.9712ms -2024-06-24 11:35:22.944 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:35:22.945 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:35:22.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.8703ms -2024-06-24 11:35:23.910 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:35:23.913 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:35:23.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 2.3517ms -2024-06-24 11:35:29.388 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:35:29.390 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:35:29.390 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 1.4068ms -2024-06-24 11:35:54.857 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300//imagesimg-support.png - null null -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:54.858 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:54.858 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:54.860 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300//imagesimg-support.png - 404 0 null 3.0254ms -2024-06-24 11:35:54.860 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300//imagesimg-support.png, Response status code: 404 -2024-06-24 11:35:54.881 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:54.881 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=cfmeM5zKIFlsXJizmn0u3Q - 200 null null 32044.0174ms -2024-06-24 11:35:54.891 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryFUUgamBYRmNnhkpc 359 -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:54.892 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:54.892 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:54.894 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:54.900 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:54.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:35:54.900 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 8.5636ms -2024-06-24 11:35:54.904 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:35:54.904 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 3.9686ms -2024-06-24 11:36:01.005 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300//images/img-support.png - null null -2024-06-24 11:36:01.011 +03:00 [INF] Sending file. Request path: '//images/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\img-support.png' -2024-06-24 11:36:01.011 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300//images/img-support.png - 200 33989 image/png 5.5447ms -2024-06-24 11:36:32.249 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:36:32.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.249 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.249 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.249 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.249 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.250 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.250 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.250 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:36:32.253 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:36:32.253 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:36:32.253 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:36:32.254 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:36:32.254 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:36:32.254 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:36:32.256 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:36:32.256 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:36:32.257 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:36:32.257 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 8.5861ms -2024-06-24 11:36:32.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:36:32.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:36:32.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.286 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.287 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.287 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:36:32.287 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 1.2813ms -2024-06-24 11:36:32.287 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 1.6298ms -2024-06-24 11:36:32.287 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:36:32.297 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:36:32.297 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:36:32.297 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 11.0626ms -2024-06-24 11:36:32.297 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 11.3179ms -2024-06-24 11:36:32.310 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:36:32.311 +03:00 [INF] The file /images/logo/leptonx/logo-light.png was not modified -2024-06-24 11:36:32.311 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 304 null image/png 0.8137ms -2024-06-24 11:36:32.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:36:32.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.370 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.370 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.370 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:36:32.371 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:36:32.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 1.4315ms -2024-06-24 11:36:32.398 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.398 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.398 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.399 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:36:32.399 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:36:32.399 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.5576ms -2024-06-24 11:36:32.403 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=Wy0lhtUdIo6wJfOvHuU2Kg - null null -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:36:32.412 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:36:32.412 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:36:32.413 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:36:32.413 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:36:32.413 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:36:32.414 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:36:32.415 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:36:32.415 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:36:32.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:36:32.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 5.1441ms -2024-06-24 11:36:32.425 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:36:35.905 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:36:35.908 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:36:35.908 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 2.9928ms -2024-06-24 11:36:36.261 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:36:36.263 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:36:36.263 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 1.828ms -2024-06-24 11:37:09.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:37:09.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.536 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.536 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.537 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:37:09.539 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:09.539 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:09.540 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:09.540 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:09.541 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:09.541 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:09.542 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:09.545 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:09.547 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:37:09.547 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 11.7522ms -2024-06-24 11:37:09.551 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryME1irmwpc9xM3stX 359 -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.552 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.552 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=Wy0lhtUdIo6wJfOvHuU2Kg - 200 null null 37149.2461ms -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.552 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.552 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.553 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.554 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.554 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 2.5246ms -2024-06-24 11:37:09.580 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:37:09.582 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:37:09.582 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 1.9437ms -2024-06-24 11:37:09.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:37:09.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:37:09.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:37:09.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:37:09.583 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:37:09.583 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:37:09.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.7079ms -2024-06-24 11:37:09.583 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:37:09.583 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:37:09.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.1164ms -2024-06-24 11:37:09.583 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:37:09.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 0.9798ms -2024-06-24 11:37:09.583 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:37:09.583 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:37:09.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.4212ms -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.6932ms -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.2722ms -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.2384ms -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.4847ms -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.5164ms -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.4609ms -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.4585ms -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 0.6729ms -2024-06-24 11:37:09.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:37:09.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:37:09.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:37:09.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:37:09.585 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:37:09.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:37:09.585 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:37:09.585 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 0.2558ms -2024-06-24 11:37:09.585 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.4227ms -2024-06-24 11:37:09.586 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:37:09.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.6451ms -2024-06-24 11:37:09.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:09.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:37:09.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:37:09.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:37:09.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:37:09.586 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:37:09.586 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:37:09.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 1.0605ms -2024-06-24 11:37:09.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.4569ms -2024-06-24 11:37:09.586 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:37:09.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.6307ms -2024-06-24 11:37:09.586 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.587 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.587 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:37:09.587 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:37:09.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 1.1165ms -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:37:09.587 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:37:09.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 1.212ms -2024-06-24 11:37:09.587 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:37:09.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 1.5593ms -2024-06-24 11:37:09.587 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.4298ms -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 1.7858ms -2024-06-24 11:37:09.588 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 1.0009ms -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 0.9146ms -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 0.957ms -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 1.3607ms -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:37:09.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 4.4694ms -2024-06-24 11:37:09.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 2.0147ms -2024-06-24 11:37:09.630 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:37:09.630 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:37:09.631 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:37:09.631 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.1968ms -2024-06-24 11:37:09.633 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:37:09.633 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 2.7319ms -2024-06-24 11:37:09.642 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:37:09.643 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:37:09.643 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.768ms -2024-06-24 11:37:09.659 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:37:09.660 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:37:09.660 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.7813ms -2024-06-24 11:37:09.847 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.847 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.847 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.848 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.848 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 1.2534ms -2024-06-24 11:37:09.856 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:37:09.857 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.857 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.857 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.858 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:37:09.858 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 1.2974ms -2024-06-24 11:37:09.858 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.858 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.858 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.2333ms -2024-06-24 11:37:09.861 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=yolJ_e18CoKDeBpxmDngOA - null null -2024-06-24 11:37:09.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.862 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.862 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.862 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.873 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:09.873 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:09.873 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:09.874 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:09.874 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:09.874 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:09.875 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:09.876 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:09.922 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:09.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.923 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.923 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.923 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 1.2068ms -2024-06-24 11:37:09.923 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:37:09.931 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:37:09.931 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:37:09.931 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.814ms -2024-06-24 11:37:09.932 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:37:09.932 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:37:09.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.4118ms -2024-06-24 11:37:09.935 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:37:09.936 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:37:09.936 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.7132ms -2024-06-24 11:37:09.939 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:37:09.939 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:37:09.939 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:37:09.939 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.7987ms -2024-06-24 11:37:09.940 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:37:09.940 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.4783ms -2024-06-24 11:37:10.509 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:37:10.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.510 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.510 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.510 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:37:10.511 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:10.512 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:10.512 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:10.512 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:10.512 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:10.512 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:10.513 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:10.514 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:10.514 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:37:10.515 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 5.4791ms -2024-06-24 11:37:10.518 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.518 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=yolJ_e18CoKDeBpxmDngOA - 200 null null 657.0073ms -2024-06-24 11:37:10.518 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryeCrDbgDwRxXBTUuV 359 -2024-06-24 11:37:10.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.518 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.519 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.519 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.520 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.520 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 1.8328ms -2024-06-24 11:37:10.540 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:37:10.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:37:10.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:37:10.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:37:10.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:37:10.541 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:37:10.541 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.3065ms -2024-06-24 11:37:10.542 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:37:10.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 1.4776ms -2024-06-24 11:37:10.542 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:37:10.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 0.6477ms -2024-06-24 11:37:10.542 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:37:10.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 0.6347ms -2024-06-24 11:37:10.542 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:37:10.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.2753ms -2024-06-24 11:37:10.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:37:10.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:37:10.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:37:10.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.2895ms -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 0.5077ms -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:37:10.543 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.2249ms -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.3267ms -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.4903ms -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 0.7344ms -2024-06-24 11:37:10.544 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:37:10.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.7031ms -2024-06-24 11:37:10.544 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:37:10.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.7866ms -2024-06-24 11:37:10.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:37:10.544 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:37:10.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.258ms -2024-06-24 11:37:10.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:37:10.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:37:10.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:10.544 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:37:10.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 0.9522ms -2024-06-24 11:37:10.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:37:10.544 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:37:10.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 0.3527ms -2024-06-24 11:37:10.545 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:37:10.545 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.4291ms -2024-06-24 11:37:10.545 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:37:10.545 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 1.5955ms -2024-06-24 11:37:10.545 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:37:10.545 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.3736ms -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.545 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.545 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.546 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 1.4525ms -2024-06-24 11:37:10.546 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:37:10.548 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:37:10.548 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:37:10.548 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 0.4782ms -2024-06-24 11:37:10.549 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:37:10.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:37:10.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:37:10.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:37:10.550 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:37:10.550 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:37:10.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.2646ms -2024-06-24 11:37:10.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.8126ms -2024-06-24 11:37:10.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:37:10.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:37:10.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:37:10.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:37:10.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.262ms -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 0.4876ms -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 0.4762ms -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 1.0155ms -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 0.7876ms -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 1.5908ms -2024-06-24 11:37:10.552 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 1.7475ms -2024-06-24 11:37:10.568 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:37:10.569 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:37:10.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.1965ms -2024-06-24 11:37:10.583 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:37:10.585 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:37:10.585 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 2.7731ms -2024-06-24 11:37:10.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:37:10.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:37:10.592 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:37:10.592 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.5006ms -2024-06-24 11:37:10.593 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:37:10.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.5566ms -2024-06-24 11:37:10.678 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:37:10.679 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:37:10.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.680 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.680 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.680 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:37:10.680 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 2.2137ms -2024-06-24 11:37:10.681 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.681 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.681 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 1.3613ms -2024-06-24 11:37:10.704 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:37:10.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.705 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.705 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.705 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.705 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.705 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.4259ms -2024-06-24 11:37:10.791 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=QwlzCMZjbN2YyI-FnhK_Qg - null null -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.791 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.791 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.792 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.792 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:37:10.793 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:37:10.793 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.4912ms -2024-06-24 11:37:10.801 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:10.801 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:10.802 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:10.802 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:10.802 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:10.802 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:10.803 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:10.804 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:10.808 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:37:10.809 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:37:10.809 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:37:10.809 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:37:10.809 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.5629ms -2024-06-24 11:37:10.809 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:37:10.809 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 0.5083ms -2024-06-24 11:37:10.809 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:37:10.809 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 0.623ms -2024-06-24 11:37:10.813 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.813 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.813 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.814 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 1.3493ms -2024-06-24 11:37:10.814 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:37:10.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:37:10.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:37:10.821 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:37:10.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.6046ms -2024-06-24 11:37:10.822 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:37:10.822 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.2768ms -2024-06-24 11:37:10.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:37:10.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:37:10.829 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:37:10.829 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.3605ms -2024-06-24 11:37:10.829 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:37:10.829 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.5926ms -2024-06-24 11:37:23.319 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.320 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.320 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:23.321 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:37:23.322 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:23.322 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:23.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:23.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:23.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:23.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:23.324 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:23.324 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:23.331 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundary99vz8ctA2rc742w1 359 -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.331 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.331 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:23.332 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.331 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:37:23.333 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 13.4397ms -2024-06-24 11:37:23.333 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.333 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 2.1091ms -2024-06-24 11:37:23.333 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.333 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=QwlzCMZjbN2YyI-FnhK_Qg - 200 null null 12542.4949ms -2024-06-24 11:37:23.343 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:37:23.346 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:37:23.346 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 2.6322ms -2024-06-24 11:37:23.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:37:23.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:37:23.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:37:23.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:37:23.349 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:37:23.349 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.3425ms -2024-06-24 11:37:23.350 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:37:23.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 0.8749ms -2024-06-24 11:37:23.350 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:37:23.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.4323ms -2024-06-24 11:37:23.350 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:37:23.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.1829ms -2024-06-24 11:37:23.350 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:37:23.351 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:37:23.351 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:37:23.351 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:37:23.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.2698ms -2024-06-24 11:37:23.351 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:37:23.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.2603ms -2024-06-24 11:37:23.351 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:37:23.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 0.5521ms -2024-06-24 11:37:23.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:37:23.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:37:23.352 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:37:23.352 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.4006ms -2024-06-24 11:37:23.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.5031ms -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:37:23.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 0.2067ms -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.6977ms -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.4047ms -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 0.459ms -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.3109ms -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 1.4856ms -2024-06-24 11:37:23.354 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:37:23.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 1.7027ms -2024-06-24 11:37:23.354 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:37:23.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 1.1264ms -2024-06-24 11:37:23.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:37:23.354 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:37:23.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.2372ms -2024-06-24 11:37:23.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:37:23.354 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:37:23.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 1.1444ms -2024-06-24 11:37:23.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:37:23.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:37:23.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.17ms -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:37:23.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 0.4609ms -2024-06-24 11:37:23.355 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 0.6209ms -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:37:23.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 0.4928ms -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:37:23.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.2052ms -2024-06-24 11:37:23.356 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:37:23.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 0.8658ms -2024-06-24 11:37:23.356 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:37:23.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 0.677ms -2024-06-24 11:37:23.356 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:37:23.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 0.9528ms -2024-06-24 11:37:23.356 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:37:23.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 1.9118ms -2024-06-24 11:37:23.360 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:37:23.360 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 6.6564ms -2024-06-24 11:37:23.371 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:37:23.371 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:37:23.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.518ms -2024-06-24 11:37:23.372 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:37:23.372 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:37:23.372 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:37:23.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.5697ms -2024-06-24 11:37:23.373 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:37:23.373 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 0.6775ms -2024-06-24 11:37:23.390 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:37:23.391 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:37:23.391 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 1.8396ms -2024-06-24 11:37:23.472 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:37:23.472 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.472 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.472 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:23.473 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.473 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.473 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 1.1012ms -2024-06-24 11:37:23.473 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:37:23.473 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 1.4578ms -2024-06-24 11:37:23.487 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:37:23.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.488 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.488 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:23.489 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.490 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.490 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 2.5055ms -2024-06-24 11:37:23.575 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=NL_fh8Aj_IFatji-gPRZ3A - null null -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.575 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.575 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:23.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:37:23.576 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:37:23.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.4052ms -2024-06-24 11:37:23.576 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.582 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:23.582 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:23.582 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:23.583 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:23.583 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:23.583 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:23.584 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:23.584 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:23.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:23.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:37:23.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:37:23.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:37:23.590 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:37:23.590 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.3582ms -2024-06-24 11:37:23.590 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:37:23.590 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 0.4901ms -2024-06-24 11:37:23.590 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:37:23.590 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 0.4702ms -2024-06-24 11:37:23.590 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:37:23.590 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 0.4034ms -2024-06-24 11:37:23.599 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:37:23.600 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:37:23.600 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.3832ms -2024-06-24 11:37:23.601 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:37:23.601 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:37:23.601 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.3269ms -2024-06-24 11:37:23.603 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:37:23.603 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:37:23.604 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:37:23.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.3434ms -2024-06-24 11:37:23.604 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:37:23.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.6134ms -2024-06-24 11:38:20.150 +03:00 [INF] Application is shutting down... -2024-06-24 11:38:20.150 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:38:20.150 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=NL_fh8Aj_IFatji-gPRZ3A - 200 null null 56575.0274ms -2024-06-24 11:38:20.150 +03:00 [INF] Connection id "0HN4K52APKE2Q", Request id "0HN4K52APKE2Q:0000018F": the application completed without reading the entire request body. -2024-06-24 11:38:20.155 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:38:28.954 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:38:28.955 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:38:29.008 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:38:29.026 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:38:29.182 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:38:29.182 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:38:29.222 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:38:29.222 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:38:29.222 +03:00 [INF] Hosting environment: Development -2024-06-24 11:38:29.222 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:38:46.741 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:38:46.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:38:46.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:38:46.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:38:46.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:38:46.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:38:46.925 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:38:46.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:38:46.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:38:46.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:38:46.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:38:46.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:38:46.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:38:46.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:38:46.928 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:38:47.016 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:38:47.019 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:38:47.020 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 279.3983ms -2024-06-24 11:38:47.022 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=NoWjottvLY2EN4TrG6G3kw - null null -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:38:47.024 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:38:47.025 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:38:47.026 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:04.062 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:39:05.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.283 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.283 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:05.286 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:39:05.374 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:05.375 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:05.376 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:05.393 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:05.394 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:05.395 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:05.422 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:05.424 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:05.470 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:39:05.472 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryr7NVuqAupPAScpYU 359 -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.473 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.473 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:05.474 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.475 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1413.1644ms -2024-06-24 11:39:05.476 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.476 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=NoWjottvLY2EN4TrG6G3kw - 200 null null 18453.3566ms -2024-06-24 11:39:05.479 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.479 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 6.874ms -2024-06-24 11:39:05.485 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:39:05.489 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:39:05.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:39:05.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:39:05.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:39:05.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:39:05.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:39:05.492 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:39:05.492 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:39:05.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 6.6509ms -2024-06-24 11:39:05.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.6455ms -2024-06-24 11:39:05.492 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:39:05.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.1371ms -2024-06-24 11:39:05.492 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:39:05.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 1.2131ms -2024-06-24 11:39:05.492 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:39:05.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:39:05.492 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:39:05.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:39:05.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 2.0335ms -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.924ms -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.8939ms -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:39:05.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.4779ms -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 2.0243ms -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.943ms -2024-06-24 11:39:05.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:39:05.494 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:39:05.494 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.8985ms -2024-06-24 11:39:05.494 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:39:05.494 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 2.5528ms -2024-06-24 11:39:05.494 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:39:05.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:39:05.495 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:39:05.495 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.0664ms -2024-06-24 11:39:05.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:39:05.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:39:05.495 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:39:05.495 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.5019ms -2024-06-24 11:39:05.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:39:05.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:39:05.495 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:39:05.496 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.4119ms -2024-06-24 11:39:05.496 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:39:05.496 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 0.6177ms -2024-06-24 11:39:05.496 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:39:05.496 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.6206ms -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:39:05.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:39:05.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:39:05.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:39:05.497 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:39:05.497 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.824ms -2024-06-24 11:39:05.498 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:39:05.498 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 1.7875ms -2024-06-24 11:39:05.507 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:39:05.507 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 11.3943ms -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 12.212ms -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 11.4206ms -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 12.0319ms -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 11.3933ms -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 12.161ms -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 12.3852ms -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 14.8637ms -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 11.7739ms -2024-06-24 11:39:05.509 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:39:05.509 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 12.3849ms -2024-06-24 11:39:05.509 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:39:05.509 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 12.8755ms -2024-06-24 11:39:05.515 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:39:05.516 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:39:05.516 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.9766ms -2024-06-24 11:39:05.516 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:39:05.516 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:39:05.517 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:39:05.517 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.9692ms -2024-06-24 11:39:05.517 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:39:05.517 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.0277ms -2024-06-24 11:39:05.534 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:39:05.537 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:39:05.537 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 3.7059ms -2024-06-24 11:39:05.604 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:39:05.608 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:39:05.608 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 3.8684ms -2024-06-24 11:39:05.650 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:39:05.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:05.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:05.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.652 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.652 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:05.653 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.655 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.655 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 4.6575ms -2024-06-24 11:39:05.686 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:39:05.687 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:39:05.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:05.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:05.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.688 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.688 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:05.688 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:39:05.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 1.5838ms -2024-06-24 11:39:05.690 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.690 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.690 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 4.2129ms -2024-06-24 11:39:05.694 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=F3jnMYE1MvGN4YZdWzoUjA - null null -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.695 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.695 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:05.697 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.769 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:05.770 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:05.771 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:05.775 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:05.776 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:05.777 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:05.784 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:05.786 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:05.797 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:39:05.798 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:39:05.798 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:39:05.798 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 1.4654ms -2024-06-24 11:39:05.798 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:39:05.799 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:39:05.800 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:39:05.800 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 1.8917ms -2024-06-24 11:39:05.800 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:39:05.800 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 1.7297ms -2024-06-24 11:39:05.800 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:39:05.800 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 1.6023ms -2024-06-24 11:39:05.864 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:39:05.865 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:39:05.865 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.9424ms -2024-06-24 11:39:05.866 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:39:05.866 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:39:05.866 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.5435ms -2024-06-24 11:39:05.868 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:39:05.869 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:39:05.869 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:39:05.869 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.5378ms -2024-06-24 11:39:05.869 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:39:05.869 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.8263ms -2024-06-24 11:39:35.534 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:39:35.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:35.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:35.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.535 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.535 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:35.535 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:39:35.542 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:35.543 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:35.543 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:35.545 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:35.545 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:35.545 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:35.547 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:35.547 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:35.549 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:39:35.549 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 15.7228ms -2024-06-24 11:39:35.553 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryQbGb68mUymVBEAB0 359 -2024-06-24 11:39:35.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:35.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:35.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.554 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.554 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:35.555 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.555 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.555 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=F3jnMYE1MvGN4YZdWzoUjA - 200 null null 29861.2372ms -2024-06-24 11:39:35.560 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.560 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 7.7532ms -2024-06-24 11:39:35.567 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:39:35.569 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:39:35.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 1.8811ms -2024-06-24 11:39:35.574 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:39:35.575 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:39:35.575 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:39:35.575 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:39:35.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:39:35.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.5083ms -2024-06-24 11:39:35.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:39:35.576 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:39:35.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.0413ms -2024-06-24 11:39:35.576 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:39:35.577 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 0.8921ms -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.6616ms -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:39:35.577 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.7831ms -2024-06-24 11:39:35.577 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:39:35.577 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:39:35.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.7712ms -2024-06-24 11:39:35.578 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:39:35.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 2.0646ms -2024-06-24 11:39:35.578 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:39:35.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.9828ms -2024-06-24 11:39:35.578 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:39:35.578 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:39:35.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 1.3447ms -2024-06-24 11:39:35.580 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:39:35.580 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:39:35.580 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.6281ms -2024-06-24 11:39:35.580 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 3.0752ms -2024-06-24 11:39:35.581 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:39:35.581 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 3.2243ms -2024-06-24 11:39:35.583 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:39:35.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 4.3042ms -2024-06-24 11:39:35.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:39:35.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:39:35.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:39:35.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:39:35.585 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:39:35.585 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.9514ms -2024-06-24 11:39:35.586 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:39:35.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.2835ms -2024-06-24 11:39:35.586 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:39:35.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.8367ms -2024-06-24 11:39:35.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:39:35.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:39:35.587 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:39:35.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.8216ms -2024-06-24 11:39:35.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:39:35.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:39:35.588 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:39:35.588 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:39:35.588 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:39:35.589 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:39:35.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.6557ms -2024-06-24 11:39:35.589 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:39:35.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 1.7091ms -2024-06-24 11:39:35.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:39:35.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:39:35.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:39:35.589 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:39:35.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:39:35.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 2.7178ms -2024-06-24 11:39:35.590 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:39:35.591 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:39:35.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 1.5642ms -2024-06-24 11:39:35.591 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:39:35.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 3.6293ms -2024-06-24 11:39:35.591 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:39:35.591 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:39:35.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 2.3682ms -2024-06-24 11:39:35.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 2.5492ms -2024-06-24 11:39:35.591 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:39:35.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 3.5617ms -2024-06-24 11:39:35.592 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:39:35.592 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 2.1704ms -2024-06-24 11:39:35.592 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:39:35.592 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 3.0434ms -2024-06-24 11:39:35.593 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:39:35.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 4.3833ms -2024-06-24 11:39:35.594 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:39:35.594 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 744 text/css 8.8488ms -2024-06-24 11:39:35.627 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:39:35.627 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:39:35.628 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:39:35.628 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.9186ms -2024-06-24 11:39:35.628 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:39:35.628 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.3317ms -2024-06-24 11:39:35.656 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:39:35.659 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:39:35.659 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 2.8999ms -2024-06-24 11:39:35.677 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:39:35.679 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:39:35.679 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.3678ms -2024-06-24 11:39:35.807 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.807 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.807 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:35.808 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.808 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.808 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 1.2737ms -2024-06-24 11:39:35.812 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.813 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.813 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:35.814 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.814 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.814 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.7436ms -2024-06-24 11:39:35.820 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=OIn6w0LK0s3c-RzJJ3E2lg - null null -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.820 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.820 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:35.821 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:39:35.830 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:39:35.830 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 1.8446ms -2024-06-24 11:39:35.830 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:35.830 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:35.830 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:35.831 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:35.831 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:35.831 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:35.833 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:35.833 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:35.866 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:39:35.866 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:39:35.866 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.4835ms -2024-06-24 11:39:35.867 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:39:35.867 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:39:35.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.4518ms -2024-06-24 11:39:35.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:39:35.896 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:39:35.896 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.5526ms -2024-06-24 11:39:35.896 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:39:35.896 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:39:35.897 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:39:35.897 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:39:35.897 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.8839ms -2024-06-24 11:39:35.897 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.9531ms -2024-06-24 11:40:09.702 +03:00 [INF] Application is shutting down... -2024-06-24 11:40:09.702 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:09.702 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=OIn6w0LK0s3c-RzJJ3E2lg - 200 null null 33882.6289ms -2024-06-24 11:40:09.703 +03:00 [INF] Connection id "0HN4K54845G7D", Request id "0HN4K54845G7D:000000B3": the application completed without reading the entire request body. -2024-06-24 11:40:09.707 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:40:33.596 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:40:33.597 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:40:33.651 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:40:33.667 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:40:33.814 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:40:33.814 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:40:33.858 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:40:33.858 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:40:33.859 +03:00 [INF] Hosting environment: Development -2024-06-24 11:40:33.859 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:40:35.107 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:40:35.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:35.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:35.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:35.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:35.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:35.289 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:35.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:35.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:35.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:35.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:35.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:35.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:35.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:35.292 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:35.382 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:35.384 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:35.387 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 280.2527ms -2024-06-24 11:40:35.388 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=W8M5-WXbLEsblYVE6wsQwQ - null null -2024-06-24 11:40:35.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:35.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:35.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:35.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:35.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:35.390 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:35.390 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:35.392 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:38.548 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:39.787 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:39.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:39.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:39.788 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:39.791 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:40:39.884 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:40:39.885 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:40:39.886 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:40:39.903 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:40:39.903 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:40:39.904 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:40:39.931 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:40:39.933 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:40:39.981 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:40:39.986 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1437.874ms -2024-06-24 11:40:40.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/book.png - null null -2024-06-24 11:40:40.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/discord.svg - null null -2024-06-24 11:40:40.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg - null null -2024-06-24 11:40:40.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/instagram.svg - null null -2024-06-24 11:40:40.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/youtube.svg - null null -2024-06-24 11:40:40.008 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:40:40.008 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:40:40.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:40:40.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:40:40.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:40:40.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.012 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.012 +03:00 [INF] The file /images/getting-started/img-community.png was not modified -2024-06-24 11:40:40.012 +03:00 [INF] The file /images/getting-started/bg-01.png was not modified -2024-06-24 11:40:40.012 +03:00 [INF] The file /images/getting-started/img-blog.png was not modified -2024-06-24 11:40:40.012 +03:00 [INF] The file /images/getting-started/img-support.png was not modified -2024-06-24 11:40:40.012 +03:00 [INF] The file /blazor-global-styles.css was not modified -2024-06-24 11:40:40.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 304 null image/png 3.6447ms -2024-06-24 11:40:40.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 304 null text/css 4.3056ms -2024-06-24 11:40:40.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 304 null image/png 4.2821ms -2024-06-24 11:40:40.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 304 null image/png 3.7414ms -2024-06-24 11:40:40.013 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 304 null image/png 3.6728ms -2024-06-24 11:40:40.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/discord.svg - 404 0 null 7.9168ms -2024-06-24 11:40:40.015 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/discord.svg, Response status code: 404 -2024-06-24 11:40:40.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/youtube.svg - 404 0 null 8.105ms -2024-06-24 11:40:40.015 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/youtube.svg, Response status code: 404 -2024-06-24 11:40:40.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg - 404 0 null 8.2998ms -2024-06-24 11:40:40.015 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg, Response status code: 404 -2024-06-24 11:40:40.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/instagram.svg - 404 0 null 8.3654ms -2024-06-24 11:40:40.015 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/instagram.svg, Response status code: 404 -2024-06-24 11:40:40.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/book.png - 404 0 null 8.9043ms -2024-06-24 11:40:40.016 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/book.png, Response status code: 404 -2024-06-24 11:40:40.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:40:40.032 +03:00 [INF] The file /images/logo/leptonx/logo-light.png was not modified -2024-06-24 11:40:40.032 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 304 null image/png 0.4993ms -2024-06-24 11:40:40.097 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.098 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.098 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.099 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:40.100 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:40.100 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 3.7413ms -2024-06-24 11:40:40.126 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:40:40.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.127 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.127 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.128 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:40.129 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:40.129 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 2.9611ms -2024-06-24 11:40:40.130 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=n275ub7P2oiPy_QDAW1izg - null null -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.131 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.132 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.133 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:40.177 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:40:40.178 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:40:40.178 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:40:40.179 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:40:40.180 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:40:40.181 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:40:40.183 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:40:40.184 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:40:40.192 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/book.png - null null -2024-06-24 11:40:40.193 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/discord.svg - null null -2024-06-24 11:40:40.193 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg - null null -2024-06-24 11:40:40.193 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/youtube.svg - null null -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.194 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.194 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/instagram.svg - null null -2024-06-24 11:40:40.194 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.194 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.194 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.195 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.195 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.196 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/book.png - 404 0 null 3.5246ms -2024-06-24 11:40:40.196 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/book.png, Response status code: 404 -2024-06-24 11:40:40.196 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/discord.svg - 404 0 null 3.6085ms -2024-06-24 11:40:40.196 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/discord.svg, Response status code: 404 -2024-06-24 11:40:40.197 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg - 404 0 null 3.9888ms -2024-06-24 11:40:40.197 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg, Response status code: 404 -2024-06-24 11:40:40.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/instagram.svg - 404 0 null 4.3782ms -2024-06-24 11:40:40.198 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/instagram.svg, Response status code: 404 -2024-06-24 11:40:40.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/youtube.svg - 404 0 null 5.53ms -2024-06-24 11:40:40.198 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/youtube.svg, Response status code: 404 -2024-06-24 11:40:45.925 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:40:45.927 +03:00 [INF] The file /blazor-global-styles.css was not modified -2024-06-24 11:40:45.927 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 304 null text/css 1.5146ms -2024-06-24 11:40:46.116 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:40:46.121 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:40:46.122 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 5.7827ms -2024-06-24 11:40:46.763 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:40:46.765 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:40:46.765 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 1.8723ms -2024-06-24 11:42:27.907 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - null null -2024-06-24 11:42:27.908 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light-thumbnail.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light-thumbnail.png' -2024-06-24 11:42:27.908 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - 200 9230 image/png 0.9607ms -2024-06-24 11:42:28.260 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:42:28.261 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:42:28.261 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.7513ms -2024-06-24 11:46:16.028 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:16.028 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=n275ub7P2oiPy_QDAW1izg - 200 null null 335897.455ms -2024-06-24 11:46:16.028 +03:00 [INF] Connection id "0HN4K558DJ31M", Request id "0HN4K558DJ31M:00000021": the application completed without reading the entire request body. -2024-06-24 11:46:16.028 +03:00 [INF] Application is shutting down... -2024-06-24 11:46:16.032 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:16.032 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=W8M5-WXbLEsblYVE6wsQwQ - 200 null null 340644.6114ms -2024-06-24 11:46:16.033 +03:00 [INF] Connection id "0HN4K558DJ31M", Request id "0HN4K558DJ31M:00000003": the application completed without reading the entire request body. -2024-06-24 11:46:16.034 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:46:25.302 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:46:25.303 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:46:25.359 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:46:25.375 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:46:25.516 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:46:25.516 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:46:25.556 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:46:25.556 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:46:25.556 +03:00 [INF] Hosting environment: Development -2024-06-24 11:46:25.556 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:46:37.438 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:46:38.251 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryad6Mrt9wOuZwdh9a 359 -2024-06-24 11:46:38.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:38.280 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:38.280 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.285 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:38.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:38.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:38.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:38.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:38.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.289 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:38.392 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:38.396 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:38.398 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 147.4492ms -2024-06-24 11:46:38.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.798 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.798 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:38.808 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:46:38.893 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:46:38.894 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:46:38.895 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:46:38.913 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:46:38.913 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:46:38.914 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:46:38.940 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:46:38.942 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:46:38.991 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:46:38.994 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundarytUqoQ6NTPXGecvR2 359 -2024-06-24 11:46:38.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.996 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.996 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:38.997 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:38.997 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:38.997 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 3.7025ms -2024-06-24 11:46:38.998 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1560.6584ms -2024-06-24 11:46:39.011 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:46:39.018 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:46:39.018 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 6.4037ms -2024-06-24 11:46:39.023 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:46:39.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:46:39.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:46:39.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:46:39.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:46:39.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:46:39.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:46:39.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:46:39.026 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:46:39.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:46:39.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:46:39.026 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 2.5232ms -2024-06-24 11:46:39.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:46:39.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:46:39.028 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:46:39.028 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:46:39.028 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:46:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 3.3304ms -2024-06-24 11:46:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 4.4011ms -2024-06-24 11:46:39.028 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:46:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 2.3524ms -2024-06-24 11:46:39.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:46:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 2.6728ms -2024-06-24 11:46:39.028 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:46:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 4.5387ms -2024-06-24 11:46:39.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:46:39.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:46:39.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:46:39.029 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:46:39.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 5.2764ms -2024-06-24 11:46:39.029 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:46:39.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:46:39.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 2.9863ms -2024-06-24 11:46:39.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:46:39.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:46:39.029 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:46:39.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 4.7787ms -2024-06-24 11:46:39.029 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:46:39.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 3.3273ms -2024-06-24 11:46:39.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:46:39.030 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:46:39.030 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:46:39.030 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 3.7344ms -2024-06-24 11:46:39.030 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 3.7407ms -2024-06-24 11:46:39.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:46:39.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:46:39.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:46:39.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:46:39.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:46:39.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:46:39.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:46:39.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:46:39.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:46:39.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:46:39.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:46:39.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:46:39.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:46:39.033 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:46:39.033 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:46:39.034 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:46:39.034 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 6.0895ms -2024-06-24 11:46:39.035 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:46:39.035 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:46:39.035 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 744 text/css 6.3474ms -2024-06-24 11:46:39.035 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:46:39.035 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 6.6652ms -2024-06-24 11:46:39.035 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 4.9462ms -2024-06-24 11:46:39.036 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:46:39.036 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:46:39.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 7.0549ms -2024-06-24 11:46:39.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 5.0105ms -2024-06-24 11:46:39.036 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:46:39.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 6.1433ms -2024-06-24 11:46:39.036 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:46:39.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 5.1659ms -2024-06-24 11:46:39.036 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:46:39.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 5.9403ms -2024-06-24 11:46:39.037 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:46:39.037 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:46:39.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 8.5971ms -2024-06-24 11:46:39.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 3.899ms -2024-06-24 11:46:39.037 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:46:39.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 5.377ms -2024-06-24 11:46:39.037 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:46:39.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 5.1925ms -2024-06-24 11:46:39.037 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:46:39.038 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 6.7446ms -2024-06-24 11:46:39.038 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:46:39.038 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:46:39.038 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 6.166ms -2024-06-24 11:46:39.038 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 7.2279ms -2024-06-24 11:46:39.042 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:46:39.042 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:46:39.042 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:46:39.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 10.671ms -2024-06-24 11:46:39.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 9.4494ms -2024-06-24 11:46:39.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 13.1241ms -2024-06-24 11:46:39.042 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:46:39.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 13.1578ms -2024-06-24 11:46:39.043 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:46:39.043 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 13.3664ms -2024-06-24 11:46:39.043 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:46:39.043 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 13.2198ms -2024-06-24 11:46:39.046 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:46:39.046 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 15.7532ms -2024-06-24 11:46:39.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:46:39.101 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:46:39.101 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 3.5422ms -2024-06-24 11:46:39.105 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:46:39.107 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:46:39.107 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 2.0995ms -2024-06-24 11:46:39.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:46:39.121 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:46:39.121 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.6499ms -2024-06-24 11:46:39.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:46:39.126 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:46:39.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 4.3898ms -2024-06-24 11:46:39.238 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:46:39.241 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:46:39.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 3.3322ms -2024-06-24 11:46:39.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:46:39.242 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.243 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.243 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:39.244 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:39.245 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:39.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 3.4771ms -2024-06-24 11:46:39.250 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:46:39.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:39.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:39.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.252 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:39.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:39.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:39.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:39.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:39.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.255 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:39.260 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:39.263 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:39.263 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 12.5144ms -2024-06-24 11:46:39.267 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=g1Vja2US5v59Ch8GuwNnJA - null null -2024-06-24 11:46:39.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.268 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.268 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:39.270 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:39.334 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:46:39.334 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:46:39.335 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:46:39.336 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:46:39.336 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:46:39.337 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:46:39.339 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:46:39.340 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:46:39.361 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:46:39.362 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:46:39.362 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.9921ms -2024-06-24 11:46:39.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:46:39.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:46:39.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:46:39.365 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:46:39.365 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.8055ms -2024-06-24 11:46:39.366 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:46:39.366 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.9545ms -2024-06-24 11:46:39.366 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:46:39.366 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 1.4307ms -2024-06-24 11:46:39.414 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:46:39.415 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:46:39.415 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.9766ms -2024-06-24 11:47:16.888 +03:00 [INF] Application is shutting down... -2024-06-24 11:47:16.888 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:16.888 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=g1Vja2US5v59Ch8GuwNnJA - 200 null null 37621.2134ms -2024-06-24 11:47:16.889 +03:00 [INF] Connection id "0HN4K58KD2LIJ", Request id "0HN4K58KD2LIJ:0000005D": the application completed without reading the entire request body. -2024-06-24 11:47:16.893 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:47:25.649 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:47:25.650 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:47:25.707 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:47:25.724 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:47:25.869 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:47:25.869 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:47:25.909 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:47:25.909 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:47:25.909 +03:00 [INF] Hosting environment: Development -2024-06-24 11:47:25.909 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:47:29.021 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:47:30.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:47:30.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:47:30.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.398 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:47:30.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:47:30.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:47:30.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:47:30.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:47:30.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.402 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:47:30.502 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:47:30.585 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:47:30.586 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:47:30.587 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:47:30.604 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:47:30.611 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:47:30.613 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:47:30.645 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:47:30.647 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:47:30.692 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:47:30.695 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundarytkFBptvoJS1V49l5 359 -2024-06-24 11:47:30.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:47:30.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:47:30.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.697 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.697 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:47:30.698 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1678.0006ms -2024-06-24 11:47:30.699 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.703 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.703 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 8.2612ms -2024-06-24 11:47:30.711 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:47:30.718 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:47:30.718 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 7.4098ms -2024-06-24 11:47:30.720 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:47:30.722 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:47:30.722 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:47:30.723 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.395ms -2024-06-24 11:47:30.723 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:47:30.723 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:47:30.723 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:47:30.723 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.8328ms -2024-06-24 11:47:30.724 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:47:30.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.2433ms -2024-06-24 11:47:30.724 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:47:30.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.4179ms -2024-06-24 11:47:30.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:47:30.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:47:30.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:47:30.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:47:30.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:47:30.725 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:47:30.725 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:47:30.725 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:47:30.725 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:47:30.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:47:30.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:47:30.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:47:30.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:47:30.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:47:30.728 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:47:30.728 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 3.509ms -2024-06-24 11:47:30.728 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:47:30.728 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 3.2108ms -2024-06-24 11:47:30.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:47:30.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:47:30.729 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:47:30.729 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:47:30.729 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:47:30.729 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 4.7685ms -2024-06-24 11:47:30.729 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:47:30.729 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:47:30.729 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 4.9734ms -2024-06-24 11:47:30.729 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 3.6097ms -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:47:30.730 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:47:30.730 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:47:30.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 4.402ms -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 5.8343ms -2024-06-24 11:47:30.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 5.4178ms -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:47:30.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 5.765ms -2024-06-24 11:47:30.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:47:30.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:47:30.731 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:47:30.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:47:30.731 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 6.4378ms -2024-06-24 11:47:30.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:47:30.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:47:30.731 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:47:30.731 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 5.8065ms -2024-06-24 11:47:30.732 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:47:30.732 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:47:30.732 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 3.8477ms -2024-06-24 11:47:30.732 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 744 text/css 6.2358ms -2024-06-24 11:47:30.732 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:47:30.733 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:47:30.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 7.7713ms -2024-06-24 11:47:30.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 4.1169ms -2024-06-24 11:47:30.733 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:47:30.733 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:47:30.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 4.5155ms -2024-06-24 11:47:30.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 6.8579ms -2024-06-24 11:47:30.734 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:47:30.734 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 5.2999ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 4.7296ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 4.1265ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 4.7284ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 3.9506ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 4.7967ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 4.4816ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 6.0448ms -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 4.3668ms -2024-06-24 11:47:30.756 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:47:30.756 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 24.8871ms -2024-06-24 11:47:30.757 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:47:30.757 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:47:30.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 26.2119ms -2024-06-24 11:47:30.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 26.7912ms -2024-06-24 11:47:30.757 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:47:30.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 28.199ms -2024-06-24 11:47:30.758 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:47:30.758 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 28.1683ms -2024-06-24 11:47:30.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:47:30.774 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:47:30.774 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.3144ms -2024-06-24 11:47:30.775 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:47:30.775 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:47:30.780 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:47:30.780 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 5.1235ms -2024-06-24 11:47:30.781 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:47:30.781 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 6.3012ms -2024-06-24 11:47:30.812 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:47:30.815 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:47:30.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 3.8197ms -2024-06-24 11:47:30.858 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:47:30.861 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:47:30.861 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 2.6424ms -2024-06-24 11:47:30.863 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:47:30.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:47:30.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:47:30.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.866 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.866 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:47:30.867 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 5.2031ms -2024-06-24 11:47:30.875 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:47:30.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.876 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.876 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:47:30.877 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.878 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.878 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 3.8267ms -2024-06-24 11:47:30.881 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=8ffbYW8KaiKHMkk1dW6fmQ - null null -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.881 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.881 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:47:30.882 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.962 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:47:30.963 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:47:30.964 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:47:30.965 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:47:30.965 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:47:30.966 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:47:30.969 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:47:30.969 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:47:31.044 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:47:31.044 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:47:31.045 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:47:31.045 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:47:31.045 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.9562ms -2024-06-24 11:47:31.045 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 1.0462ms -2024-06-24 11:47:31.048 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:47:31.049 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:47:31.049 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:47:31.049 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:47:31.049 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.5976ms -2024-06-24 11:47:31.049 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:47:31.049 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 1.3307ms -2024-06-24 11:47:31.050 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:47:31.050 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.6796ms -2024-06-24 11:49:45.912 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:49:45.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:45.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:45.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:49:45.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:49:45.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:45.914 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:45.914 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:49:45.916 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:49:45.921 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:49:45.921 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:49:45.922 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:49:45.924 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:49:45.925 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:49:45.925 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:49:45.929 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:49:45.930 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:49:45.932 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:49:45.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 20.5942ms -2024-06-24 11:49:45.938 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryIMcooJkZuaVPkKxy 359 -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:45.939 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:45.939 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:49:45.941 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:45.946 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:45.946 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=8ffbYW8KaiKHMkk1dW6fmQ - 200 null null 135065.569ms -2024-06-24 11:49:45.949 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:45.949 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 10.9428ms -2024-06-24 11:49:45.953 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:49:45.956 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:49:45.956 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 3.2071ms -2024-06-24 11:49:45.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:49:45.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:49:45.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:49:45.962 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:49:45.962 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.8242ms -2024-06-24 11:49:45.963 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:49:45.963 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.4281ms -2024-06-24 11:49:45.963 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:49:45.963 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.0052ms -2024-06-24 11:49:45.963 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:49:45.963 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:49:45.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:49:45.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:49:45.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:49:45.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.6501ms -2024-06-24 11:49:45.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.7301ms -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.9623ms -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.7682ms -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:49:45.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.7301ms -2024-06-24 11:49:45.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 1.0079ms -2024-06-24 11:49:45.966 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:49:45.966 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:49:45.966 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:49:45.966 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:49:45.966 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:49:45.966 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 1.7978ms -2024-06-24 11:49:45.966 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 1.6645ms -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:49:45.967 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 2.5563ms -2024-06-24 11:49:45.968 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 2.3076ms -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:49:45.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:49:45.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:49:45.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:49:45.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:49:45.970 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:49:45.970 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 5.1131ms -2024-06-24 11:49:45.973 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:49:45.973 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 6.5029ms -2024-06-24 11:49:45.974 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:49:45.974 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:49:45.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 7.1832ms -2024-06-24 11:49:45.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 744 text/css 7.7917ms -2024-06-24 11:49:45.974 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:49:45.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 8.027ms -2024-06-24 11:49:45.975 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:49:45.975 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 8.8506ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 7.4184ms -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 7.2857ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 8.6406ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 8.9065ms -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 9.4732ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 8.0907ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 7.0982ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 7.9777ms -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 7.2502ms -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 8.322ms -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 9.0857ms -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 8.7789ms -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 10.2379ms -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 10.2779ms -2024-06-24 11:49:45.978 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:49:45.978 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 9.9527ms -2024-06-24 11:49:45.978 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:49:45.978 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 10.6803ms -2024-06-24 11:49:46.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:49:46.008 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:49:46.009 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.3203ms -2024-06-24 11:49:46.010 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:49:46.010 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:49:46.012 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:49:46.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 1.5983ms -2024-06-24 11:49:46.012 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:49:46.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.9804ms -2024-06-24 11:49:46.034 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:49:46.039 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:49:46.039 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 4.4062ms -2024-06-24 11:49:46.092 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:49:46.096 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:49:46.096 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 3.6909ms -2024-06-24 11:49:46.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:49:46.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:49:46.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:49:46.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.100 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.100 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:49:46.102 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:46.102 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:46.102 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 3.9233ms -2024-06-24 11:49:46.108 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.109 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.109 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:49:46.111 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:46.112 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:46.112 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 3.4555ms -2024-06-24 11:49:46.115 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=LRIxyzI-8v_W3gF4203FGg - null null -2024-06-24 11:49:46.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:49:46.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.116 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.116 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:49:46.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:46.133 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:49:46.134 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:49:46.134 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:49:46.135 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:49:46.136 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:49:46.136 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:49:46.139 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:49:46.140 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:49:46.169 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:49:46.174 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:49:46.175 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:49:46.175 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 5.8915ms -2024-06-24 11:49:46.175 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:49:46.175 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 1.1563ms -2024-06-24 11:49:46.181 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:49:46.182 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:49:46.184 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:49:46.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 2.0722ms -2024-06-24 11:49:46.184 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:49:46.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 2.8289ms -2024-06-24 11:49:46.310 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:49:46.311 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:49:46.311 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.8401ms -2024-06-24 11:50:46.192 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:50:46.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.193 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.193 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:50:46.194 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:50:46.197 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:50:46.197 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:50:46.197 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:50:46.198 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:50:46.199 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:50:46.199 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:50:46.201 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:50:46.202 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:50:46.203 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:50:46.203 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 11.2587ms -2024-06-24 11:50:46.209 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundary3gVjSpfArGADXPdX 359 -2024-06-24 11:50:46.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.210 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.210 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:50:46.210 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=LRIxyzI-8v_W3gF4203FGg - 200 null null 60095.1591ms -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.210 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:50:46.210 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.211 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.211 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 2.4344ms -2024-06-24 11:50:46.230 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:50:46.232 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:50:46.232 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 2.5778ms -2024-06-24 11:50:46.238 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:50:46.239 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:50:46.239 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.2031ms -2024-06-24 11:50:46.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:50:46.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:50:46.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:50:46.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:50:46.240 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:50:46.240 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.5642ms -2024-06-24 11:50:46.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:50:46.241 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:50:46.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 0.8923ms -2024-06-24 11:50:46.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:50:46.241 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:50:46.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.4471ms -2024-06-24 11:50:46.241 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:50:46.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 0.8101ms -2024-06-24 11:50:46.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:50:46.241 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:50:46.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.4963ms -2024-06-24 11:50:46.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:50:46.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.7079ms -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.2963ms -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.666ms -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.5723ms -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.5706ms -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 0.7855ms -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 0.543ms -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.3944ms -2024-06-24 11:50:46.243 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:50:46.243 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:50:46.243 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 744 text/css 0.2891ms -2024-06-24 11:50:46.243 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:50:46.243 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 0.4811ms -2024-06-24 11:50:46.243 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:50:46.243 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.6233ms -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:50:46.244 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:50:46.244 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 2.2395ms -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:50:46.244 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:50:46.244 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.7134ms -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.7428ms -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:50:46.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 0.8574ms -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.7187ms -2024-06-24 11:50:46.245 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:50:46.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 1.0308ms -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:50:46.246 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:50:46.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:50:46.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.327ms -2024-06-24 11:50:46.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:50:46.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:50:46.246 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:50:46.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:50:46.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 0.3048ms -2024-06-24 11:50:46.246 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:50:46.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 0.4366ms -2024-06-24 11:50:46.246 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:50:46.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 0.3874ms -2024-06-24 11:50:46.246 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:50:46.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 0.4917ms -2024-06-24 11:50:46.264 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:50:46.264 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 19.1175ms -2024-06-24 11:50:46.264 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:50:46.264 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 18.3768ms -2024-06-24 11:50:46.264 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:50:46.264 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 19.1537ms -2024-06-24 11:50:46.265 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:50:46.265 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 19.3194ms -2024-06-24 11:50:46.265 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:50:46.265 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 19.9284ms -2024-06-24 11:50:46.265 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:50:46.265 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 20.7469ms -2024-06-24 11:50:46.268 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:50:46.268 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:50:46.268 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 23.9284ms -2024-06-24 11:50:46.270 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:50:46.270 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.7059ms -2024-06-24 11:50:46.284 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:50:46.286 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:50:46.286 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 2.1298ms -2024-06-24 11:50:46.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:50:46.287 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:50:46.287 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 1.0399ms -2024-06-24 11:50:46.306 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:50:46.307 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:50:46.307 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.6771ms -2024-06-24 11:50:46.398 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:50:46.400 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:50:46.400 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 2.0339ms -2024-06-24 11:50:46.404 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:50:46.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:50:46.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:50:46.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.408 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.408 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:50:46.409 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.409 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.409 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 4.968ms -2024-06-24 11:50:46.417 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.417 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.417 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:50:46.418 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.418 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.418 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.3525ms -2024-06-24 11:50:46.420 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=XdFwfM9h7z7ty3NcQaN_1g - null null -2024-06-24 11:50:46.420 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.420 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.421 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.421 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:50:46.422 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.432 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:50:46.432 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:50:46.432 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:50:46.433 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:50:46.434 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:50:46.434 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:50:46.435 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:50:46.436 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:50:46.451 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:50:46.453 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:50:46.453 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 1.924ms -2024-06-24 11:50:46.455 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:50:46.457 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:50:46.458 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 2.7791ms -2024-06-24 11:50:46.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:50:46.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:50:46.460 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:50:46.460 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.5742ms -2024-06-24 11:50:46.460 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:50:46.460 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.867ms -2024-06-24 11:50:46.594 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:50:46.594 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:50:46.594 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.5578ms -2024-06-24 11:51:57.922 +03:00 [INF] Application is shutting down... -2024-06-24 11:51:57.926 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:51:57.926 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=XdFwfM9h7z7ty3NcQaN_1g - 200 null null 71505.9639ms -2024-06-24 11:51:57.926 +03:00 [INF] Connection id "0HN4K593P070C", Request id "0HN4K593P070C:00000127": the application completed without reading the entire request body. -2024-06-24 11:51:57.927 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:52:06.220 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:52:06.221 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:52:06.274 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:52:06.291 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:52:06.443 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:52:06.443 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:52:06.492 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:52:06.492 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:52:06.492 +03:00 [INF] Hosting environment: Development -2024-06-24 11:52:06.492 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:52:22.795 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:52:24.056 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:52:24.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.095 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.095 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.095 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.101 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.104 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.182 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.183 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.202 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.205 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.205 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:52:24.206 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 149.9645ms -2024-06-24 11:52:24.208 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=SFijsVqxWwfk18Y5SUk1AQ - null null -2024-06-24 11:52:24.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.210 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.210 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.211 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.295 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:52:24.296 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:52:24.297 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:52:24.313 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:52:24.314 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:52:24.315 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:52:24.341 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:52:24.343 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:52:24.389 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryvqb7lA8uvQnpSxsm 359 -2024-06-24 11:52:24.390 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:52:24.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.390 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.391 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.392 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.392 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.393 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=SFijsVqxWwfk18Y5SUk1AQ - 200 null null 184.3103ms -2024-06-24 11:52:24.395 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.395 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 6.0931ms -2024-06-24 11:52:24.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1602.6515ms -2024-06-24 11:52:24.408 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:52:24.414 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:52:24.414 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 6.2293ms -2024-06-24 11:52:24.415 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:52:24.417 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:52:24.417 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:52:24.417 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.0005ms -2024-06-24 11:52:24.417 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:52:24.418 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:52:24.418 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:52:24.418 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.8782ms -2024-06-24 11:52:24.418 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:52:24.418 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:52:24.418 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.3882ms -2024-06-24 11:52:24.418 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:52:24.419 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:52:24.419 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:52:24.419 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:52:24.419 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:52:24.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.7579ms -2024-06-24 11:52:24.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.1978ms -2024-06-24 11:52:24.419 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:52:24.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.7308ms -2024-06-24 11:52:24.419 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:52:24.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.7241ms -2024-06-24 11:52:24.419 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:52:24.420 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.4019ms -2024-06-24 11:52:24.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:52:24.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:52:24.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:52:24.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:52:24.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:52:24.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:52:24.421 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:52:24.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 1.0209ms -2024-06-24 11:52:24.421 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:52:24.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:52:24.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.7057ms -2024-06-24 11:52:24.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:52:24.421 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:52:24.421 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:52:24.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 1.149ms -2024-06-24 11:52:24.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.7942ms -2024-06-24 11:52:24.422 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:52:24.422 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:52:24.422 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 0.8441ms -2024-06-24 11:52:24.422 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.6428ms -2024-06-24 11:52:24.422 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:52:24.422 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 1001 text/css 1.1779ms -2024-06-24 11:52:24.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:52:24.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:52:24.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:52:24.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:52:24.423 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:52:24.423 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.6628ms -2024-06-24 11:52:24.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:52:24.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:52:24.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:52:24.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:52:24.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:52:24.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:52:24.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:52:24.425 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:52:24.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 1.0271ms -2024-06-24 11:52:24.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:52:24.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:52:24.426 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:52:24.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 2.8312ms -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:52:24.426 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:52:24.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.7455ms -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:52:24.426 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:52:24.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 3.1901ms -2024-06-24 11:52:24.426 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:52:24.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 3.0591ms -2024-06-24 11:52:24.426 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:52:24.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 1.9047ms -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 1.5506ms -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 6.0233ms -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 3.269ms -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 3.3145ms -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 2.3951ms -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 1.7681ms -2024-06-24 11:52:24.428 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:52:24.428 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:52:24.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 4.0344ms -2024-06-24 11:52:24.428 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:52:24.428 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:52:24.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 2.1975ms -2024-06-24 11:52:24.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 2.579ms -2024-06-24 11:52:24.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 2.3931ms -2024-06-24 11:52:24.429 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:52:24.429 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 3.1233ms -2024-06-24 11:52:24.430 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:52:24.430 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 4.7964ms -2024-06-24 11:52:24.430 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:52:24.431 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 6.8215ms -2024-06-24 11:52:24.460 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:52:24.460 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:52:24.462 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:52:24.462 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 1.8767ms -2024-06-24 11:52:24.466 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:52:24.466 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 5.3946ms -2024-06-24 11:52:24.475 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:52:24.476 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:52:24.476 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.2488ms -2024-06-24 11:52:24.482 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:52:24.484 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:52:24.484 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.8131ms -2024-06-24 11:52:24.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:52:24.618 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:52:24.618 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 4.0598ms -2024-06-24 11:52:24.619 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:52:24.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.620 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.656 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.657 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.660 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.662 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.662 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 42.679ms -2024-06-24 11:52:24.669 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:52:24.669 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.670 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.670 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.673 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.674 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.674 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 5.2444ms -2024-06-24 11:52:24.678 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=y5keVD8R5lMVtlvyJ2IKaQ - null null -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.678 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.679 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.739 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:52:24.740 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:52:24.740 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:52:24.741 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:52:24.741 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:52:24.742 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:52:24.745 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:52:24.746 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:52:24.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:52:24.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:52:24.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:52:24.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:52:24.774 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:52:24.774 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:52:24.774 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 1.3114ms -2024-06-24 11:52:24.774 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 0.4139ms -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 1.402ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 0.5817ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 1.515ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 0.4818ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 0.5007ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 0.7532ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 2.2698ms -2024-06-24 11:52:24.778 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:52:24.778 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 3.8096ms -2024-06-24 11:52:24.788 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:52:24.790 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:52:24.790 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 1.6824ms -2024-06-24 11:52:24.791 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:52:24.792 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:52:24.792 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.8577ms -2024-06-24 11:52:24.795 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:52:24.795 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:52:24.796 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:52:24.796 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 1.3391ms -2024-06-24 11:52:24.797 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:52:24.797 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 1.742ms -2024-06-24 11:52:24.800 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:52:24.801 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:52:24.801 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.7963ms -2024-06-24 11:55:42.373 +03:00 [INF] Application is shutting down... -2024-06-24 11:55:42.374 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:55:42.374 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=y5keVD8R5lMVtlvyJ2IKaQ - 200 null null 197696.2007ms -2024-06-24 11:55:42.374 +03:00 [INF] Connection id "0HN4K5BRALE8R", Request id "0HN4K5BRALE8R:0000005F": the application completed without reading the entire request body. -2024-06-24 11:55:42.378 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:55:51.041 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:55:51.041 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:55:51.104 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:55:51.119 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:55:51.267 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:55:51.267 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:55:51.308 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:55:51.308 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:55:51.308 +03:00 [INF] Hosting environment: Development -2024-06-24 11:55:51.308 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:56:08.735 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:56:08.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:08.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:08.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:08.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:08.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:08.910 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:08.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:08.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:08.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:08.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:08.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:08.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:08.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:08.913 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:09.000 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:09.003 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:09.004 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 269.8661ms -2024-06-24 11:56:09.007 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=ceGQAaQYMKPGV7m7Hmo4AQ - null null -2024-06-24 11:56:09.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:09.008 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:09.009 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:09.009 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:09.011 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:14.280 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:56:15.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:15.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:15.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.468 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.468 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:15.471 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:56:15.562 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:56:15.563 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:56:15.564 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:56:15.581 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:56:15.582 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:56:15.584 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:56:15.611 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:56:15.613 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:56:15.662 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:56:15.664 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryoVAfiHazhUMaSM3P 359 -2024-06-24 11:56:15.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:15.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:15.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.666 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.666 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:15.668 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1388.2136ms -2024-06-24 11:56:15.668 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.668 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.668 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=ceGQAaQYMKPGV7m7Hmo4AQ - 200 null null 6661.3051ms -2024-06-24 11:56:15.671 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.672 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 7.3131ms -2024-06-24 11:56:15.681 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:56:15.688 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:56:15.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 7.3262ms -2024-06-24 11:56:15.689 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:56:15.691 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:56:15.691 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.1935ms -2024-06-24 11:56:15.691 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:56:15.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:56:15.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:56:15.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:56:15.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:56:15.692 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:56:15.692 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.6968ms -2024-06-24 11:56:15.693 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:56:15.693 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.4057ms -2024-06-24 11:56:15.693 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:56:15.693 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:56:15.693 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:56:15.693 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.3679ms -2024-06-24 11:56:15.693 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:56:15.693 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:56:15.693 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:56:15.693 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 1.3293ms -2024-06-24 11:56:15.693 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:56:15.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:56:15.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.6309ms -2024-06-24 11:56:15.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:56:15.694 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:56:15.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:56:15.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.6583ms -2024-06-24 11:56:15.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:56:15.694 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:56:15.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.8979ms -2024-06-24 11:56:15.694 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:56:15.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.9551ms -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:56:15.696 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:56:15.696 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.5943ms -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:56:15.696 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:56:15.696 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 2.7333ms -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:56:15.697 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:56:15.697 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 3.0285ms -2024-06-24 11:56:15.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:56:15.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:56:15.697 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:56:15.697 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 3.2022ms -2024-06-24 11:56:15.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:56:15.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:56:15.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:56:15.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:56:15.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:56:15.699 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:56:15.700 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:56:15.700 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 5.9249ms -2024-06-24 11:56:15.702 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:56:15.702 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 6.4264ms -2024-06-24 11:56:15.702 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:56:15.702 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 7.0673ms -2024-06-24 11:56:15.703 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:56:15.703 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 7.8943ms -2024-06-24 11:56:15.703 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:56:15.703 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 7.9014ms -2024-06-24 11:56:15.703 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:56:15.703 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 7.3279ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 7.7475ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 6.58ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 8.709ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 6.2402ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 9.1331ms -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 6.5766ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 6.9621ms -2024-06-24 11:56:15.705 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 7.482ms -2024-06-24 11:56:15.705 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:56:15.705 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 6.5173ms -2024-06-24 11:56:15.707 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:56:15.707 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 796 text/css 12.2791ms -2024-06-24 11:56:15.707 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:56:15.707 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:56:15.707 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:56:15.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 10.1547ms -2024-06-24 11:56:15.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 11.1514ms -2024-06-24 11:56:15.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 10.5961ms -2024-06-24 11:56:15.708 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:56:15.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 11.7422ms -2024-06-24 11:56:15.708 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:56:15.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 11.8094ms -2024-06-24 11:56:15.710 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:56:15.710 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 14.097ms -2024-06-24 11:56:15.723 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:56:15.725 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:56:15.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.66ms -2024-06-24 11:56:15.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:56:15.729 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:56:15.729 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 1.7828ms -2024-06-24 11:56:15.737 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:56:15.742 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:56:15.742 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 5.025ms -2024-06-24 11:56:15.772 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:56:15.773 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:56:15.773 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.9249ms -2024-06-24 11:56:15.833 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:56:15.835 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:56:15.835 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.836 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:56:15.836 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 3.1007ms -2024-06-24 11:56:15.836 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.836 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:15.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.839 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.839 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 3.9251ms -2024-06-24 11:56:15.846 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:56:15.846 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:15.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:15.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.847 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.847 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:15.848 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.848 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.848 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 2.7425ms -2024-06-24 11:56:15.851 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=Zl-2Wobm_pevEkglPo2KOA - null null -2024-06-24 11:56:15.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.852 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.852 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:15.853 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.931 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:56:15.933 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:56:15.934 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:56:15.936 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:56:15.936 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:56:15.938 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:56:15.946 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:56:15.950 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:56:16.064 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:56:16.064 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:56:16.064 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.6929ms -2024-06-24 11:56:16.066 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:56:16.067 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:56:16.067 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.9135ms -2024-06-24 11:56:16.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:56:16.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:56:16.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:56:16.071 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:56:16.071 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 1.1797ms -2024-06-24 11:56:16.071 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:56:16.071 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.7647ms -2024-06-24 11:56:16.071 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:56:16.071 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 1.5712ms -2024-06-24 11:56:20.518 +03:00 [INF] Application is shutting down... -2024-06-24 11:56:20.519 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:20.519 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=Zl-2Wobm_pevEkglPo2KOA - 200 null null 4667.9504ms -2024-06-24 11:56:20.519 +03:00 [INF] Connection id "0HN4K5DULD5B9", Request id "0HN4K5DULD5B9:0000005F": the application completed without reading the entire request body. -2024-06-24 11:56:20.523 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:59:26.834 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:59:26.835 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:59:26.893 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:59:26.910 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:59:27.054 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:59:27.054 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:59:27.093 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:59:27.093 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:59:27.093 +03:00 [INF] Hosting environment: Development -2024-06-24 11:59:27.093 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:59:39.399 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:59:40.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:40.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:40.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:40.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:40.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:40.789 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:40.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:40.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:40.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:40.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:40.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:40.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:40.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:40.793 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:40.891 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:59:40.973 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:40.974 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:40.975 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:40.993 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:40.994 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:40.994 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:41.024 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.026 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.075 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:59:41.081 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1682.2522ms -2024-06-24 11:59:41.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:59:41.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:59:41.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:59:41.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:59:41.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:59:41.117 +03:00 [INF] The file /images/getting-started/img-support.png was not modified -2024-06-24 11:59:41.117 +03:00 [INF] The file /images/getting-started/img-blog.png was not modified -2024-06-24 11:59:41.117 +03:00 [INF] The file /images/getting-started/bg-01.png was not modified -2024-06-24 11:59:41.117 +03:00 [INF] The file /images/getting-started/img-community.png was not modified -2024-06-24 11:59:41.117 +03:00 [INF] The file /images/getting-started/book.png was not modified -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 304 null image/png 4.6263ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 304 null image/png 4.7396ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 304 null image/png 4.7429ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 304 null image/png 4.1547ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 304 null image/png 4.0291ms -2024-06-24 11:59:41.118 +03:00 [INF] The file /images/getting-started/youtube.svg was not modified -2024-06-24 11:59:41.118 +03:00 [INF] The file /images/getting-started/x-white.svg was not modified -2024-06-24 11:59:41.118 +03:00 [INF] The file /images/getting-started/instagram.svg was not modified -2024-06-24 11:59:41.118 +03:00 [INF] The file /images/getting-started/discord.svg was not modified -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 304 null image/svg+xml 3.4221ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 304 null image/svg+xml 3.2611ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 304 null image/svg+xml 3.7577ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 304 null image/svg+xml 3.9566ms -2024-06-24 11:59:41.118 +03:00 [INF] The file /images/getting-started/stack-overflow.svg was not modified -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 304 null image/svg+xml 3.7112ms -2024-06-24 11:59:41.124 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:59:41.124 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 610 text/css 11.2277ms -2024-06-24 11:59:41.161 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:59:41.162 +03:00 [INF] The file /images/logo/leptonx/logo-light.png was not modified -2024-06-24 11:59:41.162 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 304 null image/png 0.6874ms -2024-06-24 11:59:41.224 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.226 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.227 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.229 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 5.2209ms -2024-06-24 11:59:41.253 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.257 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.257 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.258 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.260 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.260 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 6.4047ms -2024-06-24 11:59:41.261 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=Ak3Utiec9zDpxMINIEv43A - null null -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.262 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.262 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.263 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:41.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:41.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:41.324 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:41.325 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:41.325 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:41.327 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.327 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.776 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.777 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.777 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.779 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:59:41.782 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:41.782 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:41.783 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:41.784 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:41.785 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:41.785 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:41.787 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.788 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.790 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:59:41.790 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 14.2624ms -2024-06-24 11:59:41.793 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryKxByyJnGAkXBBCPh 359 -2024-06-24 11:59:41.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.794 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.794 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.796 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.799 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.800 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 6.57ms -2024-06-24 11:59:41.808 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:59:41.812 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:59:41.812 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 3.6422ms -2024-06-24 11:59:41.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:59:41.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:59:41.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:59:41.814 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:59:41.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.6906ms -2024-06-24 11:59:41.815 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:59:41.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.2986ms -2024-06-24 11:59:41.815 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:59:41.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.5821ms -2024-06-24 11:59:41.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:59:41.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:59:41.816 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:59:41.816 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:59:41.816 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:59:41.816 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:59:41.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.4489ms -2024-06-24 11:59:41.816 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:59:41.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.6336ms -2024-06-24 11:59:41.816 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:59:41.816 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:59:41.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.043ms -2024-06-24 11:59:41.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.6329ms -2024-06-24 11:59:41.817 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:59:41.817 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.2211ms -2024-06-24 11:59:41.817 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:59:41.817 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:59:41.818 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.8938ms -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:59:41.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.75ms -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:59:41.819 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:59:41.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 610 text/css 0.4107ms -2024-06-24 11:59:41.819 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:59:41.819 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:59:41.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.5001ms -2024-06-24 11:59:41.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.9673ms -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:59:41.819 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:59:41.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 345 text/css 0.6158ms -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.2837ms -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.3601ms -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.7296ms -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 1.387ms -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 1.5203ms -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.5561ms -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:59:41.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:59:41.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:59:41.821 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:59:41.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 0.5022ms -2024-06-24 11:59:41.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:59:41.821 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:59:41.821 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:59:41.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.6525ms -2024-06-24 11:59:41.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 0.452ms -2024-06-24 11:59:41.821 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:59:41.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 0.647ms -2024-06-24 11:59:41.821 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:59:41.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 0.6851ms -2024-06-24 11:59:41.823 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:59:41.823 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:59:41.823 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:59:41.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 2.4555ms -2024-06-24 11:59:41.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 3.3345ms -2024-06-24 11:59:41.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 3.4484ms -2024-06-24 11:59:41.823 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:59:41.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 4.1804ms -2024-06-24 11:59:41.824 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:59:41.824 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 4.3211ms -2024-06-24 11:59:41.825 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:59:41.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 5.5259ms -2024-06-24 11:59:41.826 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:59:41.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 5.2894ms -2024-06-24 11:59:41.826 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:59:41.826 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:59:41.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 6.3013ms -2024-06-24 11:59:41.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 8.0354ms -2024-06-24 11:59:41.827 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:59:41.827 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 7.3404ms -2024-06-24 11:59:41.847 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:59:41.848 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:59:41.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.9408ms -2024-06-24 11:59:41.850 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:59:41.850 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:59:41.851 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:59:41.851 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 1.3794ms -2024-06-24 11:59:41.851 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:59:41.851 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.5863ms -2024-06-24 11:59:41.880 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:59:41.885 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:59:41.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 5.4255ms -2024-06-24 11:59:41.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:59:41.971 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:59:41.971 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 5.367ms -2024-06-24 11:59:41.971 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:59:41.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.973 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.973 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.975 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.975 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.975 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 3.7966ms -2024-06-24 11:59:41.993 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.994 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.994 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.996 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.996 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.996 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 3.0294ms -2024-06-24 11:59:42.001 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=iHqkFn0TSq4WpPXH23zedw - null null -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:42.002 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:42.002 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:42.003 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:42.016 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:42.017 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:42.017 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:42.018 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:42.019 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:42.020 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:42.022 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:42.023 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:42.034 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:59:42.035 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:59:42.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 1.2606ms -2024-06-24 11:59:42.036 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:59:42.040 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:59:42.040 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 3.6265ms -2024-06-24 11:59:42.054 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:59:42.055 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:59:42.056 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:59:42.056 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.9563ms -2024-06-24 11:59:42.056 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:59:42.056 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 2.0328ms -2024-06-24 11:59:42.169 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:59:42.170 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:59:42.170 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.7908ms -2024-06-24 11:59:46.239 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryvNTeu5MoxHGrGZIo 359 -2024-06-24 11:59:46.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:46.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:46.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:46.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:46.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:46.240 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:46.240 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:46.241 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:46.245 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:46.245 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 6.6594ms -2024-06-24 11:59:46.260 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:46.260 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=iHqkFn0TSq4WpPXH23zedw - 200 null null 4259.1975ms -2024-06-24 11:59:50.181 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:59:50.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:50.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:50.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.183 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.183 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:50.184 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:59:50.186 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:50.186 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:50.186 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:50.188 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:50.188 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:50.188 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:50.190 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:50.190 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:50.191 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:59:50.191 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 9.9467ms -2024-06-24 11:59:50.196 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryMAzgAes8JZeqWzko 359 -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.196 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.197 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:50.197 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.197 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=Ak3Utiec9zDpxMINIEv43A - 200 null null 8935.3903ms -2024-06-24 11:59:50.197 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.198 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.198 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 2.6702ms -2024-06-24 11:59:50.208 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:59:50.209 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:59:50.209 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 1.6416ms -2024-06-24 11:59:50.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:59:50.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:59:50.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:59:50.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:59:50.214 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:59:50.214 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.3831ms -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 0.8232ms -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 0.5427ms -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.2522ms -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.2652ms -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 0.4992ms -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.3123ms -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.2332ms -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.2779ms -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.6843ms -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.4877ms -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 610 text/css 0.2231ms -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.2694ms -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net8.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 345 text/css 0.2168ms -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:59:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.0154ms -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:59:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.3411ms -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:59:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.8296ms -2024-06-24 11:59:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.5344ms -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:59:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 1.1898ms -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.395ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:59:50.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 1.4202ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.1644ms -2024-06-24 11:59:50.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 0.2998ms -2024-06-24 11:59:50.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 1.0068ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 0.2908ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 0.2204ms -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 0.521ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 1.0882ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 0.9967ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 2.065ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 0.5971ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:59:50.219 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 1.6585ms -2024-06-24 11:59:50.219 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:59:50.219 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 2.4713ms -2024-06-24 11:59:50.220 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:59:50.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 4.064ms -2024-06-24 11:59:50.220 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:59:50.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 3.5738ms -2024-06-24 11:59:50.275 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:59:50.276 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:59:50.276 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.5321ms -2024-06-24 11:59:50.278 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:59:50.278 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:59:50.279 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:59:50.279 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.9512ms -2024-06-24 11:59:50.280 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:59:50.280 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.848ms -2024-06-24 11:59:50.293 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:59:50.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:50.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.294 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.294 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:50.295 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.295 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.295 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 2.0347ms -2024-06-24 11:59:50.297 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.297 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.297 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:50.298 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.298 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.298 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.3783ms -2024-06-24 11:59:50.300 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=p6xfqBMG6MixyTx1n9SFCA - null null -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.300 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.300 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:50.301 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.307 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:50.307 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:50.307 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:50.308 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:50.308 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:50.308 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:50.310 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:50.310 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:50.316 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:59:50.316 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:59:50.316 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.5688ms -2024-06-24 11:59:50.317 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:59:50.318 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:59:50.318 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.3235ms -2024-06-24 11:59:50.320 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:59:50.320 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:59:50.320 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:59:50.320 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.4448ms -2024-06-24 11:59:50.320 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:59:50.320 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.7989ms -2024-06-24 11:59:50.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:59:50.358 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:59:50.358 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.5913ms -2024-06-24 12:03:16.560 +03:00 [INF] Application is shutting down... -2024-06-24 12:03:16.561 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 12:03:16.561 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=p6xfqBMG6MixyTx1n9SFCA - 200 null null 206261.3674ms -2024-06-24 12:03:16.561 +03:00 [INF] Connection id "0HN4K5FTEDDQ7", Request id "0HN4K5FTEDDQ7:000000DF": the application completed without reading the entire request body. -2024-06-24 12:03:16.565 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20240312033651_Initial.Designer.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20241002093338_Initial.Designer.cs similarity index 96% rename from templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20240312033651_Initial.Designer.cs rename to templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20241002093338_Initial.Designer.cs index b97eb71e95..2832a92de9 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20240312033651_Initial.Designer.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20241002093338_Initial.Designer.cs @@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations { [DbContext(typeof(MyProjectNameDbContext))] - [Migration("20240312033651_Initial")] + [Migration("20241002093338_Initial")] partial class Initial { /// @@ -22,7 +22,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -657,6 +657,13 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -666,9 +673,14 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1253,41 +1265,11 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1412,22 +1394,6 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1436,20 +1402,6 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20240312033651_Initial.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20241002093338_Initial.cs similarity index 97% rename from templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20240312033651_Initial.cs rename to templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20241002093338_Initial.cs index 39c3b550b9..768e49055a 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20240312033651_Initial.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20241002093338_Initial.cs @@ -266,9 +266,11 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations TenantId = table.Column(type: "uniqueidentifier", nullable: true), UserId = table.Column(type: "uniqueidentifier", nullable: false), ClientId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - IpAddresses = table.Column(type: "nvarchar(256)", maxLength: 256, nullable: true), + IpAddresses = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), SignedIn = table.Column(type: "datetime2", nullable: false), - LastAccessed = table.Column(type: "datetime2", nullable: true) + LastAccessed = table.Column(type: "datetime2", nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -698,14 +700,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -757,14 +752,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/MyProjectNameDbContextModelSnapshot.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/MyProjectNameDbContextModelSnapshot.cs index 0a52057acc..151d486442 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/MyProjectNameDbContextModelSnapshot.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/MyProjectNameDbContextModelSnapshot.cs @@ -19,7 +19,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -654,6 +654,13 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -663,9 +670,14 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1250,41 +1262,11 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1409,22 +1391,6 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1433,20 +1399,6 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj index 3ac81328d1..14cdce685c 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable true @@ -83,11 +83,11 @@ - + - + runtime; build; native; contentfiles; analyzers compile; contentFiles; build; buildMultitargeting; buildTransitive; analyzers; native diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameModule.cs index 783e82a050..8923f6189b 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameModule.cs @@ -384,7 +384,7 @@ public class MyProjectNameModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Client/MyCompanyName.MyProjectName.Blazor.WebAssembly.Client.csproj b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Client/MyCompanyName.MyProjectName.Blazor.WebAssembly.Client.csproj index 4c7ca88b14..7d909e43c7 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Client/MyCompanyName.MyProjectName.Blazor.WebAssembly.Client.csproj +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Client/MyCompanyName.MyProjectName.Blazor.WebAssembly.Client.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable MyCompanyName.MyProjectName @@ -11,8 +11,8 @@ - - + + diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyCompanyName.MyProjectName.Blazor.WebAssembly.Server.Mongo.csproj b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyCompanyName.MyProjectName.Blazor.WebAssembly.Server.Mongo.csproj index 730c7499bf..6cb3217f74 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyCompanyName.MyProjectName.Blazor.WebAssembly.Server.Mongo.csproj +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyCompanyName.MyProjectName.Blazor.WebAssembly.Server.Mongo.csproj @@ -1,14 +1,14 @@ - net8.0 + net9.0 enable enable MyCompanyName.MyProjectName - + @@ -78,7 +78,7 @@ - + diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyProjectNameHostModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyProjectNameHostModule.cs index e88bc89e45..85c6651698 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyProjectNameHostModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyProjectNameHostModule.cs @@ -311,7 +311,7 @@ public class MyProjectNameHostModule : AbpModule app.UseCorrelationId(); app.UseBlazorFrameworkFiles(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20240312033906_Initial.Designer.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20241002093531_Initial.Designer.cs similarity index 96% rename from templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20240312033906_Initial.Designer.cs rename to templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20241002093531_Initial.Designer.cs index 84ee9411af..736b2e7ea5 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20240312033906_Initial.Designer.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20241002093531_Initial.Designer.cs @@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; namespace MyCompanyName.MyProjectName.Migrations { [DbContext(typeof(MyProjectNameDbContext))] - [Migration("20240312033906_Initial")] + [Migration("20241002093531_Initial")] partial class Initial { /// @@ -22,7 +22,7 @@ namespace MyCompanyName.MyProjectName.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -657,6 +657,13 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -666,9 +673,14 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1253,41 +1265,11 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1412,22 +1394,6 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1436,20 +1402,6 @@ namespace MyCompanyName.MyProjectName.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20240312033906_Initial.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20241002093531_Initial.cs similarity index 97% rename from templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20240312033906_Initial.cs rename to templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20241002093531_Initial.cs index a3dbf4a768..5a9324ad67 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20240312033906_Initial.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20241002093531_Initial.cs @@ -266,9 +266,11 @@ namespace MyCompanyName.MyProjectName.Migrations TenantId = table.Column(type: "uniqueidentifier", nullable: true), UserId = table.Column(type: "uniqueidentifier", nullable: false), ClientId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - IpAddresses = table.Column(type: "nvarchar(256)", maxLength: 256, nullable: true), + IpAddresses = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), SignedIn = table.Column(type: "datetime2", nullable: false), - LastAccessed = table.Column(type: "datetime2", nullable: true) + LastAccessed = table.Column(type: "datetime2", nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -698,14 +700,7 @@ namespace MyCompanyName.MyProjectName.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -757,14 +752,7 @@ namespace MyCompanyName.MyProjectName.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/MyProjectNameDbContextModelSnapshot.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/MyProjectNameDbContextModelSnapshot.cs index d74eefbde1..2b64719f08 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/MyProjectNameDbContextModelSnapshot.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/MyProjectNameDbContextModelSnapshot.cs @@ -19,7 +19,7 @@ namespace MyCompanyName.MyProjectName.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -654,6 +654,13 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -663,9 +670,14 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1250,41 +1262,11 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1409,22 +1391,6 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1433,20 +1399,6 @@ namespace MyCompanyName.MyProjectName.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyCompanyName.MyProjectName.Blazor.WebAssembly.Server.csproj b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyCompanyName.MyProjectName.Blazor.WebAssembly.Server.csproj index d9b549db24..3d3d16a140 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyCompanyName.MyProjectName.Blazor.WebAssembly.Server.csproj +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyCompanyName.MyProjectName.Blazor.WebAssembly.Server.csproj @@ -1,14 +1,14 @@ - net8.0 + net9.0 enable enable MyCompanyName.MyProjectName - + @@ -79,11 +79,11 @@ - + - + runtime; build; native; contentfiles; analyzers compile; contentFiles; build; buildMultitargeting; buildTransitive; analyzers; native diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyProjectNameHostModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyProjectNameHostModule.cs index 7767fec5cb..0ff851d391 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyProjectNameHostModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyProjectNameHostModule.cs @@ -330,7 +330,7 @@ public class MyProjectNameHostModule : AbpModule app.UseCorrelationId(); app.UseBlazorFrameworkFiles(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Shared/MyCompanyName.MyProjectName.Blazor.WebAssembly.Shared.csproj b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Shared/MyCompanyName.MyProjectName.Blazor.WebAssembly.Shared.csproj index 0972a51430..8e96717647 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Shared/MyCompanyName.MyProjectName.Blazor.WebAssembly.Shared.csproj +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Shared/MyCompanyName.MyProjectName.Blazor.WebAssembly.Shared.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable MyCompanyName.MyProjectName @@ -29,7 +29,7 @@ - + diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyCompanyName.MyProjectName.Host.Mongo.csproj b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyCompanyName.MyProjectName.Host.Mongo.csproj index 73bd370ea1..2a1db8dc10 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyCompanyName.MyProjectName.Host.Mongo.csproj +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyCompanyName.MyProjectName.Host.Mongo.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable true @@ -74,7 +74,7 @@ - + diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyProjectNameModule.cs index 388b34fea6..0a1942912c 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyProjectNameModule.cs @@ -350,7 +350,7 @@ public class MyProjectNameModule : AbpModule } app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20240321011533_Initial.Designer.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20241002093248_Initial.Designer.cs similarity index 96% rename from templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20240321011533_Initial.Designer.cs rename to templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20241002093248_Initial.Designer.cs index 309ac9f973..dc556121be 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20240321011533_Initial.Designer.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20241002093248_Initial.Designer.cs @@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; namespace MyCompanyName.MyProjectName.Host.Migrations { [DbContext(typeof(MyProjectNameDbContext))] - [Migration("20240321011533_Initial")] + [Migration("20241002093248_Initial")] partial class Initial { /// @@ -22,7 +22,7 @@ namespace MyCompanyName.MyProjectName.Host.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -657,6 +657,13 @@ namespace MyCompanyName.MyProjectName.Host.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -666,9 +673,14 @@ namespace MyCompanyName.MyProjectName.Host.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1253,41 +1265,11 @@ namespace MyCompanyName.MyProjectName.Host.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1412,22 +1394,6 @@ namespace MyCompanyName.MyProjectName.Host.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1436,20 +1402,6 @@ namespace MyCompanyName.MyProjectName.Host.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20240321011533_Initial.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20241002093248_Initial.cs similarity index 97% rename from templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20240321011533_Initial.cs rename to templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20241002093248_Initial.cs index e36cf69df7..e26b1c65cf 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20240321011533_Initial.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20241002093248_Initial.cs @@ -266,9 +266,11 @@ namespace MyCompanyName.MyProjectName.Host.Migrations TenantId = table.Column(type: "uniqueidentifier", nullable: true), UserId = table.Column(type: "uniqueidentifier", nullable: false), ClientId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - IpAddresses = table.Column(type: "nvarchar(256)", maxLength: 256, nullable: true), + IpAddresses = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), SignedIn = table.Column(type: "datetime2", nullable: false), - LastAccessed = table.Column(type: "datetime2", nullable: true) + LastAccessed = table.Column(type: "datetime2", nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -698,14 +700,7 @@ namespace MyCompanyName.MyProjectName.Host.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -757,14 +752,7 @@ namespace MyCompanyName.MyProjectName.Host.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/MyProjectNameDbContextModelSnapshot.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/MyProjectNameDbContextModelSnapshot.cs index f2ef0d1071..c85b4c73fa 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/MyProjectNameDbContextModelSnapshot.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/MyProjectNameDbContextModelSnapshot.cs @@ -19,7 +19,7 @@ namespace MyCompanyName.MyProjectName.Host.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -654,6 +654,13 @@ namespace MyCompanyName.MyProjectName.Host.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -663,9 +670,14 @@ namespace MyCompanyName.MyProjectName.Host.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1250,41 +1262,11 @@ namespace MyCompanyName.MyProjectName.Host.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1409,22 +1391,6 @@ namespace MyCompanyName.MyProjectName.Host.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1433,20 +1399,6 @@ namespace MyCompanyName.MyProjectName.Host.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyCompanyName.MyProjectName.Host.csproj b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyCompanyName.MyProjectName.Host.csproj index 0f0847f4ce..f142378135 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyCompanyName.MyProjectName.Host.csproj +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyCompanyName.MyProjectName.Host.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable true @@ -75,11 +75,11 @@ - + - + runtime; build; native; contentfiles; analyzers compile; contentFiles; build; buildMultitargeting; buildTransitive; analyzers; native diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyProjectNameModule.cs index 36cfc45062..a4a4410663 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyProjectNameModule.cs @@ -368,7 +368,7 @@ public class MyProjectNameModule : AbpModule } app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyCompanyName.MyProjectName.Mvc.Mongo.csproj b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyCompanyName.MyProjectName.Mvc.Mongo.csproj index 384df094b4..4e8f3853cf 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyCompanyName.MyProjectName.Mvc.Mongo.csproj +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyCompanyName.MyProjectName.Mvc.Mongo.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable true @@ -77,7 +77,7 @@ - + diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyProjectNameModule.cs index 5484aff3b5..543c60f13f 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyProjectNameModule.cs @@ -332,7 +332,7 @@ public class MyProjectNameModule : AbpModule } app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20240312033558_Initial.Designer.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20241002093310_Initial.Designer.cs similarity index 96% rename from templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20240312033558_Initial.Designer.cs rename to templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20241002093310_Initial.Designer.cs index fc604df03b..b8f6f48f4b 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20240312033558_Initial.Designer.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20241002093310_Initial.Designer.cs @@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; namespace MyCompanyName.MyProjectName.Mvc.Migrations { [DbContext(typeof(MyProjectNameDbContext))] - [Migration("20240312033558_Initial")] + [Migration("20241002093310_Initial")] partial class Initial { /// @@ -22,7 +22,7 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -657,6 +657,13 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -666,9 +673,14 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1253,41 +1265,11 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1412,22 +1394,6 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1436,20 +1402,6 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20240312033558_Initial.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20241002093310_Initial.cs similarity index 97% rename from templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20240312033558_Initial.cs rename to templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20241002093310_Initial.cs index 88e57c1ebb..be5279df67 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20240312033558_Initial.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20241002093310_Initial.cs @@ -266,9 +266,11 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations TenantId = table.Column(type: "uniqueidentifier", nullable: true), UserId = table.Column(type: "uniqueidentifier", nullable: false), ClientId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - IpAddresses = table.Column(type: "nvarchar(256)", maxLength: 256, nullable: true), + IpAddresses = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), SignedIn = table.Column(type: "datetime2", nullable: false), - LastAccessed = table.Column(type: "datetime2", nullable: true) + LastAccessed = table.Column(type: "datetime2", nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -698,14 +700,7 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -757,14 +752,7 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/MyProjectNameDbContextModelSnapshot.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/MyProjectNameDbContextModelSnapshot.cs index 17a23b24a7..bbda640b14 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/MyProjectNameDbContextModelSnapshot.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/MyProjectNameDbContextModelSnapshot.cs @@ -19,7 +19,7 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -654,6 +654,13 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -663,9 +670,14 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1250,41 +1262,11 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1409,22 +1391,6 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1433,20 +1399,6 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyCompanyName.MyProjectName.Mvc.csproj b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyCompanyName.MyProjectName.Mvc.csproj index 948d04d77a..9c92afe2cc 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyCompanyName.MyProjectName.Mvc.csproj +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyCompanyName.MyProjectName.Mvc.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 enable enable true @@ -78,11 +78,11 @@ - + - + runtime; build; native; contentfiles; analyzers compile; contentFiles; build; buildMultitargeting; buildTransitive; analyzers; native diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyProjectNameModule.cs index 10313aaa85..e8c99fc852 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyProjectNameModule.cs @@ -349,7 +349,7 @@ public class MyProjectNameModule : AbpModule } app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Application.Contracts/MyCompanyName.MyProjectName.Application.Contracts.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Application.Contracts/MyCompanyName.MyProjectName.Application.Contracts.csproj index 21d363eeed..ea45843b55 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Application.Contracts/MyCompanyName.MyProjectName.Application.Contracts.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Application.Contracts/MyCompanyName.MyProjectName.Application.Contracts.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Application/MyCompanyName.MyProjectName.Application.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Application/MyCompanyName.MyProjectName.Application.csproj index e8a13f5fb4..da75a2434a 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Application/MyCompanyName.MyProjectName.Application.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Application/MyCompanyName.MyProjectName.Application.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyCompanyName.MyProjectName.AuthServer.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyCompanyName.MyProjectName.AuthServer.csproj index 1338fd2305..575ab35f8e 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyCompanyName.MyProjectName.AuthServer.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyCompanyName.MyProjectName.AuthServer.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; @@ -41,7 +41,7 @@ - + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs index e8c1dd4646..19363e777b 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs @@ -206,7 +206,7 @@ public class MyProjectNameAuthServerModule : AbpModule } app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Client/MyCompanyName.MyProjectName.Blazor.Client.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Client/MyCompanyName.MyProjectName.Blazor.Client.csproj index aa508e1f5f..aa162240c1 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Client/MyCompanyName.MyProjectName.Blazor.Client.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Client/MyCompanyName.MyProjectName.Blazor.Client.csproj @@ -1,9 +1,9 @@ - + - net8.0 + net9.0 enable true @@ -14,8 +14,8 @@ - - + + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyCompanyName.MyProjectName.Blazor.Server.Tiered.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyCompanyName.MyProjectName.Blazor.Server.Tiered.csproj index 67ce2fa924..7fc3fe773a 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyCompanyName.MyProjectName.Blazor.Server.Tiered.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyCompanyName.MyProjectName.Blazor.Server.Tiered.csproj @@ -1,9 +1,9 @@ - + - net8.0 + net9.0 enable true true @@ -18,7 +18,7 @@ - + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyProjectNameBlazorModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyProjectNameBlazorModule.cs index dad869db4d..3414c945a3 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyProjectNameBlazorModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyProjectNameBlazorModule.cs @@ -361,7 +361,7 @@ public class MyProjectNameBlazorModule : AbpModule } app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj index 07d23ade47..17f6abd8b3 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj @@ -1,9 +1,9 @@ - + - net8.0 + net9.0 enable true true @@ -14,7 +14,7 @@ - + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameBlazorModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameBlazorModule.cs index e1e9a212d5..6fb111d98d 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameBlazorModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameBlazorModule.cs @@ -271,7 +271,7 @@ public class MyProjectNameBlazorModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Client/MyCompanyName.MyProjectName.Blazor.WebApp.Client.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Client/MyCompanyName.MyProjectName.Blazor.WebApp.Client.csproj index 524bf5e299..6817056575 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Client/MyCompanyName.MyProjectName.Blazor.WebApp.Client.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Client/MyCompanyName.MyProjectName.Blazor.WebApp.Client.csproj @@ -1,9 +1,9 @@ - + - net8.0 + net9.0 enable true MyCompanyName.MyProjectName.Blazor.WebApp.Client @@ -15,8 +15,8 @@ - - + + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client.csproj index 97c5e3919e..027674e0eb 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client.csproj @@ -1,9 +1,9 @@ - + - net8.0 + net9.0 enable true MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.Client @@ -15,8 +15,8 @@ - - + + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.csproj index 2217b369d4..5870e449f4 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered.csproj @@ -1,9 +1,9 @@ - + - net8.0 + net9.0 enable true true @@ -15,12 +15,12 @@ - + - + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyProjectNameBlazorModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyProjectNameBlazorModule.cs index b9cee43363..4c85dd798a 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyProjectNameBlazorModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyProjectNameBlazorModule.cs @@ -364,7 +364,7 @@ public class MyProjectNameBlazorModule : AbpModule } app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyCompanyName.MyProjectName.Blazor.WebApp.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyCompanyName.MyProjectName.Blazor.WebApp.csproj index bc76e1a579..f33ae47a95 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyCompanyName.MyProjectName.Blazor.WebApp.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyCompanyName.MyProjectName.Blazor.WebApp.csproj @@ -1,9 +1,9 @@ - + - net8.0 + net9.0 enable true true @@ -15,7 +15,7 @@ - + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyProjectNameBlazorModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyProjectNameBlazorModule.cs index 11e0e75f6c..d1ce178d29 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyProjectNameBlazorModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/MyProjectNameBlazorModule.cs @@ -274,7 +274,7 @@ public class MyProjectNameBlazorModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/MyCompanyName.MyProjectName.Blazor.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/MyCompanyName.MyProjectName.Blazor.csproj index 77bc0516c5..51d53b8aa8 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/MyCompanyName.MyProjectName.Blazor.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/MyCompanyName.MyProjectName.Blazor.csproj @@ -3,12 +3,12 @@ - net8.0 + net9.0 enable - + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/Program.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/Program.cs index 9fae4422f1..b7882b254a 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/Program.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/Program.cs @@ -33,7 +33,7 @@ else app.UseHttpsRedirection(); -app.UseStaticFiles(); +app.MapStaticAssets(); app.UseAntiforgery(); app.MapRazorComponents() diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.DbMigrator/MyCompanyName.MyProjectName.DbMigrator.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.DbMigrator/MyCompanyName.MyProjectName.DbMigrator.csproj index b33239d30c..f67e885562 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.DbMigrator/MyCompanyName.MyProjectName.DbMigrator.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.DbMigrator/MyCompanyName.MyProjectName.DbMigrator.csproj @@ -1,10 +1,10 @@ - + Exe - net8.0 + net9.0 enable @@ -22,7 +22,7 @@ - + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Domain.Shared/MyCompanyName.MyProjectName.Domain.Shared.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Domain.Shared/MyCompanyName.MyProjectName.Domain.Shared.csproj index 9c9ad16b91..e1e5721334 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Domain.Shared/MyCompanyName.MyProjectName.Domain.Shared.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Domain.Shared/MyCompanyName.MyProjectName.Domain.Shared.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName true @@ -26,7 +26,7 @@ - + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Domain/MyCompanyName.MyProjectName.Domain.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Domain/MyCompanyName.MyProjectName.Domain.csproj index 4a1ece449b..65c9cf59c3 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Domain/MyCompanyName.MyProjectName.Domain.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Domain/MyCompanyName.MyProjectName.Domain.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20240322114004_Initial.Designer.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20241002093350_Initial.Designer.cs similarity index 96% rename from templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20240322114004_Initial.Designer.cs rename to templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20241002093350_Initial.Designer.cs index bd99dc092f..879497d553 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20240322114004_Initial.Designer.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20241002093350_Initial.Designer.cs @@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; namespace MyCompanyName.MyProjectName.Migrations { [DbContext(typeof(MyProjectNameDbContext))] - [Migration("20240322114004_Initial")] + [Migration("20241002093350_Initial")] partial class Initial { /// @@ -22,7 +22,7 @@ namespace MyCompanyName.MyProjectName.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -712,6 +712,13 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -721,9 +728,14 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1305,41 +1317,11 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1464,22 +1446,6 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1488,20 +1454,6 @@ namespace MyCompanyName.MyProjectName.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20240322114004_Initial.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20241002093350_Initial.cs similarity index 97% rename from templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20240322114004_Initial.cs rename to templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20241002093350_Initial.cs index 3c914f3225..e4c6ea09ef 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20240322114004_Initial.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20241002093350_Initial.cs @@ -287,9 +287,11 @@ namespace MyCompanyName.MyProjectName.Migrations TenantId = table.Column(type: "uniqueidentifier", nullable: true), UserId = table.Column(type: "uniqueidentifier", nullable: false), ClientId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - IpAddresses = table.Column(type: "nvarchar(256)", maxLength: 256, nullable: true), + IpAddresses = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), SignedIn = table.Column(type: "datetime2", nullable: false), - LastAccessed = table.Column(type: "datetime2", nullable: true) + LastAccessed = table.Column(type: "datetime2", nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -719,14 +721,7 @@ namespace MyCompanyName.MyProjectName.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -778,14 +773,7 @@ namespace MyCompanyName.MyProjectName.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/MyProjectNameDbContextModelSnapshot.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/MyProjectNameDbContextModelSnapshot.cs index 6aca735728..31e0e736f1 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/MyProjectNameDbContextModelSnapshot.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/MyProjectNameDbContextModelSnapshot.cs @@ -19,7 +19,7 @@ namespace MyCompanyName.MyProjectName.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -709,6 +709,13 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -718,9 +725,14 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1302,41 +1314,11 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1461,22 +1443,6 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1485,20 +1451,6 @@ namespace MyCompanyName.MyProjectName.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/MyCompanyName.MyProjectName.EntityFrameworkCore.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/MyCompanyName.MyProjectName.EntityFrameworkCore.csproj index 0b94c86bb1..f6f4ce8df7 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/MyCompanyName.MyProjectName.EntityFrameworkCore.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/MyCompanyName.MyProjectName.EntityFrameworkCore.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName @@ -22,7 +22,7 @@ - + all runtime; build; native; contentfiles; analyzers diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Client/MyCompanyName.MyProjectName.HttpApi.Client.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Client/MyCompanyName.MyProjectName.HttpApi.Client.csproj index 5687fbeea1..0c1dca286f 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Client/MyCompanyName.MyProjectName.HttpApi.Client.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Client/MyCompanyName.MyProjectName.HttpApi.Client.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyCompanyName.MyProjectName.HttpApi.Host.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyCompanyName.MyProjectName.HttpApi.Host.csproj index f65ab7f0a5..d49bc6b89f 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyCompanyName.MyProjectName.HttpApi.Host.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyCompanyName.MyProjectName.HttpApi.Host.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName true @@ -13,8 +13,8 @@ - - + + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs index 2c0b3838e0..73033bdda1 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs @@ -188,7 +188,7 @@ public class MyProjectNameHttpApiHostModule : AbpModule app.UseAbpRequestLocalization(); app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyCompanyName.MyProjectName.HttpApi.HostWithIds.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyCompanyName.MyProjectName.HttpApi.HostWithIds.csproj index 7a34a8a7a0..54ee63cb92 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyCompanyName.MyProjectName.HttpApi.HostWithIds.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyCompanyName.MyProjectName.HttpApi.HostWithIds.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName true diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyProjectNameHttpApiHostModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyProjectNameHttpApiHostModule.cs index 9e2863aca4..9d28180208 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyProjectNameHttpApiHostModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyProjectNameHttpApiHostModule.cs @@ -193,7 +193,7 @@ public class MyProjectNameHttpApiHostModule : AbpModule } app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi/MyCompanyName.MyProjectName.HttpApi.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi/MyCompanyName.MyProjectName.HttpApi.csproj index bd754ffc09..3e00a31dc5 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi/MyCompanyName.MyProjectName.HttpApi.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi/MyCompanyName.MyProjectName.HttpApi.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.MongoDB/MyCompanyName.MyProjectName.MongoDB.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.MongoDB/MyCompanyName.MyProjectName.MongoDB.csproj index 62de8f4c46..1afadc5fcb 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.MongoDB/MyCompanyName.MyProjectName.MongoDB.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.MongoDB/MyCompanyName.MyProjectName.MongoDB.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyCompanyName.MyProjectName.Web.Host.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyCompanyName.MyProjectName.Web.Host.csproj index 1a39c32a88..cd0f2130f9 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyCompanyName.MyProjectName.Web.Host.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyCompanyName.MyProjectName.Web.Host.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName.Web $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; @@ -19,7 +19,7 @@ - + diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebModule.cs index 777d3e8886..9c2db7971c 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebModule.cs @@ -313,7 +313,7 @@ public class MyProjectNameWebModule : AbpModule } app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj index 8b9f2572b4..0d07e2095e 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName.Web $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyProjectNameWebModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyProjectNameWebModule.cs index 3d36e378f6..bec50e72eb 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyProjectNameWebModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyProjectNameWebModule.cs @@ -1,3 +1,4 @@ +using System; using System.IO; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Extensions.DependencyInjection; @@ -225,7 +226,7 @@ public class MyProjectNameWebModule : AbpModule } app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Application.Tests/MyCompanyName.MyProjectName.Application.Tests.csproj b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Application.Tests/MyCompanyName.MyProjectName.Application.Tests.csproj index 95fa802675..e0fa9e02d2 100644 --- a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Application.Tests/MyCompanyName.MyProjectName.Application.Tests.csproj +++ b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Application.Tests/MyCompanyName.MyProjectName.Application.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName @@ -14,7 +14,7 @@ - + diff --git a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Domain.Tests/MyCompanyName.MyProjectName.Domain.Tests.csproj b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Domain.Tests/MyCompanyName.MyProjectName.Domain.Tests.csproj index bf2d814e9b..6e58703e70 100644 --- a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Domain.Tests/MyCompanyName.MyProjectName.Domain.Tests.csproj +++ b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Domain.Tests/MyCompanyName.MyProjectName.Domain.Tests.csproj @@ -3,13 +3,13 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName - + diff --git a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests.csproj b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests.csproj index 8f96ce08ce..025c56a9d9 100644 --- a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests.csproj +++ b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName @@ -15,7 +15,7 @@ - + diff --git a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp.csproj b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp.csproj index 5804301f7e..0c6b8e7553 100644 --- a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp.csproj +++ b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 enable @@ -22,8 +22,8 @@ - - + + diff --git a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.MongoDB.Tests/MyCompanyName.MyProjectName.MongoDB.Tests.csproj b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.MongoDB.Tests/MyCompanyName.MyProjectName.MongoDB.Tests.csproj index f0d1a185e2..e0d0ad61cb 100644 --- a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.MongoDB.Tests/MyCompanyName.MyProjectName.MongoDB.Tests.csproj +++ b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.MongoDB.Tests/MyCompanyName.MyProjectName.MongoDB.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName @@ -14,7 +14,7 @@ - + diff --git a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.TestBase/MyCompanyName.MyProjectName.TestBase.csproj b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.TestBase/MyCompanyName.MyProjectName.TestBase.csproj index 3471f07d52..deb2ee12fe 100644 --- a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.TestBase/MyCompanyName.MyProjectName.TestBase.csproj +++ b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.TestBase/MyCompanyName.MyProjectName.TestBase.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName @@ -16,7 +16,7 @@ - + all diff --git a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Web.Tests/MyCompanyName.MyProjectName.Web.Tests.csproj b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Web.Tests/MyCompanyName.MyProjectName.Web.Tests.csproj index 58ecff2be2..8b3cff7e1b 100644 --- a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Web.Tests/MyCompanyName.MyProjectName.Web.Tests.csproj +++ b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Web.Tests/MyCompanyName.MyProjectName.Web.Tests.csproj @@ -3,18 +3,12 @@ - net8.0 + net9.0 enable - Exe - $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; - MyCompanyName.MyProjectName - true - true - true - + diff --git a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Web.Tests/Program.cs b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Web.Tests/Program.cs index f4c388685f..a6e766fff3 100644 --- a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Web.Tests/Program.cs +++ b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.Web.Tests/Program.cs @@ -3,7 +3,9 @@ using MyCompanyName.MyProjectName; using Volo.Abp.AspNetCore.TestBase; var builder = WebApplication.CreateBuilder(); -await builder.RunAbpModuleAsync(); + +builder.Environment.ContentRootPath = GetWebProjectContentRootPathHelper.Get("MyCompanyName.MyProjectName.Web.csproj"); +await builder.RunAbpModuleAsync(applicationName: "MyCompanyName.MyProjectName.Web" ); public partial class Program { diff --git a/templates/console/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj b/templates/console/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj index 2c90dee36c..e690b1217e 100644 --- a/templates/console/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj +++ b/templates/console/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj @@ -1,10 +1,10 @@ - + Exe - net8.0 + net9.0 enable @@ -13,7 +13,7 @@ - + diff --git a/templates/maui/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj b/templates/maui/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj index 04c7d4fa36..aa75748ab7 100644 --- a/templates/maui/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj +++ b/templates/maui/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj @@ -1,12 +1,12 @@ - + - net8.0-android;net8.0-ios;net8.0-maccatalyst - $(TargetFrameworks);net8.0-windows10.0.19041.0 + net9.0-android;net9.0-ios;net9.0-maccatalyst + $(TargetFrameworks);net9.0-windows10.0.19041.0 - + enable Exe MyCompanyName.MyProjectName @@ -25,8 +25,8 @@ 1.0 1 - 14.2 - 14.0 + 15.0 + 15.0 24.0 10.0.17763.0 10.0.17763.0 @@ -35,7 +35,7 @@ - + diff --git a/templates/module/aspnet-core/database/Dockerfile b/templates/module/aspnet-core/database/Dockerfile index 80c49b96e6..464feb4e57 100644 --- a/templates/module/aspnet-core/database/Dockerfile +++ b/templates/module/aspnet-core/database/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build COPY . . WORKDIR /templates/service/host/IdentityServerHost diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Dockerfile b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Dockerfile index b3e3de1473..e977bcde30 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Dockerfile +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Dockerfile @@ -1,9 +1,9 @@ -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build WORKDIR /src COPY . . WORKDIR /src/templates/service/host/MyCompanyName.MyProjectName.AuthServer diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20240321011622_Initial.Designer.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20241002093429_Initial.Designer.cs similarity index 96% rename from templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20240321011622_Initial.Designer.cs rename to templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20241002093429_Initial.Designer.cs index 6e7456f3ba..72a9b78e7c 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20240321011622_Initial.Designer.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20241002093429_Initial.Designer.cs @@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; namespace MyCompanyName.MyProjectName.Migrations { [DbContext(typeof(AuthServerDbContext))] - [Migration("20240321011622_Initial")] + [Migration("20241002093429_Initial")] partial class Initial { /// @@ -22,7 +22,7 @@ namespace MyCompanyName.MyProjectName.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -657,6 +657,13 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -666,9 +673,14 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1253,41 +1265,11 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1412,22 +1394,6 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1436,20 +1402,6 @@ namespace MyCompanyName.MyProjectName.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20240321011622_Initial.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20241002093429_Initial.cs similarity index 97% rename from templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20240321011622_Initial.cs rename to templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20241002093429_Initial.cs index a3dbf4a768..5a9324ad67 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20240321011622_Initial.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20241002093429_Initial.cs @@ -266,9 +266,11 @@ namespace MyCompanyName.MyProjectName.Migrations TenantId = table.Column(type: "uniqueidentifier", nullable: true), UserId = table.Column(type: "uniqueidentifier", nullable: false), ClientId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - IpAddresses = table.Column(type: "nvarchar(256)", maxLength: 256, nullable: true), + IpAddresses = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), SignedIn = table.Column(type: "datetime2", nullable: false), - LastAccessed = table.Column(type: "datetime2", nullable: true) + LastAccessed = table.Column(type: "datetime2", nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -698,14 +700,7 @@ namespace MyCompanyName.MyProjectName.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { @@ -757,14 +752,7 @@ namespace MyCompanyName.MyProjectName.Migrations Subject = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: true), Type = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: true), ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), - ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false), - CreationTime = table.Column(type: "datetime2", nullable: false), - CreatorId = table.Column(type: "uniqueidentifier", nullable: true), - LastModificationTime = table.Column(type: "datetime2", nullable: true), - LastModifierId = table.Column(type: "uniqueidentifier", nullable: true), - IsDeleted = table.Column(type: "bit", nullable: false, defaultValue: false), - DeleterId = table.Column(type: "uniqueidentifier", nullable: true), - DeletionTime = table.Column(type: "datetime2", nullable: true) + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/AuthServerDbContextModelSnapshot.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/AuthServerDbContextModelSnapshot.cs index 4da168ec59..7f784d4a1b 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/AuthServerDbContextModelSnapshot.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/AuthServerDbContextModelSnapshot.cs @@ -19,7 +19,7 @@ namespace MyCompanyName.MyProjectName.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -654,6 +654,13 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -663,9 +670,14 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); @@ -1250,41 +1262,11 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExtraProperties") .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Properties") .HasColumnType("nvarchar(max)"); @@ -1409,22 +1391,6 @@ namespace MyCompanyName.MyProjectName.Migrations b.Property("CreationDate") .HasColumnType("datetime2"); - b.Property("CreationTime") - .HasColumnType("datetime2") - .HasColumnName("CreationTime"); - - b.Property("CreatorId") - .HasColumnType("uniqueidentifier") - .HasColumnName("CreatorId"); - - b.Property("DeleterId") - .HasColumnType("uniqueidentifier") - .HasColumnName("DeleterId"); - - b.Property("DeletionTime") - .HasColumnType("datetime2") - .HasColumnName("DeletionTime"); - b.Property("ExpirationDate") .HasColumnType("datetime2"); @@ -1433,20 +1399,6 @@ namespace MyCompanyName.MyProjectName.Migrations .HasColumnType("nvarchar(max)") .HasColumnName("ExtraProperties"); - b.Property("IsDeleted") - .ValueGeneratedOnAdd() - .HasColumnType("bit") - .HasDefaultValue(false) - .HasColumnName("IsDeleted"); - - b.Property("LastModificationTime") - .HasColumnType("datetime2") - .HasColumnName("LastModificationTime"); - - b.Property("LastModifierId") - .HasColumnType("uniqueidentifier") - .HasColumnName("LastModifierId"); - b.Property("Payload") .HasColumnType("nvarchar(max)"); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyCompanyName.MyProjectName.AuthServer.csproj b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyCompanyName.MyProjectName.AuthServer.csproj index f6affd669e..78f468732b 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyCompanyName.MyProjectName.AuthServer.csproj +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyCompanyName.MyProjectName.AuthServer.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName true @@ -13,8 +13,8 @@ - - + + all runtime; build; native; contentfiles; analyzers diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs index ad5ba84144..feb60f2b34 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs @@ -210,7 +210,7 @@ public class MyProjectNameAuthServerModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host.Client/MyCompanyName.MyProjectName.Blazor.Host.Client.csproj b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host.Client/MyCompanyName.MyProjectName.Blazor.Host.Client.csproj index 1f74a203b7..c45c9ee425 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host.Client/MyCompanyName.MyProjectName.Blazor.Host.Client.csproj +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host.Client/MyCompanyName.MyProjectName.Blazor.Host.Client.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable true MyCompanyName.MyProjectName.Blazor.Host.Client @@ -12,8 +12,8 @@ - - + + diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/MyCompanyName.MyProjectName.Blazor.Host.csproj b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/MyCompanyName.MyProjectName.Blazor.Host.csproj index 9791d142e3..9e51d6816c 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/MyCompanyName.MyProjectName.Blazor.Host.csproj +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/MyCompanyName.MyProjectName.Blazor.Host.csproj @@ -3,12 +3,12 @@ - net8.0 + net9.0 enable - + diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/Program.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/Program.cs index 99c5702ed3..cddfdec7d4 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/Program.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/Program.cs @@ -33,7 +33,7 @@ else app.UseHttpsRedirection(); -app.UseStaticFiles(); +app.MapStaticAssets(); app.UseAntiforgery(); app.MapRazorComponents() diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20240312033728_Initial.Designer.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20241002093412_Initial.Designer.cs similarity index 98% rename from templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20240312033728_Initial.Designer.cs rename to templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20241002093412_Initial.Designer.cs index cc7dab7c4b..84f4aafd94 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20240312033728_Initial.Designer.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20241002093412_Initial.Designer.cs @@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations { [DbContext(typeof(UnifiedDbContext))] - [Migration("20240312033728_Initial")] + [Migration("20241002093412_Initial")] partial class Initial { /// @@ -22,7 +22,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -657,6 +657,13 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -666,9 +673,14 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20240312033728_Initial.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20241002093412_Initial.cs similarity index 99% rename from templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20240312033728_Initial.cs rename to templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20241002093412_Initial.cs index b79afe38fe..8b719e8c0d 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20240312033728_Initial.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20241002093412_Initial.cs @@ -266,9 +266,11 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations TenantId = table.Column(type: "uniqueidentifier", nullable: true), UserId = table.Column(type: "uniqueidentifier", nullable: false), ClientId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - IpAddresses = table.Column(type: "nvarchar(256)", maxLength: 256, nullable: true), + IpAddresses = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), SignedIn = table.Column(type: "datetime2", nullable: false), - LastAccessed = table.Column(type: "datetime2", nullable: true) + LastAccessed = table.Column(type: "datetime2", nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/UnifiedDbContextModelSnapshot.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/UnifiedDbContextModelSnapshot.cs index 8c80cc940f..b747558823 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/UnifiedDbContextModelSnapshot.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/UnifiedDbContextModelSnapshot.cs @@ -19,7 +19,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -654,6 +654,13 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -663,9 +670,14 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyCompanyName.MyProjectName.Blazor.Server.Host.csproj b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyCompanyName.MyProjectName.Blazor.Server.Host.csproj index af37482bcd..76ef5698e5 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyCompanyName.MyProjectName.Blazor.Server.Host.csproj +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyCompanyName.MyProjectName.Blazor.Server.Host.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable true true @@ -17,7 +17,7 @@ - + diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyProjectNameBlazorHostModule.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyProjectNameBlazorHostModule.cs index 4451d010a0..b845e23241 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyProjectNameBlazorHostModule.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyProjectNameBlazorHostModule.cs @@ -254,7 +254,7 @@ public class MyProjectNameBlazorHostModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Host.Shared/MyCompanyName.MyProjectName.Host.Shared.csproj b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Host.Shared/MyCompanyName.MyProjectName.Host.Shared.csproj index 8133f9cddf..83bb5689cf 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Host.Shared/MyCompanyName.MyProjectName.Host.Shared.csproj +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Host.Shared/MyCompanyName.MyProjectName.Host.Shared.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Dockerfile b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Dockerfile index 7740ffbc24..ab9507b7a2 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Dockerfile +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Dockerfile @@ -1,9 +1,9 @@ -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base WORKDIR /app EXPOSE 80 ENV ASPNETCORE_URLS=http://+:80 -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build WORKDIR /src COPY . . WORKDIR /src/templates/service/host/MyCompanyName.MyProjectName.HttpApi.Host diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20240312033807_Initial.Designer.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20241002093440_Initial.Designer.cs similarity index 89% rename from templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20240312033807_Initial.Designer.cs rename to templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20241002093440_Initial.Designer.cs index 3407609e8f..88559ccc91 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20240312033807_Initial.Designer.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20241002093440_Initial.Designer.cs @@ -12,7 +12,7 @@ using Volo.Abp.EntityFrameworkCore; namespace MyCompanyName.MyProjectName.Migrations { [DbContext(typeof(MyProjectNameHttpApiHostMigrationsDbContext))] - [Migration("20240312033807_Initial")] + [Migration("20241002093440_Initial")] partial class Initial { /// @@ -21,7 +21,7 @@ namespace MyCompanyName.MyProjectName.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20240312033807_Initial.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20241002093440_Initial.cs similarity index 100% rename from templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20240312033807_Initial.cs rename to templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20241002093440_Initial.cs diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/MyProjectNameHttpApiHostMigrationsDbContextModelSnapshot.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/MyProjectNameHttpApiHostMigrationsDbContextModelSnapshot.cs index 30b1ab980c..8f18778ba3 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/MyProjectNameHttpApiHostMigrationsDbContextModelSnapshot.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/MyProjectNameHttpApiHostMigrationsDbContextModelSnapshot.cs @@ -18,7 +18,7 @@ namespace MyCompanyName.MyProjectName.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyCompanyName.MyProjectName.HttpApi.Host.csproj b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyCompanyName.MyProjectName.HttpApi.Host.csproj index f56f04fccc..f2b60eda06 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyCompanyName.MyProjectName.HttpApi.Host.csproj +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyCompanyName.MyProjectName.HttpApi.Host.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName true @@ -14,9 +14,9 @@ - - - + + + diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs index bb759d2386..d53b3d90bc 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs @@ -175,7 +175,7 @@ public class MyProjectNameHttpApiHostModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyCompanyName.MyProjectName.Web.Host.csproj b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyCompanyName.MyProjectName.Web.Host.csproj index f1579300a2..780571f7e8 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyCompanyName.MyProjectName.Web.Host.csproj +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyCompanyName.MyProjectName.Web.Host.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName true @@ -13,7 +13,7 @@ - + diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebHostModule.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebHostModule.cs index f17251116f..e90eddd122 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebHostModule.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebHostModule.cs @@ -240,7 +240,7 @@ public class MyProjectNameWebHostModule : AbpModule } app.UseHttpsRedirection(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20240312033830_Initial.Designer.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20241002093456_Initial.Designer.cs similarity index 98% rename from templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20240312033830_Initial.Designer.cs rename to templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20241002093456_Initial.Designer.cs index 618206a870..c35a1f17a9 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20240312033830_Initial.Designer.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20241002093456_Initial.Designer.cs @@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; namespace MyCompanyName.MyProjectName.Migrations { [DbContext(typeof(UnifiedDbContext))] - [Migration("20240312033830_Initial")] + [Migration("20241002093456_Initial")] partial class Initial { /// @@ -22,7 +22,7 @@ namespace MyCompanyName.MyProjectName.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -657,6 +657,13 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -666,9 +673,14 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20240312033830_Initial.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20241002093456_Initial.cs similarity index 99% rename from templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20240312033830_Initial.cs rename to templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20241002093456_Initial.cs index 105890a571..a213cafa11 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20240312033830_Initial.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20241002093456_Initial.cs @@ -266,9 +266,11 @@ namespace MyCompanyName.MyProjectName.Migrations TenantId = table.Column(type: "uniqueidentifier", nullable: true), UserId = table.Column(type: "uniqueidentifier", nullable: false), ClientId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), - IpAddresses = table.Column(type: "nvarchar(256)", maxLength: 256, nullable: true), + IpAddresses = table.Column(type: "nvarchar(2048)", maxLength: 2048, nullable: true), SignedIn = table.Column(type: "datetime2", nullable: false), - LastAccessed = table.Column(type: "datetime2", nullable: true) + LastAccessed = table.Column(type: "datetime2", nullable: true), + ExtraProperties = table.Column(type: "nvarchar(max)", nullable: false), + ConcurrencyStamp = table.Column(type: "nvarchar(40)", maxLength: 40, nullable: false) }, constraints: table => { diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/UnifiedDbContextModelSnapshot.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/UnifiedDbContextModelSnapshot.cs index 59eae27537..6275653b74 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/UnifiedDbContextModelSnapshot.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/UnifiedDbContextModelSnapshot.cs @@ -19,7 +19,7 @@ namespace MyCompanyName.MyProjectName.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) - .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("ProductVersion", "9.0.0-rc.1.24451.1") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); @@ -654,6 +654,13 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)") + .HasColumnName("ConcurrencyStamp"); + b.Property("Device") .IsRequired() .HasMaxLength(64) @@ -663,9 +670,14 @@ namespace MyCompanyName.MyProjectName.Migrations .HasMaxLength(64) .HasColumnType("nvarchar(64)"); + b.Property("ExtraProperties") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnName("ExtraProperties"); + b.Property("IpAddresses") - .HasMaxLength(256) - .HasColumnType("nvarchar(256)"); + .HasMaxLength(2048) + .HasColumnType("nvarchar(2048)"); b.Property("LastAccessed") .HasColumnType("datetime2"); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyCompanyName.MyProjectName.Web.Unified.csproj b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyCompanyName.MyProjectName.Web.Unified.csproj index ff44ba45ef..cc18d861ff 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyCompanyName.MyProjectName.Web.Unified.csproj +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyCompanyName.MyProjectName.Web.Unified.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName true @@ -13,7 +13,7 @@ - + all runtime; build; native; contentfiles; analyzers diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyProjectNameWebUnifiedModule.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyProjectNameWebUnifiedModule.cs index 8174c0d9ee..5bca5679e1 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyProjectNameWebUnifiedModule.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyProjectNameWebUnifiedModule.cs @@ -158,7 +158,7 @@ public class MyProjectNameWebUnifiedModule : AbpModule } app.UseHttpsRedirection(); - app.UseStaticFiles(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Application.Contracts/MyCompanyName.MyProjectName.Application.Contracts.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Application.Contracts/MyCompanyName.MyProjectName.Application.Contracts.csproj index 16c3760c74..c6501cf477 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Application.Contracts/MyCompanyName.MyProjectName.Application.Contracts.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Application.Contracts/MyCompanyName.MyProjectName.Application.Contracts.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Application/MyCompanyName.MyProjectName.Application.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Application/MyCompanyName.MyProjectName.Application.csproj index 147fa71672..df92d80ceb 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Application/MyCompanyName.MyProjectName.Application.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Application/MyCompanyName.MyProjectName.Application.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj index f50e44f2b7..b8675efd80 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebAssembly/MyCompanyName.MyProjectName.Blazor.WebAssembly.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebAssembly/MyCompanyName.MyProjectName.Blazor.WebAssembly.csproj index 9a03d5c6d6..bfc82bfb5d 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebAssembly/MyCompanyName.MyProjectName.Blazor.WebAssembly.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebAssembly/MyCompanyName.MyProjectName.Blazor.WebAssembly.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/MyCompanyName.MyProjectName.Blazor.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/MyCompanyName.MyProjectName.Blazor.csproj index d3f3898f75..870ca204dd 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/MyCompanyName.MyProjectName.Blazor.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/MyCompanyName.MyProjectName.Blazor.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Domain.Shared/MyCompanyName.MyProjectName.Domain.Shared.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Domain.Shared/MyCompanyName.MyProjectName.Domain.Shared.csproj index af72c8e86f..a8d979b688 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Domain.Shared/MyCompanyName.MyProjectName.Domain.Shared.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Domain.Shared/MyCompanyName.MyProjectName.Domain.Shared.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName true @@ -15,7 +15,7 @@ - + diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Domain/MyCompanyName.MyProjectName.Domain.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Domain/MyCompanyName.MyProjectName.Domain.csproj index 8960e4f276..d115667288 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Domain/MyCompanyName.MyProjectName.Domain.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Domain/MyCompanyName.MyProjectName.Domain.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/MyCompanyName.MyProjectName.EntityFrameworkCore.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/MyCompanyName.MyProjectName.EntityFrameworkCore.csproj index f7130de067..6e10588a6c 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/MyCompanyName.MyProjectName.EntityFrameworkCore.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/MyCompanyName.MyProjectName.EntityFrameworkCore.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Client/MyCompanyName.MyProjectName.HttpApi.Client.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Client/MyCompanyName.MyProjectName.HttpApi.Client.csproj index 7271230ed1..28cf860031 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Client/MyCompanyName.MyProjectName.HttpApi.Client.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Client/MyCompanyName.MyProjectName.HttpApi.Client.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi/MyCompanyName.MyProjectName.HttpApi.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi/MyCompanyName.MyProjectName.HttpApi.csproj index 4b5b4fbf19..cc5a76306e 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi/MyCompanyName.MyProjectName.HttpApi.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi/MyCompanyName.MyProjectName.HttpApi.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Installer/MyCompanyName.MyProjectName.Installer.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Installer/MyCompanyName.MyProjectName.Installer.csproj index 9694d57c61..63c8329a73 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Installer/MyCompanyName.MyProjectName.Installer.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Installer/MyCompanyName.MyProjectName.Installer.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable true MyCompanyName.MyProjectName diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.MongoDB/MyCompanyName.MyProjectName.MongoDB.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.MongoDB/MyCompanyName.MyProjectName.MongoDB.csproj index bb53373ba6..a614e44d75 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.MongoDB/MyCompanyName.MyProjectName.MongoDB.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.MongoDB/MyCompanyName.MyProjectName.MongoDB.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName diff --git a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj index ebeb932aef..9f45a1b2a3 100644 --- a/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj +++ b/templates/module/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; true @@ -22,7 +22,7 @@ - + diff --git a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.Application.Tests/MyCompanyName.MyProjectName.Application.Tests.csproj b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.Application.Tests/MyCompanyName.MyProjectName.Application.Tests.csproj index e35cec36d7..04b0de10b5 100644 --- a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.Application.Tests/MyCompanyName.MyProjectName.Application.Tests.csproj +++ b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.Application.Tests/MyCompanyName.MyProjectName.Application.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName @@ -11,7 +11,7 @@ - + diff --git a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.Domain.Tests/MyCompanyName.MyProjectName.Domain.Tests.csproj b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.Domain.Tests/MyCompanyName.MyProjectName.Domain.Tests.csproj index e16b8e9883..6f5ed8316a 100644 --- a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.Domain.Tests/MyCompanyName.MyProjectName.Domain.Tests.csproj +++ b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.Domain.Tests/MyCompanyName.MyProjectName.Domain.Tests.csproj @@ -3,13 +3,13 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName - + diff --git a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests.csproj b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests.csproj index 3a57b39d76..8cc9e6e105 100644 --- a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests.csproj +++ b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests.csproj @@ -1,16 +1,16 @@ - + - net8.0 + net9.0 enable MyCompanyName.MyProjectName - - + + diff --git a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp.csproj b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp.csproj index abc2cb00d8..ceb9b2ecbd 100644 --- a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp.csproj +++ b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 enable MyCompanyName.MyProjectName @@ -23,7 +23,7 @@ - + diff --git a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.MongoDB.Tests/MyCompanyName.MyProjectName.MongoDB.Tests.csproj b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.MongoDB.Tests/MyCompanyName.MyProjectName.MongoDB.Tests.csproj index d830b1a598..39bfa306c3 100644 --- a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.MongoDB.Tests/MyCompanyName.MyProjectName.MongoDB.Tests.csproj +++ b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.MongoDB.Tests/MyCompanyName.MyProjectName.MongoDB.Tests.csproj @@ -3,13 +3,13 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName - + diff --git a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.TestBase/MyCompanyName.MyProjectName.TestBase.csproj b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.TestBase/MyCompanyName.MyProjectName.TestBase.csproj index 13d165e43d..5d7afeacaa 100644 --- a/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.TestBase/MyCompanyName.MyProjectName.TestBase.csproj +++ b/templates/module/aspnet-core/test/MyCompanyName.MyProjectName.TestBase/MyCompanyName.MyProjectName.TestBase.csproj @@ -3,13 +3,13 @@ - net8.0 + net9.0 enable MyCompanyName.MyProjectName - + all diff --git a/templates/wpf/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj b/templates/wpf/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj index 885e0974e6..deabdcce13 100644 --- a/templates/wpf/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj +++ b/templates/wpf/src/MyCompanyName.MyProjectName/MyCompanyName.MyProjectName.csproj @@ -1,10 +1,10 @@ - + WinExe - net8.0-windows + net9.0-windows enable true @@ -14,7 +14,7 @@ - + diff --git a/test/AbpPerfTest/AbpPerfTest.WithAbp/AbpPerfTest.WithAbp.csproj b/test/AbpPerfTest/AbpPerfTest.WithAbp/AbpPerfTest.WithAbp.csproj index 364987cb4c..8ccebdd263 100644 --- a/test/AbpPerfTest/AbpPerfTest.WithAbp/AbpPerfTest.WithAbp.csproj +++ b/test/AbpPerfTest/AbpPerfTest.WithAbp/AbpPerfTest.WithAbp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/test/AbpPerfTest/AbpPerfTest.WithoutAbp/AbpPerfTest.WithoutAbp.csproj b/test/AbpPerfTest/AbpPerfTest.WithoutAbp/AbpPerfTest.WithoutAbp.csproj index 878fe0f1b7..7f5ab9c780 100644 --- a/test/AbpPerfTest/AbpPerfTest.WithoutAbp/AbpPerfTest.WithoutAbp.csproj +++ b/test/AbpPerfTest/AbpPerfTest.WithoutAbp/AbpPerfTest.WithoutAbp.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 diff --git a/test/DistEvents/DistDemoApp.EfCoreRabbitMq/DistDemoApp.EfCoreRabbitMq.csproj b/test/DistEvents/DistDemoApp.EfCoreRabbitMq/DistDemoApp.EfCoreRabbitMq.csproj index 440fc82aee..1d18a97fca 100644 --- a/test/DistEvents/DistDemoApp.EfCoreRabbitMq/DistDemoApp.EfCoreRabbitMq.csproj +++ b/test/DistEvents/DistDemoApp.EfCoreRabbitMq/DistDemoApp.EfCoreRabbitMq.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 DistDemoApp diff --git a/test/DistEvents/DistDemoApp.MongoDbKafka/DistDemoApp.MongoDbKafka.csproj b/test/DistEvents/DistDemoApp.MongoDbKafka/DistDemoApp.MongoDbKafka.csproj index f7b490aa16..21abd5443a 100644 --- a/test/DistEvents/DistDemoApp.MongoDbKafka/DistDemoApp.MongoDbKafka.csproj +++ b/test/DistEvents/DistDemoApp.MongoDbKafka/DistDemoApp.MongoDbKafka.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 DistDemoApp diff --git a/test/DistEvents/DistDemoApp.MongoDbRebus/DistDemoApp.MongoDbRebus.csproj b/test/DistEvents/DistDemoApp.MongoDbRebus/DistDemoApp.MongoDbRebus.csproj index d662d560a5..0fc57319c8 100644 --- a/test/DistEvents/DistDemoApp.MongoDbRebus/DistDemoApp.MongoDbRebus.csproj +++ b/test/DistEvents/DistDemoApp.MongoDbRebus/DistDemoApp.MongoDbRebus.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 DistDemoApp diff --git a/test/DistEvents/DistDemoApp.Shared/DistDemoApp.Shared.csproj b/test/DistEvents/DistDemoApp.Shared/DistDemoApp.Shared.csproj index 936f29d9ec..ab666d9696 100644 --- a/test/DistEvents/DistDemoApp.Shared/DistDemoApp.Shared.csproj +++ b/test/DistEvents/DistDemoApp.Shared/DistDemoApp.Shared.csproj @@ -1,7 +1,7 @@ - net8.0 + net9.0 DistDemoApp diff --git a/tools/localization-key-synchronizer/src/LocalizationKeySynchronizer.csproj b/tools/localization-key-synchronizer/src/LocalizationKeySynchronizer.csproj index c5f6097cb6..0af7223191 100644 --- a/tools/localization-key-synchronizer/src/LocalizationKeySynchronizer.csproj +++ b/tools/localization-key-synchronizer/src/LocalizationKeySynchronizer.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 enable enable