From 1bbc541957105bc4b598f86ccac68d99ebcd8cd1 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 20 Feb 2024 21:04:39 -0500 Subject: [PATCH] Limit packing to just BOS library --- publish-nix.sh | 2 +- publish-win.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/publish-nix.sh b/publish-nix.sh index 7b406cad..fd6d643c 100644 --- a/publish-nix.sh +++ b/publish-nix.sh @@ -64,7 +64,7 @@ then dotnet restore # Create Nuget Package - dotnet pack --output $BUILD_FOLDER + dotnet pack BinaryObjectScanner/BinaryObjectScanner.csproj --output $BUILD_FOLDER # Build Test for FRAMEWORK in "${FRAMEWORKS[@]}" diff --git a/publish-win.ps1 b/publish-win.ps1 index 65e900b9..4efdde60 100644 --- a/publish-win.ps1 +++ b/publish-win.ps1 @@ -53,7 +53,7 @@ if (!$NO_BUILD.IsPresent) dotnet restore # Create Nuget Package - dotnet pack --output $BUILD_FOLDER + dotnet pack BinaryObjectScanner\BinaryObjectScanner.csproj --output $BUILD_FOLDER # Build Test foreach ($FRAMEWORK in $FRAMEWORKS)