14 строки
357 B
YAML
14 строки
357 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
working_directory: ~/ReactiveHistory
|
|
docker:
|
|
- image: microsoft/dotnet:sdk
|
|
environment:
|
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
|
|
DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
|
steps:
|
|
- checkout
|
|
- run: dotnet restore src/ReactiveHistory
|
|
- run: dotnet build src/ReactiveHistory/ReactiveHistory.csproj
|