Skip to content

Commit b72064b

Browse files
Merge pull request #130 from SixLabors/js/update-is
Update ImageSharp
2 parents afff0fe + 09325e1 commit b72064b

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

Directory.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<PackageReference Update="Microsoft.IO.RecyclableMemoryStream" Version="1.3.5" />
2727
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
2828
<PackageReference Update="MinVer" PrivateAssets="All" Version="2.3.0" />
29-
<PackageReference Update="SixLabors.ImageSharp" Version="1.0.1" />
29+
<PackageReference Update="SixLabors.ImageSharp" Version="1.0.2" />
3030
</ItemGroup>
3131

3232
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">

src/ImageSharp.Web/Caching/PhysicalFileSystemCacheOptions.cs

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Six Labors.
1+
// Copyright (c) Six Labors.
22
// Licensed under the Apache License, Version 2.0.
33

44
namespace SixLabors.ImageSharp.Web.Caching
@@ -14,7 +14,16 @@ public class PhysicalFileSystemCacheOptions
1414
public string CacheFolder { get; set; } = "is-cache";
1515

1616
/// <summary>
17-
/// Gets or sets the cache root folder.
17+
/// Gets or sets the optional cache root folder.
18+
/// <para>
19+
/// This value can be <see langword="null"/>, a fully qualified absolute path,
20+
/// or a path relative to the directory that contains the application
21+
/// content files.
22+
/// </para>
23+
/// <para>
24+
/// If not set, this will default to the directory that contains the web-servable
25+
/// application content files; commonly 'wwwroot'.
26+
/// </para>
1827
/// </summary>
1928
public string CacheRoot { get; set; }
2029
}

0 commit comments

Comments
 (0)