Skip to content

Hard-code the version to fix the build. #97

Hard-code the version to fix the build.

Hard-code the version to fix the build. #97

Workflow file for this run

name: Build
on:
push:
branches:
- 'master'
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
jobs:
build:
runs-on: 'windows-latest'
steps:
- uses: actions/checkout@v1
- name: Set up .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Pack
run: dotnet pack --configuration Release --no-build