Skip to content

Commit 6942030

Browse files
Fix build
1 parent caa08a6 commit 6942030

2 files changed

Lines changed: 1 addition & 8 deletions

File tree

ImageSharp.Drawing.sln

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -334,12 +334,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{5286
334334
EndProject
335335
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DrawShapesWithImageSharp", "samples\DrawShapesWithImageSharp\DrawShapesWithImageSharp.csproj", "{5493F024-0A3F-420C-AC2D-05B77A36025B}"
336336
EndProject
337-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SixLabors.Fonts", "..\Fonts\src\SixLabors.Fonts\SixLabors.Fonts.csproj", "{4D91946D-29EC-4F16-958C-DFEE706363CE}"
338-
EndProject
339337
Global
340338
GlobalSection(SharedMSBuildProjectFiles) = preSolution
341339
shared-infrastructure\src\SharedInfrastructure\SharedInfrastructure.projitems*{2e33181e-6e28-4662-a801-e2e7dc206029}*SharedItemsImports = 5
342-
..\Fonts\shared-infrastructure\src\SharedInfrastructure\SharedInfrastructure.projitems*{4d91946d-29ec-4f16-958c-dfee706363ce}*SharedItemsImports = 5
343340
shared-infrastructure\src\SharedInfrastructure\SharedInfrastructure.projitems*{68a8cc40-6aed-4e96-b524-31b1158fdeea}*SharedItemsImports = 13
344341
EndGlobalSection
345342
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -363,10 +360,6 @@ Global
363360
{5493F024-0A3F-420C-AC2D-05B77A36025B}.Debug|Any CPU.Build.0 = Debug|Any CPU
364361
{5493F024-0A3F-420C-AC2D-05B77A36025B}.Release|Any CPU.ActiveCfg = Release|Any CPU
365362
{5493F024-0A3F-420C-AC2D-05B77A36025B}.Release|Any CPU.Build.0 = Release|Any CPU
366-
{4D91946D-29EC-4F16-958C-DFEE706363CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
367-
{4D91946D-29EC-4F16-958C-DFEE706363CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
368-
{4D91946D-29EC-4F16-958C-DFEE706363CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
369-
{4D91946D-29EC-4F16-958C-DFEE706363CE}.Release|Any CPU.Build.0 = Release|Any CPU
370363
EndGlobalSection
371364
GlobalSection(SolutionProperties) = preSolution
372365
HideSolutionNode = FALSE

tests/ImageSharp.Drawing.Tests/Drawing/FillPathTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public void FillPathCanvasArcs<TPixel>(TestImageProvider<TPixel> provider)
9999
}
100100
else
101101
{
102-
image.Mutate(x => x.Draw(new Pen(Color.Black, 1), pb.Build()));
102+
image.Mutate(x => x.Draw(new SolidPen(Color.Black, 1), pb.Build()));
103103
}
104104
}
105105
}

0 commit comments

Comments
 (0)