Add RESX migration skill to C# plugin (#2812)

This commit is contained in:
Andrew Arnott
2026-08-27 11:34:46 +10:00
committed by GitHub
parent 108c73ad01
commit 6859615e53
4 changed files with 6 additions and 4 deletions
@@ -23,6 +23,7 @@ copilot plugin install csharp-dotnet-development@awesome-copilot
| `/csharp-dotnet-development:csharp-tunit` | Get best practices for TUnit unit testing, including data-driven tests |
| `/csharp-dotnet-development:dotnet-best-practices` | Ensure .NET/C# code meets best practices for the solution/project. |
| `/csharp-dotnet-development:dotnet-upgrade` | Ready-to-use prompts for comprehensive .NET framework upgrade analysis and execution |
| `/csharp-dotnet-development:resx-source-generator-migration` | Migrates a project that uses checked-in .designer.cs files behind .resx to using a source-generator instead |
### Agents
@@ -2,7 +2,7 @@
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "csharp-dotnet-development",
"description": "Essential prompts, instructions, and chat modes for C# and .NET development including testing, documentation, and best practices.",
"version": "1.1.0",
"version": "1.2.0",
"author": {
"name": "Awesome Copilot Community"
},
@@ -27,7 +27,8 @@
"./skills/csharp-tunit/",
"./skills/csharp-xunit/",
"./skills/dotnet-best-practices/",
"./skills/dotnet-upgrade/"
"./skills/dotnet-upgrade/",
"./skills/resx-source-generator-migration/"
]
}
}