Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

dotnet-skills

يحتوي dotnet-skills على 166 من skills المجمعة من wshaddix، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
166
Stars
65
محدث
2026-02-21
Forks
10
التغطية المهنية
7 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

dotnet-tunit-test
محللو ضمان جودة البرمجيات والمختبرون

Guidelines for writing TUnit tests in .NET, including setup, assertions, async testing, and best practices. Use when writing unit tests with TUnit framework, setting up TUnit in a .NET project, or migrating from other test frameworks to TUnit.

2026-02-21
background-services
مطوّرو البرمجيات

Hosted services, background jobs, outbox patterns, and graceful shutdown handling for ASP.NET Core applications. Includes patterns for reliable job processing, distributed systems, and lifecycle management. Use when implementing background processing in ASP.NET Core applications, handling outbox patterns for reliable message delivery, or managing graceful service shutdown.

2026-02-19
api-design
مطوّرو البرمجيات

Design stable, compatible public APIs using extend-only design principles. Manage API compatibility, wire compatibility, versioning, naming conventions, parameter ordering, and return types for NuGet packages and distributed systems. Use when designing public APIs for NuGet packages or libraries, making changes to existing public APIs, planning wire format changes for distributed systems, or reviewing pull requests for breaking changes.

2026-02-19
modern-csharp-coding-standards
مطوّرو البرمجيات

Write modern, high-performance C# code using records, pattern matching, value objects, async/await, Span<T>/Memory<T>, and best-practice API design patterns. Emphasizes functional-style programming with C# 12+ features. Use when writing new C# code or refactoring existing code, designing public APIs for libraries or services, optimizing performance-critical code paths, or building async/await-heavy applications.

2026-02-19
csharp-concurrency-patterns
مطوّرو البرمجيات

Choosing the right concurrency abstraction in .NET - from async/await for I/O to Channels for producer/consumer to Akka.NET for stateful entity management. Covers both high-level abstractions and low-level synchronization primitives. Use when deciding how to handle concurrent operations in .NET, evaluating whether to use async/await, Channels, or Akka.NET, or managing state across multiple concurrent entities.

2026-02-19
type-design-performance
مطوّرو البرمجيات

Design .NET types for performance. Covers struct vs class decision matrix, sealed by default, readonly structs, ref struct and Span/Memory selection, FrozenDictionary, ValueTask, and collection return types. Use when designing new types and APIs, reviewing code for performance issues, choosing between class, struct, and record, or working with collections and enumerables.

2026-02-19
dotnet-accessibility
مصممو واجهات الويب والرقمية

Building accessible .NET UI. SemanticProperties, ARIA, AutomationPeer, testing tools per platform.

2026-02-19
dotnet-add-analyzers
مطوّرو البرمجيات

Adding analyzer packages to a project. Nullable, trimming, AOT compat analyzers, severity config.

2026-02-19
dotnet-add-ci
مطوّرو البرمجيات

Adding CI/CD to a .NET project. GitHub Actions vs Azure DevOps detection, workflow templates.

2026-02-19
dotnet-add-testing
مطوّرو البرمجيات

Adding test infrastructure to a .NET project. Scaffolds xUnit project, coverlet, layout.

2026-02-19
dotnet-ado-build-test
مطوّرو البرمجيات

Configuring .NET build/test in Azure DevOps. DotNetCoreCLI task, Artifacts, test results.

2026-02-19
dotnet-ado-patterns
مطوّرو البرمجيات

Designing composable Azure DevOps YAML pipelines. Templates, variable groups, multi-stage, triggers.

2026-02-19
dotnet-ado-publish
مطوّرو البرمجيات

Publishing .NET artifacts from Azure DevOps. NuGet push, containers to ACR, pipeline artifacts.

2026-02-19
dotnet-ado-unique
مطوّرو البرمجيات

Using ADO-exclusive features. Environments, approvals, service connections, classic releases.

2026-02-19
dotnet-advisor
مطوّرو البرمجيات

Working with .NET, C#, ASP.NET Core, or related frameworks. Routes to specialist skills.

2026-02-19
dotnet-agent-gotchas
مطوّرو البرمجيات

Generating or modifying .NET code. Common agent mistakes: async, NuGet, deprecated APIs, DI.

2026-02-19
dotnet-aot-architecture
مطوّرو البرمجيات

Designing AOT-first apps. Source gen over reflection, AOT-safe DI, serialization, factories.

2026-02-19
dotnet-aot-wasm
مطوّرو البرمجيات

AOT-compiling for WebAssembly. Blazor/Uno WASM AOT, size vs speed, lazy loading, Brotli.

2026-02-19
dotnet-api-docs
مطوّرو البرمجيات

Generating API documentation. DocFX setup, OpenAPI-as-docs, doc-code sync, versioned docs.

2026-02-19
dotnet-api-security
مطوّرو البرمجيات

Implementing API auth. Identity, OAuth/OIDC, JWT bearer, passkeys (WebAuthn), CORS, rate limiting.

2026-02-19
dotnet-api-surface-validation
محللو ضمان جودة البرمجيات والمختبرون

Detecting API changes in CI. PublicApiAnalyzers, Verify snapshots, breaking change enforcement.

2026-02-19
dotnet-api-versioning
مطوّرو البرمجيات

Versioning HTTP APIs. Asp.Versioning.Http/Mvc, URL segment, header, query string, sunset.

2026-02-19
dotnet-architecture-patterns
مطوّرو البرمجيات

Organizing APIs at scale. Vertical slices, request pipelines, caching, error handling, idempotency.

2026-02-19
dotnet-artifacts-output
مطوّرو البرمجيات

Using artifacts output layout. UseArtifactsOutput, ArtifactsPath, impact on CI and Docker.

2026-02-19
dotnet-aspire-patterns
مطوّرو البرمجيات

Using .NET Aspire. AppHost orchestration, service discovery, components, dashboard, health checks.

2026-02-19
dotnet-benchmarkdotnet
مطوّرو البرمجيات

Writing benchmarks. BenchmarkDotNet setup, memory diagnosers, baselines, result analysis.

2026-02-19
dotnet-blazor-auth
مطوّرو البرمجيات

Adding auth to Blazor. AuthorizeView, CascadingAuthenticationState, Identity UI, per-model flows.

2026-02-19
dotnet-blazor-components
مطوّرو البرمجيات

Building Blazor components. Lifecycle, state management, JS interop, EditForm validation, QuickGrid.

2026-02-19
dotnet-blazor-patterns
مطوّرو البرمجيات

Building Blazor apps. Hosting models, render modes, routing, streaming rendering, prerender.

2026-02-19
dotnet-blazor-testing
محللو ضمان جودة البرمجيات والمختبرون

Testing Blazor components. bUnit rendering, events, cascading params, JS interop mocking.

2026-02-19
dotnet-build-analysis
مطوّرو البرمجيات

Interpreting MSBuild output, NuGet errors, or analyzer warnings. Error codes, CI drift fixes.

2026-02-19
dotnet-build-optimization
مطوّرو البرمجيات

Diagnosing slow builds or incremental failures. Binary logs, parallel builds, restore.

2026-02-19
dotnet-channels
مطوّرو البرمجيات

Using producer/consumer queues. Channel<T>, bounded/unbounded, backpressure, drain patterns

2026-02-19
dotnet-ci-benchmarking
مطوّرو البرمجيات

Gating CI on perf regressions. Automated threshold alerts, baseline tracking, trend reports.

2026-02-19
dotnet-cli-architecture
مطوّرو البرمجيات

Structuring CLI app layers. Command/handler/service separation, clig.dev principles, exit codes.

2026-02-19
dotnet-cli-distribution
مطوّرو البرمجيات

Choosing CLI output format. AOT vs framework-dependent, RID matrix, single-file, dotnet tool.

2026-02-19
dotnet-cli-packaging
مطوّرو البرمجيات

Publishing to package managers. Homebrew, apt/deb, winget, Scoop, Chocolatey manifests.

2026-02-19
dotnet-cli-release-pipeline
مطوّرو البرمجيات

Releasing CLI tools. GitHub Actions build matrix, artifact staging, Releases, checksums.

2026-02-19
dotnet-container-deployment
مديرو الشبكات وأنظمة الحاسوب

Deploying .NET containers. Kubernetes probes, Docker Compose for local dev, CI/CD integration.

2026-02-19
dotnet-containers
مديرو الشبكات وأنظمة الحاسوب

Containerizing .NET apps. Multi-stage Dockerfiles, SDK container publish (.NET 8+), rootless.

2026-02-19
عرض أهم 40 من أصل 166 skills مجمعة في هذا المستودع.