Skip to content

Commit

Permalink
Upgrade to ImageSharp v3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveDesmond-ca committed Dec 11, 2023
1 parent 3626af9 commit dd131d4
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 26 deletions.
3 changes: 3 additions & 0 deletions SrcSet.Core/ImageExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Processing;

namespace SrcSet.Core;

public static class ImageExtensions
Expand Down
2 changes: 2 additions & 0 deletions SrcSet.Core/SizeExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using SixLabors.ImageSharp;

namespace SrcSet.Core;

public static class SizeExtensions
Expand Down
52 changes: 26 additions & 26 deletions SrcSet.Core/SrcSet.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>SrcSet.Core</PackageId>
<Description>A library to create sets of responsive images for the web</Description>
<Version>5.0.0</Version>
<Authors>ecoAPM LLC</Authors>
<Company>ecoAPM LLC</Company>
<Copyright>ecoAPM LLC</Copyright>
<Product>SrcSet</Product>
<TargetFramework>net8.0</TargetFramework>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/ecoAPM/SrcSet</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/ecoAPM/SrcSet</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.0.2" />
<None Include="../README.md" CopyToOutputDirectory="PreserveNewest" Pack="true" PackagePath="." />
</ItemGroup>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>SrcSet.Core</PackageId>
<Description>A library to create sets of responsive images for the web</Description>
<Version>5.0.0</Version>
<Authors>ecoAPM LLC</Authors>
<Company>ecoAPM LLC</Company>
<Copyright>ecoAPM LLC</Copyright>
<Product>SrcSet</Product>
<TargetFramework>net8.0</TargetFramework>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/ecoAPM/SrcSet</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/ecoAPM/SrcSet</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.1" />
<None Include="../README.md" CopyToOutputDirectory="PreserveNewest" Pack="true" PackagePath="." />
</ItemGroup>
</Project>
2 changes: 2 additions & 0 deletions SrcSet.Core/SrcSetManager.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using SixLabors.ImageSharp;

namespace SrcSet.Core;

public sealed class SrcSetManager
Expand Down

0 comments on commit dd131d4

Please sign in to comment.