-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3626af9
commit dd131d4
Showing
4 changed files
with
33 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
using SixLabors.ImageSharp; | ||
|
||
namespace SrcSet.Core; | ||
|
||
public static class SizeExtensions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
using SixLabors.ImageSharp; | ||
|
||
namespace SrcSet.Core; | ||
|
||
public sealed class SrcSetManager | ||
|