Browse Source

Merge branch 'dev' of https://github.com/abpframework/abp into dev

pull/25306/head
Ebicoglu 3 weeks ago
parent
commit
6675dee033
  1. 16
      docs/en/Community-Articles/2026-04-17-Top-AI-Coding-Models-2026-Rankings/Post.md
  2. 11
      modules/feature-management/src/Volo.Abp.FeatureManagement.Web/AbpFeatureManagementWebModule.cs

16
docs/en/Community-Articles/2026-04-17-Top-AI-Coding-Models-2026-Rankings/Post.md

@ -1,19 +1,3 @@
# Top AI Coding Models in 2026: Which One Should Developers Actually Use?
Meta Description:
Explore the top AI coding models in 2026, ranked by performance, real-world usage, and developer experience. Find the best model for your workflow.
Keywords:
* AI coding models 2026
* best AI for programming
* GPT-5 vs Claude vs Gemini
* code generation AI tools
* AI developer assistants
* LLM coding benchmarks
---
## Introduction
AI coding tools went from “cool autocomplete” to “basically your junior dev (who never sleeps)” in just a couple of years.

11
modules/feature-management/src/Volo.Abp.FeatureManagement.Web/AbpFeatureManagementWebModule.cs

@ -1,10 +1,12 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
using Localization.Resources.AbpUi;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.AspNetCore.Mvc.Localization;
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared;
using Volo.Abp.FeatureManagement.Localization;
using Volo.Abp.FeatureManagement.Settings;
using Volo.Abp.Http.ProxyScripting.Generators.JQuery;
using Volo.Abp.Localization;
using Volo.Abp.Modularity;
using Volo.Abp.SettingManagement.Web;
using Volo.Abp.SettingManagement.Web.Pages.SettingManagement;
@ -38,6 +40,13 @@ public class AbpFeatureManagementWebModule : AbpModule
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpLocalizationOptions>(options =>
{
options.Resources
.Get<AbpFeatureManagementResource>()
.AddBaseTypes(typeof(AbpUiResource));
});
Configure<AbpVirtualFileSystemOptions>(options =>
{
options.FileSets.AddEmbedded<AbpFeatureManagementWebModule>();

Loading…
Cancel
Save