-
Notifications
You must be signed in to change notification settings - Fork 6k
/
Copy pathCODEOWNERS
84 lines (69 loc) · 2.55 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
# 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.
# Not adding in this PR, but I'd like to try adding a global owner set with the entire team.
# One interpretation of their docs is that global owners are added only if not removed
# by a more local rule.
# Order is important. The last matching pattern has the most precedence.
# The folders are ordered as follows:
# . Guides are first.
# . .NET Core sections are next
# . .NET Framework sections
# . .NET Standard
# . samples
# In each subsection folders are order first by depth, then alphabetically.
# This should make it easy to add new rules without breaking existing ones.
############ GUIDES ################
# .NET Core
/docs/core/** @mairaw
# The C# Guide:
/docs/csharp/** @BillWagner
# The F# Guide:
/docs/fsharp/** @cartermp
# The Visual Basic Guide:
/docs/visual-basic/** @KathleenDollard
# The ML.NET Guide:
/docs/machine-learning/** @JRAlexander
# The .NET for Apache Spark Guide:
/docs/spark/** @mamccrea
############### .NET Core ########################
# What's New
/docs/core/whats-new/** @rpetrusha
# Deployment
/docs/core/deploying/** @rpetrusha
################### .NET FRAMEWORK ##################
# .NET Framework migration guide
/docs/framework/migration-guide/** @rpetrusha
# .NET Framework Security
/docs/framework/security/** @mairaw
# .NET Framework unmanaged API
/docs/framework/unmanaged-api/** @rpetrusha
# What's New
/docs/framework/whats-new/** @rpetrusha
# ADO.NET
/docs/framework/data/adonet/** @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/data/wcf/** @HongGit
/docs/framework/wcf/** @HongGit
################## .NET STANDARD ##################
# Analyzers:
/docs/standard/analyzers/** @BillWagner
# What's New
/docs/standard/whats-new/** @rpetrusha
# .NET I/O
/docs/standard/io/** @mairaw
# .NET base types - Formatting
/docs/standard/base-types/formatting-types/** @rpetrusha
# .NET threading
/docs/standard/threading/** @rpetrusha
################## .NET E-BOOKS ##################
/docs/standard/containerized-lifecycle-architecture/** @nishanil
/docs/standard/microservices-architecture/** @nishanil
/docs/standard/modern-web-apps-azure-architecture/** @nishanil
/docs/standard/modernize-with-azure-and-containers/** @nishanil
/docs/standard/serverless-architecture/** @nishanil