-
Notifications
You must be signed in to change notification settings - Fork 558
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves: Add GitHub Codespaces configuration (#167)
* Create Codespaces configuration (#10) * locked image version to latest tagged
- Loading branch information
1 parent
3ea7fda
commit fe38ed5
Showing
1 changed file
with
23 additions
and
0 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,23 @@ | ||
{ | ||
"name": "RulesEngine Codespace", | ||
"image": "mcr.microsoft.com/vscode/devcontainers/dotnet:0.201.7-3.1", | ||
"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 RulesEngine.sln && dotnet build RulesEngine.sln --configuration Release --no-restore && dotnet test RulesEngine.sln --configuration Release --no-build --verbosity minimal", | ||
} | ||
// Built with ❤ by [Pipeline Foundation](https://pipeline.foundation) |