-
Notifications
You must be signed in to change notification settings - Fork 5.9k
/
CODEOWNERS
Validating CODEOWNERS rules...
203 lines (173 loc) · 5.01 KB
/
CODEOWNERS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.
# More details are here: https://help.github.com/articles/about-codeowners/
# The '*' pattern is global owners.
* @dotnet/docs
# Order is important. The last matching pattern has the most precedence.
# The folders are ordered as follows:
# . Guides
# . .NET Core sections
# . .NET Framework sections
# . .NET Standard
# . Architecture e-books
# In each subsection, folders are order first by depth, then alphabetically.
# This should make it easy to add new rules without breaking existing ones.
######## API landing page ###########
/api/ @dotnet/docs
############ What's new ###############
/docs/whats-new/ @billwagner
############ Guides ################
# .NET Core
/docs/core/ @dotnet/docs
# .NET Framework
/docs/framework/ @dotnet/docs
# .NET Standard
/docs/standard/ @gewarren
# The C# Guide:
/docs/csharp/ @BillWagner
# The F# Guide:
/docs/fsharp/ @cartermp
# The Visual Basic Guide:
/docs/visual-basic/ @KathleenDollard @BillWagner
# The ML.NET Guide:
/docs/machine-learning/ @luisquintanilla
# The .NET for Apache Spark Guide:
/docs/spark/ @luisquintanilla
# The .NET Architecture Guide:
/docs/architecture/ @nishanil
# The Desktop WPF Guide:
/docs/desktop-wpf/ @adegeo
# Azure Guide
/docs/azure/ @CamSoper
# Includes files
/includes/ @dotnet/docs
############### .NET 5 ################
# Code analysis
/docs/fundamentals/productivity/ @gewarren
############### .NET Core ########################
# What's New
/docs/core/whats-new/ @adegeo
# Deployment
/docs/core/deploying/ @adegeo
# Diagnostics
/docs/core/diagnostics/ @sdmaclea @dotnet/docs
# Docker
/docs/core/docker/ @IEvangelist
# Install
/docs/core/install/ @adegeo
# Breaking changes
/docs/core/compatibility/ @gewarren
# Project SDKs
/docs/core/project-sdk/ @gewarren
# Config settings
/docs/core/run-time-config/ @gewarren
# Tools
/docs/core/tools/ @tdykstra
# Tutorials
/docs/core/tutorials/ @tdykstra
################### .NET Framework ##################
# App domains
/docs/framework/app-domains/ @gewarren
# Config - WinForms
/docs/framework/configure-apps/file-schema/winforms/ @adegeo
# Deployment
/docs/framework/deployment/ @adegeo
# Installation
/docs/framework/install/ @adegeo
# Migration guide
/docs/framework/migration-guide/ @gewarren
# Reflection
/docs/framework/reflection-and-codedom/ @adegeo
# Resources
/docs/framework/resources/ @adegeo
# Tools
/docs/framework/tools/ @tdykstra
# UI Automation
/docs/framework/ui-automation/ @adegeo
# What's New
/docs/framework/whats-new/ @gewarren
# Winforms
/docs/framework/winforms/ @adegeo
# WPF
/docs/framework/wpf/ @adegeo
# XAML Services
/docs/framework/xaml-services/ @adegeo
# ADO.NET
/docs/framework/data/ @stevestein
# NCL
/docs/framework/configure-apps/file-schema/network/ @karelz
/docs/framework/network-programming/ @karelz
# WCF
/docs/framework/configure-apps/file-schema/wcf/ @HongGit
/docs/framework/wcf/ @HongGit
################## .NET Standard ##################
# Analyzers
/docs/standard/analyzers/ @IEvangelist
# Assembly
/docs/standard/assembly/ @IEvangelist
# Asynchronous Programming Patterns
/docs/standard/asynchronous-programming-patterns/ @BillWagner
# Attributes
/docs/standard/attributes/ @tdykstra
# Base types
/docs/standard/base-types/ @adegeo
# Collections
/docs/standard/collections/ @IEvangelist
# Data
/docs/standard/data/ @gewarren
# Data - SQLite
/docs/standard/data/sqlite/ @bricelam
# Datetime
/docs/standard/datetime/ @adegeo
# Design guidelines
/docs/standard/design-guidelines/ @BillWagner
# Events
/docs/standard/events/ @IEvangelist
# Exceptions
/docs/standard/exceptions/ @tdykstra
# GC
/docs/standard/garbage-collection/ @gewarren
# Generics
/docs/standard/generics/ @adegeo
# Globalization
/docs/standard/globalization-localization/ @dotnet/docs
# I/O
/docs/standard/io/ @adegeo
# Library guidance
/docs/standard/library-guidance/ @jamesnk
# LINQ
/docs/standard/linq/ @dotnet/docs
# Memory and spans
/docs/standard/memory-and-spans/ @tdykstra
# Native Interop
/docs/standard/native-interop/ @jkoritzinsky
# Parallel programming
/docs/standard/parallel-programming/ @IEvangelist
# Security
/docs/standard/security/ @IEvangelist
# Serialization
/docs/standard/serialization/ @tdykstra
# Threading
/docs/standard/threading/ @BillWagner
# What's New
/docs/standard/whats-new/ @dotnet/docs
################## E-books ##################
# Blazor:
/docs/architecture/blazor-for-web-forms-developers/ @danroth27
# gRPC:
/docs/architecture/grpc-for-wcf-developers/ @shirhatti
# Desktop:
/docs/architecture/modernize-desktop/ @OliaG
################# Samples folder ##############
## These have been pulled directly from the samples repo:
/samples/snippets/csharp/ @BillWagner @IEvangelist
# Visual Basic snippets:
/samples/snippets/visualbasic/ @BillWagner
# F# Snippets:
/samples/snippets/fsharp/ @cartermp
# WPF folders:
/samples/snippets/xaml/wpf/ @adegeo
/samples/snippets/csharp/wpf/ @adegeo
/samples/snippets/visualbasic/wpf/ @adegeo
/samples/snippets/desktop-guide/wpf/ @adegeo
/samples/snippets/winforms/ @adegeo