Skip to main content

Aaronontheweb/dotnet-skills

SkillsMP 已收集 Aaronontheweb/dotnet-skills 中的 36 个 Skill。打开任一 Skill 可查看来源和详情。

最近记录的来源活动
SkillsMP 收录数据更新
已收集 skills
36
GitHub 星标
1,111
GitHub Forks
101

已展示 36 / 36 个已收集 Skill。

职业分类
软件开发工程师
描述

Guidelines for introducing and using nullable reference types (NRT) and System.Diagnostics.CodeAnalysis nullable attributes in C# / .NET codebases. Covers the nullability model, flow analysis, the null-forgiving operator, API design rules, the full attribute…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Provides guidance for implementing OpenTelemetry instrumentation in .NET codebases, covering tracing (Activities/Spans), metrics, logs, naming conventions, error handling, performance, SDK setup, resources, context propagation, and API design best practices.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Build reactive/event-driven C# with R3 (Cysharp's modern reimplementation of Reactive Extensions). Covers the Observable<T>/Observer<T> model, the OnErrorResume error contract, async dispatch with AwaitOperation, Task/IAsyncEnumerable integration,…

原文语言:英语

更新
职业分类
软件开发工程师
描述

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.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Design stable, compatible public APIs using extend-only design principles. Manage API compatibility, wire compatibility, and versioning for NuGet packages and distributed systems.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Critical Akka.NET best practices including EventStream vs DistributedPubSub, supervision strategies, error handling, Props vs DependencyResolver, work distribution patterns, and cluster/local mode abstractions for testability.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Akka.Management for cluster bootstrapping, service discovery (Kubernetes, Azure, Config), health checks, and dynamic cluster formation without static seed nodes.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Write unit and integration tests for Akka.NET actors using modern Akka.Hosting.TestKit patterns. Covers dependency injection, TestProbes, persistence testing, and actor interaction verification. Includes guidance on when to use traditional TestKit.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Write integration tests using .NET Aspire's testing facilities with xUnit. Covers test fixtures, distributed application setup, endpoint discovery, and patterns for testing ASP.NET Core apps with real dependencies.

原文语言:英语

更新
职业分类
软件开发工程师
描述

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. Avoid locks and manual synchronization unless absolutely necessary.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Microsoft.Extensions.Options patterns including IValidateOptions, strongly-typed settings, validation on startup, and the Options pattern for clean configuration management.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Organize DI registrations using IServiceCollection extension methods. Group related services into composable Add* methods for clean Program.cs and reusable configuration in tests.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Write integration tests using TestContainers for .NET with xUnit. Covers infrastructure testing with real databases, message queues, and caches in Docker containers instead of mocks.

原文语言:英语

更新
职业分类
网络与计算机系统管理员
描述

Diagnose and fix .NET HTTPS dev certificate trust issues on Linux. Covers the full certificate lifecycle from generation to system CA bundle inclusion, with distro-specific guidance for Ubuntu, Fedora, Arch, and WSL2.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Understand implementation details of .NET code by decompiling assemblies. Use when you want to see how a .NET API works internally, inspect NuGet package source, view framework implementation, or understand compiled .NET binaries.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Analyze code coverage and CRAP (Change Risk Anti-Patterns) scores to identify high-risk code. Use OpenCover format with ReportGenerator for Risk Hotspots showing cyclomatic complexity and untested code paths.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Configure Akka.NET with .NET Aspire for local development and production deployments. Covers actor system setup, clustering, persistence, Akka.Management integration, and Aspire orchestration patterns.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Patterns for building entity actors with Akka.Hosting - GenericChildPerEntityParent, message extractors, cluster sharding abstraction, akka-reminders, and ITimeProvider. Supports both local testing and clustered production modes.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Configure Aspire AppHost to emit explicit app config via environment variables; keep app code free of Aspire clients and service discovery.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Test email sending locally using Mailpit with .NET Aspire. Captures all outgoing emails without sending them. View rendered HTML, inspect headers, and verify delivery in integration tests.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Create a shared ServiceDefaults project for Aspire applications. Centralizes OpenTelemetry, health checks, resilience, and service discovery configuration across all services.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Design .NET types for performance. Seal classes, use readonly structs, prefer static pure functions, avoid premature enumeration, and choose the right collection types.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Database access patterns for performance. Separate read/write models, avoid N+1 queries, use AsNoTracking, apply row limits, and never do application-side joins. Works with EF Core and Dapper.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Entity Framework Core best practices including NoTracking by default, query splitting for navigation collections, migration management, dedicated migration services, and common pitfalls to avoid.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Managing local .NET tools with dotnet-tools.json for consistent tooling across development environments and CI/CD pipelines.

原文语言:英语

更新
职业分类
其他计算机职业
描述

Workflow for publishing skills and agents to the dotnet-skills Claude Code marketplace. Covers adding new content, updating plugin.json, validation, and release tagging.

原文语言:英语

更新
职业分类
网页开发工程师
描述

Build responsive email templates using MJML markup language. Compiles to cross-client HTML that works in Outlook, Gmail, and Apple Mail. Includes template renderer, layout patterns, and variable substitution.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Manage NuGet packages using Central Package Management (CPM) and dotnet CLI commands. Never edit XML directly - use dotnet add/remove/list commands. Use shared version variables for related packages.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Write UI tests for Blazor applications (Server or WebAssembly) using Playwright. Covers navigation, interaction, authentication, selectors, and common Blazor-specific patterns.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Cache Playwright browser binaries in CI/CD pipelines (GitHub Actions, Azure DevOps) to avoid 1-2 minute download overhead on every build.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Modern .NET project structure including .slnx solution format, Directory.Build.props, central package management, SourceLink, version management with RELEASE_NOTES.md, and SDK pinning with global.json.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Choose the right serialization format for .NET applications. Prefer schema-based formats (Protobuf, MessagePack) over reflection-based (Newtonsoft.Json). Use System.Text.Json with AOT source generators for JSON scenarios.

原文语言:英语

更新
职业分类
其他计算机职业
描述

Create and maintain AGENTS.md / CLAUDE.md snippet indexes that route tasks to the correct dotnet-skills skills and agents (including compressed Vercel-style indexes).

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Use Slopwatch to detect LLM reward hacking in .NET code changes. Run after every code modification to catch disabled tests, suppressed warnings, empty catch blocks, and other shortcuts that mask real problems.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Use Verify for snapshot testing in .NET. Approve API surfaces, HTTP responses, rendered emails, and serialized outputs. Detect unintended changes through human-reviewed baseline files.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Snapshot test email templates using Verify to catch regressions. Validates rendered HTML output matches approved baseline. Works with MJML templates and any email renderer.

原文语言:英语

更新
已展示 36 / 36 个已收集 Skill。