Skip to content

Build: Use dotnet instead of msbuild #98

Build: Use dotnet instead of msbuild

Build: Use dotnet instead of msbuild #98

Workflow file for this run

name: MusicManager
on:
push:
paths:
- 'src/**'
- '.github/workflows/**'
jobs:
build:
name: 🛠️ Build and test
runs-on: windows-2022
steps:
- name: 🔖 Check-out
uses: actions/checkout@v4
- name: ⚙️ Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8'
- name: 🛠️ Build
run: dotnet build ./src/MusicManager/MusicManager.sln -c Release -p:ContinuousIntegrationBuild=true -p:GenerateAppxPackageOnBuild=false
- name: 🕵️ Test
run: dotnet test ./src/MusicManager/MusicManager.sln -c Release --no-build