forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
57 lines (57 loc) · 1.61 KB
/
Copy pathdevcontainer.json
File metadata and controls
57 lines (57 loc) · 1.61 KB
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
{
"name": "C# (.NET)",
"image": "mcr.microsoft.com/devcontainers/dotnet:latest",
"customizations": {
"vscode": {
"settings": {
"githubIssues.queries": [
{
"label": "My dotnet/docs Issues",
"query": "is:open assignee:${user} repo:dotnet/docs"
},
{
"label": "My seQUESTered dotnet/docs Issues",
"query": "is:open assignee:${user} repo:dotnet/docs sort:updated-desc -label:needs-more-info label:\":pushpin: seQUESTered\""
},
{
"label": "Created dotnet/docs Issues",
"query": "author:${user} state:open repo:dotnet/docs sort:created-desc"
},
{
"label": "Recent Issues",
"query": "state:open repo:dotnet/docs sort:updated-desc"
}
],
"githubPullRequests.queries": [
{
"label": "Waiting for dotnet/docs Review",
"query": "repo:dotnet/docs is:open team-review-requested:dotnet/docs"
},
{
"label": "Waiting For Just My Review (dotnet/docs)",
"query": "repo:dotnet/docs is:open review-requested:${user} -team-review-requested:dotnet/docs"
},
{
"label": "Assigned To Me (dotnet/docs)",
"query": "repo:dotnet/docs is:open assignee:${user}"
},
{
"label": "Created By Me (dotnet/docs)",
"query": "repo:dotnet/docs is:open author:${user}"
}
]
},
"extensions": [
"Acrolinx.vscode-sidebar",
"DotJoshJohnson.xml",
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.vscode-pull-request-github",
"IEvangelist.xref-helper",
"docsmsft.docs-authoring-pack",
"ms-dotnettools.csdevkit",
"ms-dotnettools.csharp"
]
}
}
}