Skip to content

Update .DotSettings #27

Update .DotSettings

Update .DotSettings #27

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
DOTNET_VERSION: 8.0.x
BUILD_TARGET: .\src\MetroTrilithon.sln
jobs:
build:
name: .NET Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Use .NET ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Build
run: dotnet build ${{ env.BUILD_TARGET }} -c Release