Skip to content

Commit fc0ffa8

Browse files
authored
Merge pull request #734 from JanKrivanek/dev/jankrivanek/csharp-unittest-info
Add missing csharp unittesting info pointers
2 parents aed6397 + a19577b commit fc0ffa8

File tree

7 files changed

+22
-9
lines changed

7 files changed

+22
-9
lines changed

.github/plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"name": "csharp-dotnet-development",
5151
"source": "./plugins/csharp-dotnet-development",
5252
"description": "Essential prompts, instructions, and chat modes for C# and .NET development including testing, documentation, and best practices.",
53-
"version": "1.0.0"
53+
"version": "1.1.0"
5454
},
5555
{
5656
"name": "csharp-mcp-development",

docs/README.plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Curated plugins of related prompts, agents, and skills organized around specific
2323
| [cast-imaging](../plugins/cast-imaging/README.md) | A comprehensive collection of specialized agents for software analysis, impact assessment, structural quality advisories, and architectural review using CAST Imaging. | 3 items | cast-imaging, software-analysis, architecture, quality, impact-analysis, devops |
2424
| [clojure-interactive-programming](../plugins/clojure-interactive-programming/README.md) | Tools for REPL-first Clojure workflows featuring Clojure instructions, the interactive programming chat mode and supporting guidance. | 3 items | clojure, repl, interactive-programming |
2525
| [context-engineering](../plugins/context-engineering/README.md) | Tools and techniques for maximizing GitHub Copilot effectiveness through better context management. Includes guidelines for structuring code, an agent for planning multi-file changes, and prompts for context-aware development. | 5 items | context, productivity, refactoring, best-practices, architecture |
26-
| [csharp-dotnet-development](../plugins/csharp-dotnet-development/README.md) | Essential prompts, instructions, and chat modes for C# and .NET development including testing, documentation, and best practices. | 8 items | csharp, dotnet, aspnet, testing |
26+
| [csharp-dotnet-development](../plugins/csharp-dotnet-development/README.md) | Essential prompts, instructions, and chat modes for C# and .NET development including testing, documentation, and best practices. | 11 items | csharp, dotnet, aspnet, testing |
2727
| [csharp-mcp-development](../plugins/csharp-mcp-development/README.md) | Complete toolkit for building Model Context Protocol (MCP) servers in C# using the official SDK. Includes instructions for best practices, a prompt for generating servers, and an expert chat mode for guidance. | 3 items | csharp, mcp, model-context-protocol, dotnet, server-development |
2828
| [database-data-management](../plugins/database-data-management/README.md) | Database administration, SQL optimization, and data management tools for PostgreSQL, SQL Server, and general database development best practices. | 8 items | database, sql, postgresql, sql-server, dba, optimization, queries, data-management |
2929
| [dataverse-sdk-for-python](../plugins/dataverse-sdk-for-python/README.md) | Comprehensive collection for building production-ready Python integrations with Microsoft Dataverse. Includes official documentation, best practices, advanced features, file operations, and code generation prompts. | 17 items | dataverse, python, integration, sdk |

plugins/csharp-dotnet-development/.github/plugin/plugin.json

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
{
22
"name": "csharp-dotnet-development",
33
"description": "Essential prompts, instructions, and chat modes for C# and .NET development including testing, documentation, and best practices.",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"author": {
66
"name": "Awesome Copilot Community"
77
},
88
"repository": "https://github.com/github/awesome-copilot",
99
"license": "MIT",
10-
"tags": [
11-
"csharp",
12-
"dotnet",
13-
"aspnet",
14-
"testing"
15-
],
10+
"tags": ["csharp", "dotnet", "aspnet", "testing"],
1611
"display": {
1712
"ordering": "alpha",
1813
"show_badge": false
@@ -42,6 +37,18 @@
4237
"path": "prompts/csharp-xunit.prompt.md",
4338
"kind": "prompt"
4439
},
40+
{
41+
"path": "prompts/csharp-nunit.prompt.md",
42+
"kind": "prompt"
43+
},
44+
{
45+
"path": "prompts/csharp-mstest.prompt.md",
46+
"kind": "prompt"
47+
},
48+
{
49+
"path": "prompts/csharp-tunit.prompt.md",
50+
"kind": "prompt"
51+
},
4552
{
4653
"path": "prompts/dotnet-best-practices.prompt.md",
4754
"kind": "prompt"

plugins/csharp-dotnet-development/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ copilot plugin install csharp-dotnet-development@awesome-copilot
1818
| `/csharp-dotnet-development:csharp-async` | Get best practices for C# async programming |
1919
| `/csharp-dotnet-development:aspnet-minimal-api-openapi` | Create ASP.NET Minimal API endpoints with proper OpenAPI documentation |
2020
| `/csharp-dotnet-development:csharp-xunit` | Get best practices for XUnit unit testing, including data-driven tests |
21+
| `/csharp-dotnet-development:csharp-nunit` | Get best practices for NUnit unit testing, including data-driven tests |
22+
| `/csharp-dotnet-development:csharp-mstest` | Get best practices for MSTest 3.x/4.x unit testing, including modern assertion APIs and data-driven tests |
23+
| `/csharp-dotnet-development:csharp-tunit` | Get best practices for TUnit unit testing, including data-driven tests |
2124
| `/csharp-dotnet-development:dotnet-best-practices` | Ensure .NET/C# code meets best practices for the solution/project. |
2225
| `/csharp-dotnet-development:dotnet-upgrade` | Ready-to-use prompts for comprehensive .NET framework upgrade analysis and execution |
2326

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../prompts/csharp-mstest.prompt.md
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../prompts/csharp-nunit.prompt.md
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../prompts/csharp-tunit.prompt.md

0 commit comments

Comments
 (0)