Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

dotnet-modernize点网现代化

Agent Skill

dotnet-modernize 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

419

周安装

18

GitHub Stars

16

下载量

147
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dotnet-modernize(点网现代化)
来源仓库:https://github.com/wshaddix/dotnet-skills
仓库路径:skills/dotnet-modernize
安装命令:
npx skills add https://github.com/wshaddix/dotnet-skills --skill dotnet-modernize
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wshaddix/dotnet-skills --skill dotnet-modernize

简介

用于查找、检索和筛选相关信息。dotnet-modernize 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或场景快速定位候选结果。
  • 可结合来源仓库进一步核验具体用法。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 安装前建议确认权限范围与维护状态。
  • 注意:仅标识现代化机会,不提供迁移路径。

SKILL.md

dotnet-modernize

Analyze existing.NET code for modernization opportunities. Identifies outdated target frameworks, deprecated packages, superseded API patterns, and missing modern best practices. Provides actionable recommendations for each finding.

Scope boundary: This skill flags opportunities only. For actual migration paths, polyfill strategies, multi-targeting guidance, and step-by-step version upgrade procedures, see [skill:dotnet-version-upgrade] and [skill:dotnet-multi-targeting].

Prerequisites: Run [skill:dotnet-version-detection] first to determine the current SDK, TFM, and language version. Run [skill:dotnet-project-analysis] to understand solution structure and dependencies.

Cross-references: [skill:dotnet-project-structure] for modern layout conventions, [skill:dotnet-add-analyzers] for analyzer-based detection of deprecated patterns, [skill:dotnet-scaffold-project] for the target state of a fully modernized project.


Modernization Checklist

Run through this checklist against the existing codebase. Each section identifies what to look for and what the modern replacement is.

1. Target Framework

Check <TargetFramework> in .csproj files (or Directory.Build.props):

Current TFMStatusRecommendation
net8.0LTS -- supported until Nov 2026Plan upgrade to net10.0 (LTS)
net9.0STS -- support ends May 2026Upgrade to net10.0 promptly
net7.0End of lifeUpgrade immediately
net6.0End of lifeUpgrade immediately
net5.0 or lowerEnd of lifeUpgrade immediately
netstandard2.0/2.1Supported (library compat)Keep if multi-targeting for broad reach
netcoreapp3.1End of lifeUpgrade immediately
.NET Framework 4.xLegacyEvaluate migration feasibility

To scan all projects:

# Find all TFMs in the solution
find . -name "*.csproj" -exec grep -h "TargetFramework" {} \; | sort -u

# Check Directory.Build.props
grep "TargetFramework" Directory.Build.props 2>/dev/null

2. Deprecated and Superseded Packages

Scan Directory.Packages.props (or individual .csproj files) for packages that have been superseded:

Deprecated PackageReplacementSince
Microsoft.Extensions.Http.PollyMicrosoft.Extensions.Http.Resilience.NET 8
Newtonsoft.Json (new projects)System.Text.Json.NET Core 3.0+
Microsoft.AspNetCore.Mvc.NewtonsoftJsonBuilt-in STJ.NET Core 3.0+
Swashbuckle.AspNetCoreBuilt-in OpenAPI (Microsoft.AspNetCore.OpenApi) for document generation; keep Swashbuckle if using Swagger UI, filters, or codegen.NET 9
NSwag.AspNetCoreBuilt-in OpenAPI for document generation; keep NSwag if using client generation or Swagger UI features.NET 9
Microsoft.Extensions.Logging.Log4Net.AspNetCoreBuilt-in logging + Serilog or OpenTelemetry.NET Core 2.0+
Microsoft.AspNetCore.Authentication.JwtBearer (explicit NuGet package)Remove explicit PackageReference — included in Microsoft.AspNetCore.App shared framework.NET Core 3.0+
System.Data.SqlClientMicrosoft.Data.SqlClient.NET Core 3.0+
Microsoft.Azure.Storage.*Azure.Storage.*2020+
WindowsAzure.StorageAzure.Storage.Blobs / Azure.Storage.Queues2020+
Microsoft.Azure.ServiceBusAzure.Messaging.ServiceBus2020+
Microsoft.Azure.EventHubsAzure.Messaging.EventHubs2020+
EntityFramework (EF6)Microsoft.EntityFrameworkCore.NET Core 1.0+
RestSharp (older versions)HttpClient + System.Text.Json.NET Core+
AutoMapperManual mapping or source-generated mappersPreference

To scan for deprecated packages:

# List all package references
grep -rh "PackageVersion\|PackageReference" \
  Directory.Packages.props $(find . -name "*.csproj") 2>/dev/null | \
  grep -i "Include=" | sort -u

Note on Newtonsoft.Json: Existing projects with deep Newtonsoft.Json usage (custom converters, JObject manipulation) may not benefit from immediate migration. Flag it but assess the migration cost.


3. Superseded API Patterns

Look for code patterns that have modern replacements:

Startup.cs / Program.cs Pattern

Old (pre-.NET 6):

public class Startup
{
    public void ConfigureServices(IServiceCollection services) { }
    public void Configure(IApplicationBuilder app) { }
}

Modern (minimal hosting):

var builder = WebApplication.CreateBuilder(args);
// ConfigureServices equivalent
var app = builder.Build();
// Configure equivalent
app.Run();

HttpClient Registration

Old:

services.AddHttpClient<MyService>(client =>
{
    client.BaseAddress = new Uri("https://api.example.com");
})
.AddTransientHttpErrorPolicy(p => p.WaitAndRetryAsync(3, _ => TimeSpan.FromMilliseconds(300)));

Modern (with Microsoft.Extensions.Resilience):

services.AddHttpClient<MyService>(client =>
{
    client.BaseAddress = new Uri("https://api.example.com");
})
.AddStandardResilienceHandler();

Synchronous I/O

Flag: File.ReadAllText, Stream.Read, HttpClient without Async suffix.

Modern: Use async variants -- File.ReadAllTextAsync, Stream.ReadAsync, await httpClient.GetAsync().

String Concatenation in Hot Paths

Flag: String concatenation (+) or String.Format in logging, loops.

Modern: Use string interpolation with LoggerMessage source generators, or StringBuilder.

Legacy Collection Patterns

Flag: Hashtable, ArrayList, non-generic collections.

Modern: Dictionary<TKey, TValue>, List<T>, generic collections.

ILogger Pattern

Old:

_logger.LogInformation("Processing order {OrderId}", orderId);

Modern (high-performance):

[LoggerMessage(Level = LogLevel.Information, Message = "Processing order {OrderId}")]
static partial void LogProcessingOrder(ILogger logger, string orderId);

4. Missing Modern Build Configuration

Check for the absence of recommended build infrastructure:

MissingCheckRecommendation
Central Package ManagementNo Directory.Packages.propsSee [skill:dotnet-project-structure]
Directory.Build.propsProperties scattered across .csproj filesCentralize shared properties
.editorconfigNo .editorconfig at repo rootSee [skill:dotnet-project-structure]
global.jsonNo SDK pinningAdd for reproducible builds
NuGet auditNo NuGetAudit propertyEnable in Directory.Build.props
Lock filesNo RestorePackagesWithLockFileEnable for deterministic restores
Package source mappingNo packageSourceMapping in nuget.configAdd for supply-chain security
AnalyzersNo AnalysisLevel or EnforceCodeStyleInBuildSee [skill:dotnet-add-analyzers]
SourceLinkNo SourceLink package referenceAdd for debugger source navigation
Nullable reference types<Nullable> not enabledEnable globally
.slnxStill using .sln with.NET 9+ SDKMigrate with dotnet sln migrate

5. Deprecated C# Language Patterns

Old PatternModern ReplacementLanguage Version
switch statement with caseswitch expressionC# 8
null!= x / x!= null checksx is not nullC# 9
new ClassName() with obvious typeTarget-typed new()C# 9
Block-scoped namespacesFile-scoped namespacesC# 10
record class explicit constructorrecord with positional parametersC# 10
Manual string concatenation for multi-lineRaw string literals ("""...""")C# 11
Explicit interface dispatch for INumber<T>Generic math interfacesC# 11
[Flags] enum manual checksImproved enum pattern matchingC# 11+
Lambda without natural typeNatural function typesC# 10+
ValueTask manual wrappingTask/ValueTask with ConfigureAwait patternsC# all
Primary constructor classes (manual)Primary constructors on class/structC# 12
Multiple if/else if type checksswitch on type with list patternsC# 11+
params T[]params ReadOnlySpan<T>, params collectionsC# 13
Lock with objectSystem.Threading.LockC# 13

6. Security and Compliance

IssueDetectionFix
Known vulnerabilitiesdotnet list package --vulnerableUpdate affected packages
Deprecated packagesdotnet list package --deprecatedReplace with successors
Outdated packagesdotnet list package --outdatedEvaluate updates
Missing HTTPS redirectionNo app.UseHttpsRedirection()Add to pipeline
Missing HSTSNo app.UseHsts()Add for production
Hardcoded secretsConnection strings in appsettings.jsonUse User Secrets or Key Vault
# Run all NuGet audits
dotnet list package --vulnerable --include-transitive
dotnet list package --deprecated
dotnet list package --outdated

Running a Modernization Scan

Combine the checks into a systematic scan:

# 1. Check TFMs
echo "=== Target Frameworks ==="
find . -name "*.csproj" -exec grep -Hl "TargetFramework" {} \; | while read f; do
  echo "$f: $(grep -o '<TargetFramework[s]*>[^<]*' "$f" | head -1)"
done

# 2. Check for deprecated packages
echo "=== Package Audit ==="
dotnet list package --deprecated 2>/dev/null
dotnet list package --vulnerable --include-transitive 2>/dev/null

# 3. Check build infrastructure
echo "=== Build Infrastructure ==="
test -f Directory.Build.props && echo "OK: Directory.Build.props" || echo "MISSING: Directory.Build.props"
test -f Directory.Packages.props && echo "OK: Directory.Packages.props (CPM)" || echo "MISSING: Directory.Packages.props"
test -f .editorconfig && echo "OK: .editorconfig" || echo "MISSING: .editorconfig"
test -f global.json && echo "OK: global.json" || echo "MISSING: global.json"
test -f nuget.config && echo "OK: nuget.config" || echo "MISSING: nuget.config"

# 4. Check for old patterns in code
echo "=== Code Patterns ==="
grep -rl "class Startup" --include="*.cs" . 2>/dev/null && echo "FOUND: Legacy Startup.cs pattern"
grep -rl "Microsoft.Extensions.Http.Polly" --include="*.csproj" --include="*.props" . 2>/dev/null && echo "FOUND: Deprecated Polly package"
grep -rl "Swashbuckle" --include="*.csproj" --include="*.props" . 2>/dev/null && echo "FOUND: Swashbuckle (consider built-in OpenAPI for .NET 9+)"
grep -rl "System.Data.SqlClient" --include="*.csproj" --include="*.props" . 2>/dev/null && echo "FOUND: System.Data.SqlClient (use Microsoft.Data.SqlClient)"

Prioritizing Modernization

Not all modernization is equally urgent. Prioritize by impact:

  1. Security -- vulnerable packages, end-of-life TFMs (no security patches)
  2. Supportability -- deprecated packages with no upstream maintenance
  3. Performance -- patterns with significant perf impact (sync-over-async, legacy collections in hot paths)
  4. Developer experience -- build infrastructure (CPM, analyzers, editorconfig) improves daily workflow
  5. Code style -- language pattern updates are lowest priority but reduce cognitive load over time

What's Next

This skill flags modernization opportunities. For executing upgrades:

  • TFM version upgrades and migration paths -- [skill:dotnet-version-upgrade]
  • Multi-targeting strategies -- [skill:dotnet-multi-targeting]
  • Polyfill packages for cross-version support -- [skill:dotnet-multi-targeting]
  • Adding missing build infrastructure -- [skill:dotnet-project-structure], [skill:dotnet-scaffold-project]
  • Configuring analyzers -- [skill:dotnet-add-analyzers]
  • Adding CI/CD -- [skill:dotnet-add-ci]

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.66%
按下载量换算48

Claude

30.76%
按下载量换算45

Cursor

19.32%
按下载量换算28

Gemini CLI

9.01%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills