Browse Source

Merge pull request #1338 from pipeline-foundation/feature/codespace

Resolves: Add GitHub Codespaces configuration
Charlie Kindel 4 years ago
parent
commit
2db44fd0f7
1 changed files with 24 additions and 0 deletions
  1. 24 0
      .devcontainer/devcontainer.json

+ 24 - 0
.devcontainer/devcontainer.json

@@ -0,0 +1,24 @@
+{
+	"name": "Terminal.Gui Codespace",
+	"image": "mcr.microsoft.com/vscode/devcontainers/dotnet:0.201.7-5.0",
+	"settings": {
+		"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 && dotnet build --configuration Release --no-restore && dotnet test --configuration Debug --no-restore --verbosity normal --collect:'XPlat Code Coverage' --settings UnitTests/coverlet.runsettings",
+}
+
+// Built with ❤ by [Pipeline Foundation](https://pipeline.foundation)