From d38a4642322aecf9291f28eee1e3037d91c7afae Mon Sep 17 00:00:00 2001 From: Syping Date: Tue, 7 Oct 2025 13:03:46 +0200 Subject: [PATCH] libragephoto 0.6.1 release - fix nuget package --- .github/workflows/windows-dotnet.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/windows-dotnet.yml b/.github/workflows/windows-dotnet.yml index 7e2c126..6353075 100644 --- a/.github/workflows/windows-dotnet.yml +++ b/.github/workflows/windows-dotnet.yml @@ -55,15 +55,15 @@ jobs: path: assets/amd64_arm64 - name: Copy Runtime Assets run: | - mkdir -p ${{github.workspace}}/src/dotnet/runtimes/win-arm64 \ - ${{github.workspace}}/src/dotnet/runtimes/win-x64 \ - ${{github.workspace}}/src/dotnet/runtimes/win-x86 + 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/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/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/libragephoto.dll + ${{github.workspace}}/src/dotnet/runtimes/win-x86/native/libragephoto.dll - name: Setup .NET uses: actions/setup-dotnet@v4 with: