Skip to content

Commit 856d0c5

Browse files
committed
Updated to Cofoundry v0.12.0 release package.
1 parent a8cb6f6 commit 856d0c5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Cofoundry.Plugins.Imaging.ImageSharp/Cofoundry.Plugins.Imaging.ImageSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</PropertyGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="Cofoundry.Web" Version="0.11.5-dotnet-8-0031" />
29+
<PackageReference Include="Cofoundry.Web" Version="0.12.0" />
3030
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
3131
</ItemGroup>
3232

src/Cofoundry.Plugins.Imaging.ImageSharp/Configuration/DefaultImageSharpInitializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace Cofoundry.Plugins.Imaging.ImageSharp;
88

99
/// <summary>
10-
/// Default implementation of <see cref="IImageAssetFileService"/>.
10+
/// Default implementation of <see cref="IImageSharpInitializer"/>.
1111
/// </summary>
1212
public class DefaultImageSharpInitializer : IImageSharpInitializer
1313
{

src/Cofoundry.Plugins.Imaging.ImageSharp/ImageSharpImageAssetFileService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ string validationErrorPropertyName
6565
}
6666
catch (InvalidImageContentException ex)
6767
{
68-
throw ValidationErrorException.CreateWithProperties("The file content is not valid.", validationErrorPropertyName);
6968
_logger.LogInformation(ex, "Image content error for file '{FileName}' with mime type {MimeType}.", fileToSave.FileName, fileToSave.MimeType);
69+
throw ValidationErrorException.CreateWithProperties("The file content is not valid.", validationErrorPropertyName);
7070
}
7171
catch (Exception ex) when (ex is NotSupportedException or ImageFormatException)
7272
{

src/ImageSharpExample/ImageSharpExample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Cofoundry.Web.Admin" Version="0.11.5-dotnet-8-0031" />
10+
<PackageReference Include="Cofoundry.Web.Admin" Version="0.12.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

0 commit comments

Comments
 (0)