-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathdevcontainer.json
More file actions
27 lines (26 loc) · 864 Bytes
/
devcontainer.json
File metadata and controls
27 lines (26 loc) · 864 Bytes
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
{
"name": "RestSharp Codespace",
"settings": {
"workbench.colorTheme": "Default Dark+",
"terminal.integrated.defaultProfile.linux": "pwsh"
},
"extensions": [
"eamodio.gitlens",
"ms-dotnettools.csharp",
"VisualStudioExptTeam.vscodeintellicode",
"ms-vscode.powershell",
"cschleiden.vscode-github-actions",
"redhat.vscode-yaml",
"bierner.markdown-preview-github-styles",
"ban.spellright",
"jmrog.vscode-nuget-package-manager",
"coenraads.bracket-pair-colorizer",
"vscode-icons-team.vscode-icons",
"editorconfig.editorconfig"
],
"postCreateCommand": "dotnet restore RestSharp.slnx && dotnet build RestSharp.slnx --configuration Release --no-restore && dotnet test RestSharp.slnx --configuration Release --no-build",
"build": {
"dockerfile": "Dockerfile"
}
}
// Built with ❤ by [Pipeline Foundation](https://pipeline.foundation)