---
id: daily-aspnet-core
name: "aspnet-core"
url: https://skills.yangsir.net/skill/daily-aspnet-core
author: openai
domain: ai-backend-engineering
tags: ["api-development", "backend-development", "dotnet"]
install_count: 1200
rating: 4.30 (20 reviews)
github: https://github.com/openai/skills
---

# aspnet-core

> 选择正确的ASP.NET Core应用模型，按框架风格实现功能和管道配置

**Stats**: 1,200 installs · 4.3/5 (20 reviews)

## Before / After 对比

### ASP.NET Core开发

**Before**:

开发者不熟悉ASP.NET Core应用模型选择，加载不必要的依赖导致性能下降，管道配置混乱，代码不符合框架最佳实践。

**After**:

根据场景选择最小应用模型，按框架风格配置请求管道，加载必要依赖，代码简洁高效，性能和可维护性显著提升。

| Metric | Before | After | Change |
|---|---|---|---|
| 启动性能 | 2000毫秒 | 500毫秒 | -75% |

## Readme

# aspnet-core

# ASP.NET Core

## Overview

Choose the right ASP.NET Core application model, compose the host and request pipeline correctly, and implement features in the framework style Microsoft documents today.

Load the smallest set of references that fits the task. Do not load every reference by default.

## Workflow

- Confirm the target framework, SDK, and current app model.

- Open [references/stack-selection.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/stack-selection.md) first for new apps or major refactors.

- Open [references/program-and-pipeline.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/program-and-pipeline.md) next for `Program.cs`, DI, configuration, middleware, routing, logging, and static assets.

- Open exactly one primary app-model reference:

[references/ui-blazor.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/ui-blazor.md)

- [references/ui-razor-pages.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/ui-razor-pages.md)

- [references/ui-mvc.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/ui-mvc.md)

- [references/apis-minimal-and-controllers.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/apis-minimal-and-controllers.md)

- Add cross-cutting references only as needed:

[references/data-state-and-services.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/data-state-and-services.md)

- [references/security-and-identity.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/security-and-identity.md)

- [references/realtime-grpc-and-background-work.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/realtime-grpc-and-background-work.md)

- [references/testing-performance-and-operations.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/testing-performance-and-operations.md)

- Open [references/versioning-and-upgrades.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/versioning-and-upgrades.md) before introducing new platform APIs into an older solution or when migrating between major versions.

- Use [references/source-map.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/source-map.md) when you need the Microsoft Learn section that corresponds to a task not already covered by the focused references.

## Default Operating Assumptions

- Prefer the latest stable ASP.NET Core and .NET unless the repository or user request pins an older target.

- As of March 2026, prefer .NET 10 / ASP.NET Core 10 for new production work. Treat ASP.NET Core 11 as preview unless the user explicitly asks for preview features.

- Prefer `WebApplicationBuilder` and `WebApplication`. Avoid older `Startup` and `WebHost` patterns unless the codebase already uses them or the task is migration.

- Prefer built-in DI, options/configuration, logging, ProblemDetails, OpenAPI, health checks, rate limiting, output caching, and Identity before adding third-party infrastructure.

- Keep feature slices cohesive so the page, component, endpoint, controller, validation, service, data access, and tests are easy to trace.

- Respect the existing app model. Do not rewrite Razor Pages to MVC or controllers to Minimal APIs without a clear reason.

## Reference Guide

- [references/_sections.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/_sections.md): Quick index and reading order.

- [references/stack-selection.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/stack-selection.md): Choose the right ASP.NET Core application model and template.

- [references/program-and-pipeline.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/program-and-pipeline.md): Structure `Program.cs`, services, middleware, routing, configuration, logging, and static assets.

- [references/ui-blazor.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/ui-blazor.md): Build Blazor Web Apps, choose render modes, and use components, forms, and JS interop correctly.

- [references/ui-razor-pages.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/ui-razor-pages.md): Build page-focused server-rendered apps with handlers, model binding, and conventions.

- [references/ui-mvc.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/ui-mvc.md): Build controller/view applications with clear separation of concerns.

- [references/apis-minimal-and-controllers.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/apis-minimal-and-controllers.md): Build HTTP APIs with Minimal APIs or controllers, including validation and response patterns.

- [references/data-state-and-services.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/data-state-and-services.md): Use EF Core, `DbContext`, options, `IHttpClientFactory`, session, temp data, and app state responsibly.

- [references/security-and-identity.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/security-and-identity.md): Apply authentication, authorization, Identity, secrets, data protection, CORS, CSRF, and HTTPS guidance.

- [references/realtime-grpc-and-background-work.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/realtime-grpc-and-background-work.md): Use SignalR, gRPC, and hosted services.

- [references/testing-performance-and-operations.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/testing-performance-and-operations.md): Add integration tests, browser tests, caching, compression, health checks, rate limits, and deployment concerns.

- [references/versioning-and-upgrades.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/versioning-and-upgrades.md): Handle target frameworks, breaking changes, obsolete APIs, and migrations.

- [references/source-map.md](https://github.com/openai/skills/blob/HEAD/skills/.curated/aspnet-core/references/source-map.md): Map the official ASP.NET Core documentation tree to the references in this skill.

## Execution Notes

- When generating new code, start from the correct `dotnet new` template and keep the generated structure recognizable.

- When editing an existing solution, follow the solution's conventions first and use these references to avoid framework misuse or outdated patterns.

- When a task mentions "latest", verify the feature on Microsoft Learn or the ASP.NET Core docs repo before relying on memory.

Weekly Installs253Repository[openai/skills](https://github.com/openai/skills)GitHub Stars15.3KFirst SeenMar 4, 2026Security Audits[Gen Agent Trust HubPass](/openai/skills/aspnet-core/security/agent-trust-hub)[SocketPass](/openai/skills/aspnet-core/security/socket)[SnykPass](/openai/skills/aspnet-core/security/snyk)Installed oncodex237cursor228github-copilot227opencode227gemini-cli227kimi-cli226

---
*Source: https://skills.yangsir.net/skill/daily-aspnet-core*
*Markdown mirror: https://skills.yangsir.net/api/skill/daily-aspnet-core/markdown*