Skip to content

Commit

Permalink
Publish 1.1.0 on NuGet
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasMiz committed Aug 8, 2023
1 parent b9bd7db commit e69680d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 258 deletions.
2 changes: 2 additions & 0 deletions RectpackSharp/RectanglePacker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ public static class RectanglePacker
/// <param name="packingHint">Specifies hints for optimizing performance.</param>
/// <param name="acceptableDensity">Searching stops once a bin is found with this density (usedArea/boundsArea) or better.</param>
/// <param name="stepSize">The amount by which to increment/decrement size when trying to pack another bin.</param>
/// <param name="maxBoundsWidth">The maximum allowed width for the resulting bin, or null for no limit.</param>
/// <param name="maxBoundsHeight">The maximum allowed height for the resulting bin, or null for no limit.</param>
/// <remarks>
/// The <see cref="PackingRectangle.Id"/> values are never touched. Use this to identify your rectangles.
/// </remarks>
Expand Down
16 changes: 12 additions & 4 deletions RectpackSharp/RectpackSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Authors>ThomasMiz</Authors>
<Company>ThomasMiz</Company>
<Product />
Expand All @@ -13,9 +13,13 @@
<PackageProjectUrl>https://github.com/ThomasMiz/RectpackSharp</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>1.0.2</Version>
<PackageReleaseNotes>- Changed lock mechanism for better thread safety when calling Pack(...) from multiple threads at the same time
- Now targets .NET Standard 2.0 rather than 2.1 for better compatibility (Credit to BenMcLean)</PackageReleaseNotes>
<Version>1.1</Version>
<PackageReleaseNotes>- Added maxBoundsWidth and maxBoundsHeight optional parameters
- Minor fixes to acceptableDensity mechanism</PackageReleaseNotes>
<Title>RectpackSharp</Title>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -35,6 +39,10 @@
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
Expand Down
254 changes: 0 additions & 254 deletions RectpackSharp/RectpackSharp.xml

This file was deleted.

0 comments on commit e69680d

Please sign in to comment.