Base solution for your next web application

Activities of "m.aliozkaya"

Hi @AuroraBMS,

No need to worry, we are releasing Power Tools and Zero separately. We fix bugs faster in Power Tools.

Are you still getting the first error?

Hi @JapNolt,

Sorry for my missing response.

Go to *.Core project and add this line to PreInitialize method

Configuration.ReplaceService<IAbpZeroFeatureValueStore, FeatureValueStore>();

I tested it at editing features of edition. https://localhost:44302/App/Editions

Hi @AuroraBMS,

There is no downgrade option at the moment.

I can't reproduce this error with json. We will patch other problems as soon as possible.

Hi @AuroraBMS,

Could you share your entity.json to reproduce it?

Hi @kansoftware,

Can you reproduce the issue for us in a fresh project? If this is an issue related to upgrading, it may be difficult to find without reviewing the code in the project.

Hi @TimMackey,

This may not be possible because the version of ANZ you are using is slightly outdated (Latest is 14.0 & .NET 9). If Microsoft continues to support Microsoft Exhange server in .NET Core 3.1, you should be able to use it without any issues.

Hi @JapNolt,

Did you replace the service in the example below?

public class MyService : AbpService
{

}

Then replace in your module:

public override void PreInitialize()
{
    Configuration.ReplaceService<IAbpService, MyService>(DependencyLifeStyle.Transient);
}

Hi @qquestel,

Sorry for the late reply.

Open AspNetZeroRadTool folder in your project. Find your entity.json like this Src.Book.json and delete it.

Hi @mmukkara,

Could you take a look at this PR? https://github.com/aspnetzero/aspnet-zero-core/pull/5422

If this does not solve your problem, please share your project with [email protected] by deleting node_modules, bin, obj folders

Hi @MainTechAS,

Add the tag below to your common.props file, otherwise, you will get an error when building the solution after code generation.

<LangVersion>latest</LangVersion>

Showing 11 to 20 of 390 entries