From a2e75a6b3e4929c3ed6ebbbdc5d539b89fbf8817 Mon Sep 17 00:00:00 2001 From: Syping Date: Wed, 15 Oct 2025 17:40:25 +0200 Subject: [PATCH] libragephoto: update .NET version to 0.6.1.4 - GitHub Actions: fix Windows .NET build (2nd try) --- .github/workflows/windows-dotnet.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/windows-dotnet.yml b/.github/workflows/windows-dotnet.yml index 4ccef61..8da5d84 100644 --- a/.github/workflows/windows-dotnet.yml +++ b/.github/workflows/windows-dotnet.yml @@ -56,15 +56,12 @@ jobs: - name: Copy Assets shell: pwsh run: | - mkdir -p ${{github.workspace}}\src\dotnet\runtimes\win-arm64\native \ - ${{github.workspace}}\src\dotnet\runtimes\win-x64\native \ - ${{github.workspace}}\src\dotnet\runtimes\win-x86\native - cp ${{github.workspace}}\assets\amd64_arm64\bin\libragephoto.dll \ - ${{github.workspace}}\src\dotnet\runtimes\win-arm64\native\libragephoto.dll - cp ${{github.workspace}}\assets\amd64\bin\libragephoto.dll \ - ${{github.workspace}}\src\dotnet\runtimes\win-x64\native\libragephoto.dll - cp ${{github.workspace}}\assets\amd64_x86\bin\libragephoto.dll \ - ${{github.workspace}}\src\dotnet\runtimes\win-x86\native\libragephoto.dll + mkdir -p ${{github.workspace}}\src\dotnet\runtimes\win-arm64\native + mkdir -p ${{github.workspace}}\src\dotnet\runtimes\win-x64\native + mkdir -p ${{github.workspace}}\src\dotnet\runtimes\win-x86\native + cp ${{github.workspace}}\assets\amd64_arm64\bin\libragephoto.dll ${{github.workspace}}\src\dotnet\runtimes\win-arm64\native\libragephoto.dll + cp ${{github.workspace}}\assets\amd64\bin\libragephoto.dll ${{github.workspace}}\src\dotnet\runtimes\win-x64\native\libragephoto.dll + cp ${{github.workspace}}\assets\amd64_x86\bin\libragephoto.dll ${{github.workspace}}\src\dotnet\runtimes\win-x86\native\libragephoto.dll - name: Setup MSBuild uses: microsoft/setup-msbuild@v2 - name: Setup .NET