diff --git a/src/ImageProcessorConsole/Program.cs b/src/ImageProcessorConsole/Program.cs index 44f7e96ff..4e9233e71 100644 --- a/src/ImageProcessorConsole/Program.cs +++ b/src/ImageProcessorConsole/Program.cs @@ -43,6 +43,7 @@ // Load, resize, set the format and quality and save an image. imageFactory.Load(inStream) .Constrain(size) + // ReSharper disable once AssignNullToNotNullAttribute .Save(Path.GetFullPath(Path.Combine(Path.GetDirectoryName(path), @"..\..\images\output", fileInfo.Name))); } }