From 03b870bc790200b9ed57f1aaa888b753c79bbd27 Mon Sep 17 00:00:00 2001 From: pgodwin Date: Wed, 5 Jan 2022 12:06:00 +1000 Subject: [PATCH] Hit Bug with `GeneratePackageOnBuild`: https://github.com/dotnet/sdk/issues/10335 --- .github/workflows/build.yml | 4 ++-- PictSharp.Core/PictSharp.Core.csproj | 2 +- PictSharp.Drawing/PictSharp.Drawing.csproj | 2 +- .../PictSharp.ImageSharpAdaptor.csproj | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0a7e413..6943895 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,9 +20,9 @@ jobs: - name: Build ImageSharp run: dotnet build --configuration Release --no-restore PictSharp.ImageSharpAdaptor -o ./bin - name: Pack Core - run: dotnet pack --no-restore PictSharp.Core -o ./packages + run: dotnet pack --configuration Release --no-restore PictSharp.Core -o ./packages - name: Pack ImageSharpAdaptor - run: dotnet pack --no-restore PictSharp.ImageSharpAdaptor -o ./packages + run: dotnet pack --configuration Release --no-restore PictSharp.ImageSharpAdaptor -o ./packages - name: Upload Compiled Binaries uses: actions/upload-artifact@v1.0.0 with: diff --git a/PictSharp.Core/PictSharp.Core.csproj b/PictSharp.Core/PictSharp.Core.csproj index 6796544..dbc6164 100644 --- a/PictSharp.Core/PictSharp.Core.csproj +++ b/PictSharp.Core/PictSharp.Core.csproj @@ -3,7 +3,7 @@ netstandard2.0 PictSharp - True + False pgodwin Provides generic, core Apple PICT V2 Encoding for 1bpp, 2bpp, 4bpp, 8bpp and 32bpp images. https://github.com/pgodwin/PictSharp diff --git a/PictSharp.Drawing/PictSharp.Drawing.csproj b/PictSharp.Drawing/PictSharp.Drawing.csproj index 23cc36a..d233a35 100644 --- a/PictSharp.Drawing/PictSharp.Drawing.csproj +++ b/PictSharp.Drawing/PictSharp.Drawing.csproj @@ -13,7 +13,7 @@ v4.7.2 512 true - true + false pgodwin PictSharp.Drawing pictsharp;pict;encoding;compression;images;bitmap diff --git a/PictSharp.ImageSharpAdaptor/PictSharp.ImageSharpAdaptor.csproj b/PictSharp.ImageSharpAdaptor/PictSharp.ImageSharpAdaptor.csproj index c737e87..b461790 100644 --- a/PictSharp.ImageSharpAdaptor/PictSharp.ImageSharpAdaptor.csproj +++ b/PictSharp.ImageSharpAdaptor/PictSharp.ImageSharpAdaptor.csproj @@ -5,7 +5,7 @@ 8.0 enable - True + False PictSharp is a native .NET Library for converting images to Apple's PICT format. This package provides an adaptor for ImageSharp to support saving ImageSharp images to PICT format. pgodwin