From 8d334d45719df8914ad0a3c11d6d39364fe58a2a Mon Sep 17 00:00:00 2001 From: tinysec Date: Mon, 24 Nov 2025 23:06:32 +0800 Subject: [PATCH 1/2] ci: Linux --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 919bcd8..fca3c43 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -77,6 +77,7 @@ jobs: dotnet publish -r win-x64 --self-contained=true -c Release -p:PublishDir=build /p:Version=${{ needs.version.outputs.version }} /p:FileVersion=${{ needs.version.outputs.version }} /p:AssemblyVersion=${{ needs.version.outputs.version }} /p:ProductVersion=${{ needs.version.outputs.version }} - name: pack + if: runner.os == 'Linux' run: | echo "[+] Packing NuGet package" dotnet pack --configuration Release -o build -p:PublishDir=build /p:Version=${{ needs.version.outputs.version }} /p:FileVersion=${{ needs.version.outputs.version }} /p:AssemblyVersion=${{ needs.version.outputs.version }} /p:ProductVersion=${{ needs.version.outputs.version }} From 52762873cbae6925aa1651133f13c9fec077dcbc Mon Sep 17 00:00:00 2001 From: tinysec Date: Mon, 24 Nov 2025 23:06:54 +0800 Subject: [PATCH 2/2] doc: fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bca1922..b1f92f8 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ namespace Dummy return 1; // success } - public static void DefaultCommand(BinaryView view ) + public static void DefaultCommand(BinaryView view ) { Logger logger = BinaryNinja.Logger.GetOrCreateLogger("Dummy");