Skip to content

updated version info #232

updated version info

updated version info #232

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Add msbuild to PATH
uses: microsoft/[email protected]
- name: Restore dependencies
run: dotnet restore
- name: Build
run: msbuild SMT.sln
- name: Publish
run: msbuild SMT.sln /p:Configuration=Release /p:Platform="x64" /p:PublishProfile=FolderProfile.pubxml
- name: Test
run: dotnet test --no-build --verbosity normal