Skip to content

Commit

Permalink
Hit Bug with GeneratePackageOnBuild:
Browse files Browse the repository at this point in the history
  • Loading branch information
pgodwin committed Jan 5, 2022
1 parent 53969fb commit 03b870b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion PictSharp.Core/PictSharp.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>PictSharp</RootNamespace>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Authors>pgodwin</Authors>
<Description>Provides generic, core Apple PICT V2 Encoding for 1bpp, 2bpp, 4bpp, 8bpp and 32bpp images.</Description>
<RepositoryUrl>https://github.com/pgodwin/PictSharp</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion PictSharp.Drawing/PictSharp.Drawing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>pgodwin</Authors>
<PackageId>PictSharp.Drawing</PackageId>
<PackageTags>pictsharp;pict;encoding;compression;images;bitmap</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- I think this is unsupported...-->
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Description>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.</Description>
<Authors>pgodwin</Authors>
Expand Down

0 comments on commit 03b870b

Please sign in to comment.