From 4ba55f8713258325f95c0fb5d4736a2dab1a5b0e Mon Sep 17 00:00:00 2001 From: Scriptbash <98601298+Scriptbash@users.noreply.github.com> Date: Thu, 23 Jul 2026 12:01:47 -0400 Subject: [PATCH 1/2] silence coroutine warnings --- windows/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt index b0816745..c956b765 100644 --- a/windows/CMakeLists.txt +++ b/windows/CMakeLists.txt @@ -32,6 +32,8 @@ set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") # Use Unicode for all projects. add_definitions(-DUNICODE -D_UNICODE) +add_compile_definitions(_SILENCE_EXPERIMENTAL_COROUTINE_DEPRECATION_WARNINGS) + # Compilation settings that should be applied to most targets. # # Be cautious about adding new options here, as plugins use this function by From e550bd4d17a59e6bdbba21f25c6af9c804306fc4 Mon Sep 17 00:00:00 2001 From: Scriptbash <98601298+Scriptbash@users.noreply.github.com> Date: Thu, 23 Jul 2026 12:15:44 -0400 Subject: [PATCH 2/2] Add nuget to workflows --- .github/workflows/build.yml | 2 ++ .github/workflows/publish.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 766b5a81..39e264b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -86,6 +86,8 @@ jobs: - uses: subosito/flutter-action@v2 with: channel: 'stable' + - name: Setup nuget + uses: NuGet/setup-nuget@v2 - run: flutter pub get - run: flutter build windows --debug - uses: actions/upload-artifact@v7 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fda989b4..26117aa4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -136,6 +136,8 @@ jobs: uses: subosito/flutter-action@v2 with: channel: 'stable' + - name: Setup nuget + uses: NuGet/setup-nuget@v2 - name: Flutter pub get run: flutter pub get - name: Build Windows release