-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.gitpod.yml
29 lines (26 loc) · 1.13 KB
/
.gitpod.yml
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
28
29
image:
file: .gitpod.Dockerfile
# List the start up tasks. You can start them in parallel in multiple terminals.
# https://www.gitpod.io/docs/config-start-tasks/
tasks:
- init: >
dotnet restore "./src/ServerlessWorkflow.Sdk.sln" &&
dotnet build "./src/ServerlessWorkflow.Sdk.sln" --configuration Release --no-restore &&
dotnet test "./src/ServerlessWorkflow.Sdk.sln" --no-restore --verbosity normal
command: dotnet watch --project "./src/ServerlessWorkflow.Sdk.sln" test --no-restore --verbosity normal
# Enable prebuilds of your project to enable faster workspace start times.
# https://www.gitpod.io/docs/prebuilds/#configure-the-github-app
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: true
# The official C# extension from Microsoft is proprietary and unfortunately cannot be used.
# The MIT licensed muhammad-sammy.csharp extension from Samsung brings code completion,
# snippets, auto-formatting, peek definition, refactoring, hover documentation and
# breakpoint debugging for C# however!
vscode:
extensions:
- muhammad-sammy.csharp