2024-06-21 22:17:29 +08:00
|
|
|
kind: pipeline
|
2024-06-21 22:39:30 +08:00
|
|
|
type: docker
|
2024-06-21 22:17:29 +08:00
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2024-06-21 22:39:30 +08:00
|
|
|
- name: restore
|
2024-06-21 22:17:29 +08:00
|
|
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
|
|
|
commands:
|
2024-06-21 22:39:30 +08:00
|
|
|
- dotnet restore
|
|
|
|
|
|
|
|
- name: build
|
|
|
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
|
|
|
commands:
|
|
|
|
- dotnet build --configuration Release
|