Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 25 additions & 22 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -10,43 +10,46 @@
/tests/dotnet-msbuild/ @ViktorHofer @JanKrivanek
/agentic-workflows/dotnet-msbuild/ @ViktorHofer @JanKrivanek

/plugins/dotnet/skills/analyzing-dotnet-performance/ @dotnet/dotnet-diag
/tests/dotnet/analyzing-dotnet-performance/ @dotnet/dotnet-diag

# dotnet (common everyday C#/.NET)
/plugins/dotnet/skills/csharp-scripts/ @dotnet/roslyn
/tests/dotnet/csharp-scripts/ @dotnet/roslyn

/plugins/dotnet/skills/dotnet-pinvoke/ @dotnet/appmodel
/tests/dotnet/dotnet-pinvoke/ @dotnet/appmodel

/plugins/dotnet/skills/dump-collect/ @dotnet/dotnet-diag
/tests/dotnet/dump-collect/ @dotnet/dotnet-diag

/plugins/dotnet/skills/dotnet-trace-collect/ @brianrob
/tests/dotnet/dotnet-trace-collect/ @brianrob

/plugins/dotnet/skills/optimizing-ef-core-queries/ @dotnet/efteam
/tests/dotnet/optimizing-ef-core-queries/ @dotnet/efteam

/plugins/dotnet/skills/thread-abort-migration/ @dotnet/appmodel
/tests/dotnet/thread-abort-migration/ @dotnet/appmodel

/plugins/dotnet/skills/migrate-nullable-references/ @danmoseley
/tests/dotnet/migrate-nullable-references/ @danmoseley

/plugins/dotnet/skills/android-tombstone-symbolication/ @dotnet/dotnet-diag
/tests/dotnet/android-tombstone-symbolication/ @dotnet/dotnet-diag

/plugins/dotnet/skills/clr-activation-debugging/ @marklio @ChrisAhna
/tests/dotnet/clr-activation-debugging/ @marklio @ChrisAhna

/plugins/dotnet/skills/microbenchmarking/ @dotnet/dotnet-perf-team
/tests/dotnet/microbenchmarking/ @dotnet/dotnet-perf-team

/plugins/dotnet/skills/nuget-trusted-publishing/ @lewing @kartheekp-ms
/tests/dotnet/nuget-trusted-publishing/ @lewing @kartheekp-ms

/plugins/dotnet/skills/dotnet-aot-compat/ @agocke @dotnet/appmodel
/tests/dotnet/dotnet-aot-compat/ @agocke @dotnet/appmodel

/plugins/dotnet/agents/optimizing-dotnet-performance.agent.md @dotnet/appmodel
# dotnet-diag (perf investigations, debugging, incident analysis)
/plugins/dotnet-diag/skills/analyzing-dotnet-performance/ @dotnet/dotnet-diag
/tests/dotnet-diag/analyzing-dotnet-performance/ @dotnet/dotnet-diag

/plugins/dotnet-diag/skills/dump-collect/ @dotnet/dotnet-diag
/tests/dotnet-diag/dump-collect/ @dotnet/dotnet-diag

/plugins/dotnet-diag/skills/dotnet-trace-collect/ @brianrob
/tests/dotnet-diag/dotnet-trace-collect/ @brianrob

/plugins/dotnet-diag/skills/android-tombstone-symbolication/ @dotnet/dotnet-diag
/tests/dotnet-diag/android-tombstone-symbolication/ @dotnet/dotnet-diag

/plugins/dotnet-diag/skills/clr-activation-debugging/ @marklio @ChrisAhna
/tests/dotnet-diag/clr-activation-debugging/ @marklio @ChrisAhna

/plugins/dotnet-diag/skills/microbenchmarking/ @dotnet/dotnet-perf-team
/tests/dotnet-diag/microbenchmarking/ @dotnet/dotnet-perf-team

/plugins/dotnet-diag/agents/optimizing-dotnet-performance.agent.md @dotnet/appmodel

# dotnet-data (data access, Entity Framework)
/plugins/dotnet-data/skills/optimizing-ef-core-queries/ @dotnet/efteam
/tests/dotnet-data/optimizing-ef-core-queries/ @dotnet/efteam
7 changes: 7 additions & 0 deletions plugins/dotnet-aspnet/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "dotnet-aspnet",
"version": "0.1.0",
"description": "Skills for ASP.NET related tasks.",
"skills": "./skills/",
"agents": "./agents/"
}
7 changes: 7 additions & 0 deletions plugins/dotnet-data/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "dotnet-data",
"version": "0.1.0",
"description": "Skills for data access and Entity Framework related tasks.",
"skills": "./skills/",
"agents": "./agents/"
}
7 changes: 7 additions & 0 deletions plugins/dotnet-diag/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "dotnet-diag",
"version": "0.1.0",
"description": "Skills for .NET performance investigations, debugging, and incident analysis.",
"skills": "./skills/",
"agents": "./agents/"
}
7 changes: 7 additions & 0 deletions plugins/dotnet-maui/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "dotnet-maui",
"version": "0.1.0",
"description": "Skills for .NET MAUI related tasks.",
"skills": "./skills/",
"agents": "./agents/"
}
7 changes: 7 additions & 0 deletions plugins/dotnet-winforms/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "dotnet-winforms",
"version": "0.1.0",
"description": "Skills for Windows Forms (WinForms) related tasks.",
"skills": "./skills/",
"agents": "./agents/"
}
7 changes: 7 additions & 0 deletions plugins/dotnet-wpf/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "dotnet-wpf",
"version": "0.1.0",
"description": "Skills for WPF related tasks.",
"skills": "./skills/",
"agents": "./agents/"
}
2 changes: 1 addition & 1 deletion plugins/dotnet/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dotnet",
"version": "0.1.0",
"description": "Collection of core .NET skills for handling common .NET coding tasks.",
"description": "Common everyday C#/.NET coding skills. Expected to be useful to all .NET developers.",
"skills": "./skills/",
"agents": "./agents/"
}