From 71ad9f6caf9626b7c9cd373511a70aa5599c4400 Mon Sep 17 00:00:00 2001 From: LongerWarrior Date: Wed, 25 Mar 2026 00:31:25 +0200 Subject: [PATCH 1/2] Fix AudioConverter error --- FModel/ViewModels/AudioPlayerViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FModel/ViewModels/AudioPlayerViewModel.cs b/FModel/ViewModels/AudioPlayerViewModel.cs index 802e87ab..26ed628c 100644 --- a/FModel/ViewModels/AudioPlayerViewModel.cs +++ b/FModel/ViewModels/AudioPlayerViewModel.cs @@ -680,7 +680,7 @@ public class AudioPlayerViewModel : ViewModel, ISource, IDisposable } } - var success = TryConvertToWAV(inputFilePath, inputFileData, vgmFilePath, true, out var tempWavFilePath); + var success = TryConvertToWAV(inputFilePath, inputFileData, vgmFilePath, true, out wavFilePath); if (!success) { From cf4efc4f770f637f31e88343eac64640c654a166 Mon Sep 17 00:00:00 2001 From: Valentin Date: Wed, 25 Mar 2026 00:30:52 +0100 Subject: [PATCH 2/2] test --- .github/workflows/qa.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 3898ed70..140f6d92 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -20,7 +20,7 @@ jobs: dotnet-version: '8.0.x' - name: .NET Restore - run: dotnet restore "./FModel/FModel.slnx" + run: dotnet restore "./FModel/FModel.slnx" -r win-x64 - name: .NET Publish run: dotnet publish "./FModel/FModel.csproj" -c Release --no-restore --no-self-contained -r win-x64 -f net8.0-windows -o "./FModel/bin/Publish/" -p:PublishReadyToRun=false -p:PublishSingleFile=true -p:DebugType=None -p:GenerateDocumentationFile=false -p:DebugSymbols=false