Base solution for your next web application

Activities of "m.aliozkaya"

Hi @ricardo,

Sorry for the late reply. We're having trouble reproducing the error. Another teammate will be handling this issue from now on.

Hi @huntethan89,

Please refactor your async void codes to async Task.

If you have async overload of methods please use async methods instead of sync methods.

Hi @ricardo,

We have successfully executed the project and will provide you with an update at the earliest opportunity.

Hi @pliaspzero,

This problem relates to your Azure settings or HTTP client settings in your code.

Could you check this issue? https://github.com/Azure/azure-functions-host/issues/8168

Hi @uenlkr4e,

Could you try to implement ITransientDependency to DoSomethingclass?

Hi @uenlkr4e,

Can you show your implementation code?

Hi @truist.software,

Could you share your project with support@aspnetzero.com ?

Hi @truist.software,

Do you have a cookie like this?

You may also have forgotten about using middleware.

Hi @uenlkr4e,

ABP ensures that the same job is not executed twice by marking jobs as "IsAbandoned" when fetched and excluding them from subsequent fetches until they are completed or failed. This mechanism prevents duplicate execution and ensures reliable job processing.

https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp/BackgroundJobs/BackgroundJobInfo.cs

Hi @Michael@datasimplified.co.za,

What is your product version? This typically happens when there is a mismatch between the versions of the assemblies being referenced or when the required assembly is not properly loaded or available.

Check your .csproj file and update all MAUI-related packages to the same version.

<PackageReference Include="Microsoft.Maui.Controls" Version="x.x.x" /> <PackageReference Include="Microsoft.Maui.Graphics" Version="x.x.x" />

Then;

  • Go to Build > Clean Solution.
  • Then, go to Build > Rebuild Solution.
Showing 1 to 10 of 430 entries