diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
index 6244ea1..bb373ba 100644
--- a/.config/dotnet-tools.json
+++ b/.config/dotnet-tools.json
@@ -15,7 +15,7 @@
]
},
"dotnet-sonarscanner": {
- "version": "9.2.0",
+ "version": "9.2.1",
"commands": [
"dotnet-sonarscanner"
],
diff --git a/Directory.Packages.props b/Directory.Packages.props
index a997545..81e6f12 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -10,7 +10,7 @@
-
+
@@ -26,8 +26,8 @@
-
-
+
+
diff --git a/global.json b/global.json
index 73e4a60..5651297 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "9.0.101",
+ "version": "9.0.200",
"rollForward": "latestPatch"
}
}
\ No newline at end of file
diff --git a/tests/Tests/Unit/Logic/ImageProcessorTests.cs b/tests/Tests/Unit/Logic/ImageProcessorTests.cs
index 01e5eea..1b47b24 100644
--- a/tests/Tests/Unit/Logic/ImageProcessorTests.cs
+++ b/tests/Tests/Unit/Logic/ImageProcessorTests.cs
@@ -22,7 +22,7 @@ public async Task ProcessImage()
var result = await testee.ProcessAsync("testData/Screenshot.png", false, false);
// Assert
- result.Data.Should().HaveCount(26121);
+ result.Data.Should().HaveCount(26152);
result.MediaType.Should().Be("image/png");
}
@@ -36,7 +36,7 @@ public async Task ProcessImage_ShouldCreateBlackWhiteImage()
var result = await testee.ProcessAsync("testData/Screenshot.png", true, false);
// Assert
- result.Data.Should().HaveCount(3245);
+ result.Data.Should().HaveCount(3276);
result.MediaType.Should().Be("image/png");
new MagickImage(result.Data).GetPixels().Select(pixel => pixel.GetChannel(0)).Distinct().Should().BeEquivalentTo(new List { 0, 65535 });
}