Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "aaron"

I found all projects show a yellow warning icon on Dependencies.

That's a bug on .NET SDK side: <a class="postlink" href="https://github.com/dotnet/sdk/issues/1499">https://github.com/dotnet/sdk/issues/1499</a> It was fixed over a month ago, but will only be released in their v2.1.0 SDK.

You don't have to worry about those warnings.

To remove the Abp prefix, do this:

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
   base.OnModelCreating(modelBuilder);
   
   modelBuilder.ChangeAbpTablePrefix<Tenant, Role, User>(""); //Removes table prefixes. You can specify another prefix.
}

Remember to add using Abp.Zero.EntityFrameworkCore; to your code file in order to access ChangeAbpTablePrefix extension method.

To make table names singular, create an extension method similar to the implementation of ChangeAbpTablePrefix.

You can comment out these lines and these lines in Startup.cs.

Answer

@BBakerMMC Thanks for sharing your experience :)

Answer

There are no guided steps. See this reply:

Unfortunately not. We are working on migrating to metronic for two months and it is not a straight forward migration to do.

Best way you can try is, download the new version with your existing project name and merge it into your existing solution. But, there are also some changes [made] on the solution structure for new Xamarin application which will make merging a bit harder.

How to migrate existing solution: https://github.com/aspnetzero/aspnet-zero/issues/96#issuecomment-268093697

Answer

Yes, download fresh zip from aspnetzero website.

How to migrate existing solution: https://github.com/aspnetzero/aspnet-zero/issues/96#issuecomment-268093697

Answer

aspnetzero v5.0.4 (for ASP.NET Core & Angular) is available for download.

Sorry for the confusion, I wasn't aware that Angular's latest version is v5.0.3.

Answer

Can you try v5.0.4?

Gulp is still not finishing the default task.

Related issue: https://github.com/aspnetzero/aspnet-zero-core/issues/617

I am still missing fonts

Related issue: https://github.com/aspnetzero/aspnet-zero-core/issues/627

Showing 1261 to 1270 of 1543 entries