Skip to content

Commit 18dbf00

Browse files
committed
Merge branch 'main' of https://github.com/dotnet/docs into MarshallerShapes
2 parents a3edc7e + 7f30eb5 commit 18dbf00

File tree

10,251 files changed

+313862
-202991
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

10,251 files changed

+313862
-202991
lines changed

.devcontainer/Dockerfile

Lines changed: 0 additions & 16 deletions
This file was deleted.

.devcontainer/devcontainer.json

Lines changed: 49 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,57 @@
1-
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2-
// https://github.com/microsoft/vscode-dev-containers/tree/v0.241.1/containers/dotnet
31
{
4-
"name": ".NET Docs",
5-
"build": {
6-
"dockerfile": "Dockerfile",
7-
"args": {
8-
// Update 'VARIANT' to pick a .NET Core version: 3.1, 6.0
9-
// Append -bullseye or -focal to pin to an OS version.
10-
"VARIANT": "6.0-bullseye",
11-
// Options
12-
"NODE_VERSION": "none"
13-
}
14-
},
15-
16-
// Configure tool-specific properties.
2+
"name": "C# (.NET)",
3+
"image": "mcr.microsoft.com/devcontainers/dotnet:latest",
174
"customizations": {
18-
// Configure properties specific to VS Code.
19-
"vscode": {
20-
// Add the IDs of extensions you want installed when the container is created.
5+
"vscode": {
6+
"settings": {
7+
"githubIssues.queries": [
8+
{
9+
"label": "My dotnet/docs Issues",
10+
"query": "is:open assignee:${user} repo:dotnet/docs"
11+
},
12+
{
13+
"label": "My seQUESTered dotnet/docs Issues",
14+
"query": "is:open assignee:${user} repo:dotnet/docs sort:updated-desc -label:needs-more-info label:\":pushpin: seQUESTered\""
15+
},
16+
{
17+
"label": "Created dotnet/docs Issues",
18+
"query": "author:${user} state:open repo:dotnet/docs sort:created-desc"
19+
},
20+
{
21+
"label": "Recent Issues",
22+
"query": "state:open repo:dotnet/docs sort:updated-desc"
23+
}
24+
],
25+
"githubPullRequests.queries": [
26+
{
27+
"label": "Waiting for dotnet/docs Review",
28+
"query": "repo:dotnet/docs is:open team-review-requested:dotnet/docs"
29+
},
30+
{
31+
"label": "Waiting For Just My Review (dotnet/docs)",
32+
"query": "repo:dotnet/docs is:open review-requested:${user} -team-review-requested:dotnet/docs"
33+
},
34+
{
35+
"label": "Assigned To Me (dotnet/docs)",
36+
"query": "repo:dotnet/docs is:open assignee:${user}"
37+
},
38+
{
39+
"label": "Created By Me (dotnet/docs)",
40+
"query": "repo:dotnet/docs is:open author:${user}"
41+
}
42+
]
43+
},
2144
"extensions": [
45+
"Acrolinx.vscode-sidebar",
46+
"DotJoshJohnson.xml",
47+
"GitHub.copilot",
48+
"GitHub.copilot-chat",
49+
"GitHub.vscode-pull-request-github",
50+
"IEvangelist.xref-helper",
2251
"docsmsft.docs-authoring-pack",
23-
"eamodio.gitlens",
24-
"github.vscode-pull-request-github"
52+
"ms-dotnettools.csdevkit",
53+
"ms-dotnettools.csharp"
2554
]
2655
}
27-
},
28-
29-
// Use 'forwardPorts' to make a list of ports inside the container available locally.
30-
// "forwardPorts": [5000, 5001],
31-
32-
// [Optional] To reuse of your local HTTPS dev cert:
33-
//
34-
// 1. Export it locally using this command:
35-
// * Windows PowerShell:
36-
// dotnet dev-certs https --trust; dotnet dev-certs https -ep "$env:USERPROFILE/.aspnet/https/aspnetapp.pfx" -p "SecurePwdGoesHere"
37-
// * macOS/Linux terminal:
38-
// dotnet dev-certs https --trust; dotnet dev-certs https -ep "${HOME}/.aspnet/https/aspnetapp.pfx" -p "SecurePwdGoesHere"
39-
//
40-
// 2. Uncomment these 'remoteEnv' lines:
41-
// "remoteEnv": {
42-
// "ASPNETCORE_Kestrel__Certificates__Default__Password": "SecurePwdGoesHere",
43-
// "ASPNETCORE_Kestrel__Certificates__Default__Path": "/home/vscode/.aspnet/https/aspnetapp.pfx",
44-
// },
45-
//
46-
// 3. Do one of the following depending on your scenario:
47-
// * When using GitHub Codespaces and/or Remote - Containers:
48-
// 1. Start the container
49-
// 2. Drag ~/.aspnet/https/aspnetapp.pfx into the root of the file explorer
50-
// 3. Open a terminal in VS Code and run "mkdir -p /home/vscode/.aspnet/https && mv aspnetapp.pfx /home/vscode/.aspnet/https"
51-
//
52-
// * If only using Remote - Containers with a local container, uncomment this line instead:
53-
// "mounts": [ "source=${env:HOME}${env:USERPROFILE}/.aspnet/https,target=/home/vscode/.aspnet/https,type=bind" ],
54-
55-
// Use 'postCreateCommand' to run commands after the container is created.
56-
// "postCreateCommand": "dotnet restore",
57-
58-
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
59-
"remoteUser": "vscode",
60-
"features": {
61-
"azure-cli": "latest"
6256
}
6357
}

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ charset = utf-8-bom
2222
# Analyzers
2323
dotnet_analyzer_diagnostic.category-Security.severity = error
2424
dotnet_code_quality.ca1802.api_surface = private, internal
25+
# SYSLIB5001: Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
26+
dotnet_diagnostic.SYSLIB5001.severity = suggestion
2527

2628
# Miscellaneous style rules
2729
dotnet_sort_system_directives_first = true

0 commit comments

Comments
 (0)