-
-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into disabling
- Loading branch information
Showing
266 changed files
with
16,825 additions
and
12,156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"powershell": { | ||
"version": "7.3.4", | ||
"commands": [ | ||
"pwsh" | ||
] | ||
}, | ||
"dotnet-format": { | ||
"version": "5.1.250801", | ||
"commands": [ | ||
"dotnet-format" | ||
] | ||
}, | ||
"dotnet-coverage": { | ||
"version": "17.7.0", | ||
"commands": [ | ||
"dotnet-coverage" | ||
] | ||
}, | ||
"nbgv": { | ||
"version": "3.5.119", | ||
"commands": [ | ||
"nbgv" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Refer to https://hub.docker.com/_/microsoft-dotnet-sdk for available versions | ||
FROM mcr.microsoft.com/dotnet/sdk:7.0.203-jammy | ||
|
||
# Installing mono makes `dotnet test` work without errors even for net472. | ||
# But installing it takes a long time, so it's excluded by default. | ||
#RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | ||
#RUN echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | tee /etc/apt/sources.list.d/mono-official-stable.list | ||
#RUN apt-get update | ||
#RUN DEBIAN_FRONTEND=noninteractive apt-get install -y mono-devel | ||
|
||
# Clear the NUGET_XMLDOC_MODE env var so xml api doc files get unpacked, allowing a rich experience in Intellisense. | ||
# See https://github.com/dotnet/dotnet-docker/issues/2790 for a discussion on this, where the prioritized use case | ||
# was *not* devcontainers, sadly. | ||
ENV NUGET_XMLDOC_MODE= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "Dev space", | ||
"dockerFile": "Dockerfile", | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/usr/bin/pwsh" | ||
}, | ||
"postCreateCommand": "./init.ps1 -InstallLocality machine", | ||
"extensions": [ | ||
"ms-azure-devops.azure-pipelines", | ||
"ms-dotnettools.csharp", | ||
"k--kato.docomment", | ||
"editorconfig.editorconfig", | ||
"pflannery.vscode-versionlens", | ||
"davidanson.vscode-markdownlint", | ||
"dotjoshjohnson.xml", | ||
"ms-vscode-remote.remote-containers", | ||
"ms-azuretools.vscode-docker", | ||
"ms-vscode.powershell" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: nuget | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
- package-ecosystem: npm | ||
directory: /src/nerdbank-gitversioning.npm | ||
schedule: | ||
interval: monthly |
Oops, something went wrong.