mirror of
https://github.com/FastTunnel/FastTunnel.git
synced 2025-02-08 02:39:29 +08:00
20 lines
417 B
YAML
20 lines
417 B
YAML
version: 2.1
|
|
|
|
orbs:
|
|
win: circleci/windows@1.0.0
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: mcr.microsoft.com/dotnet/sdk:5.0
|
|
environment:
|
|
DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: "Install project dependencies"
|
|
command: dotnet restore
|
|
- run:
|
|
name: "Run Build step"
|
|
command: dotnet publish -c Release -r win10-x64
|