FastTunnel/.circleci/config.yml

20 lines
417 B
YAML
Raw Normal View History

2019-12-24 18:46:01 +08:00
version: 2.1
orbs:
win: circleci/windows@1.0.0
jobs:
build:
2019-12-24 18:51:33 +08:00
docker:
2021-04-27 14:34:31 +08:00
- image: mcr.microsoft.com/dotnet/sdk:5.0
2019-12-24 18:51:33 +08:00
environment:
2019-12-24 18:55:02 +08:00
DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 0
2019-12-24 18:46:01 +08:00
steps:
- checkout
- run:
name: "Install project dependencies"
2019-12-24 18:52:39 +08:00
command: dotnet restore
2019-12-24 18:46:01 +08:00
- run:
name: "Run Build step"
2019-12-24 18:52:39 +08:00
command: dotnet publish -c Release -r win10-x64