2 writes to Filename
Microsoft.Maui.Resizetizer (2)
ResizeImageInfo.cs (2)
85 info.Filename = fileInfo.FullName; 131 info.Filename = null;
33 references to Filename
Microsoft.Maui.Resizetizer (33)
AndroidAdaptiveIconGenerator.cs (2)
55 var backgroundFile = Info.Filename; 83 var tools = SkiaSharpTools.Create(Info.IsVector, Info.Filename, dpi.Size, Info.Color, null, Logger);
AppleIconAssetsGenerator.cs (2)
39 var (sourceExists, sourceModified) = Utils.FileExists(Info.Filename); 44 Logger.Log($"Skipping `{Info.Filename}` => `{appIconSetContentsFile}` file is up to date.");
ResizeImageInfo.cs (9)
21 ? string.IsNullOrWhiteSpace(Filename) 23 : Path.GetFileNameWithoutExtension(Filename) 28 ? string.IsNullOrWhiteSpace(Filename) || !Path.HasExtension(Filename) 30 : Path.GetExtension(Filename) 43 public bool IsVector => IsVectorFilename(Filename); 104 throw new InvalidDataException($"Unable to parse color value '{tintColor}' for '{info.Filename}'."); 109 throw new InvalidDataException($"Unable to parse color value '{color}' for '{info.Filename}'."); 130 info.ForegroundFilename = info.Filename;
Resizer.cs (4)
28 tools ??= SkiaSharpTools.Create(Info.IsVector, Info.Filename, Info.BaseSize, Info.Color, Info.TintColor, Logger); 67 if (IsUpToDate(Info.Filename, destination, inputsFile, Logger)) 73 File.Copy(Info.Filename, destination, true); 102 if (IsUpToDate(Info.Filename, destination, inputsFile, Logger))
ResizetizeImages.cs (7)
91 LogCodedError("MAUI0000", $"There was an exception processing the image '{img.Filename}': {ex}"); 218 var (sourceExists, sourceModified) = Utils.FileExists(img.Filename); 225 Logger.Log($"Skipping `{img.Filename}` => `{destination}` file is up to date."); 242 LogDebugMessage($"Resizing {img.Filename}"); 247 LogDebugMessage($"Resized {img.Filename}"); 255 LogDebugMessage($"Copying {img.Filename}"); 260 LogDebugMessage($"Copied {img.Filename}");
SkiaSharpAppIconTools.cs (3)
18 var hasBackground = !string.IsNullOrWhiteSpace(info.Filename) && File.Exists(info.Filename); 24 backgroundTools = SkiaSharpTools.Create(info.IsVector, info.Filename, null, null, null, logger);
SkiaSharpBitmapTools.cs (1)
12 : this(info.Filename, info.BaseSize, info.Color, info.TintColor, logger)
SkiaSharpSvgTools.cs (1)
13 : this(info.Filename, info.BaseSize, info.Color, info.TintColor, logger)
SkiaSharpTools.cs (1)
71 : this(info.Filename, info.BaseSize, info.Color, info.TintColor, logger)
TizenSplashUpdater.cs (1)
75 Log.LogWarning($"Unable to parse color for '{splashInfo.Filename}'.");
WindowsIconGenerator.cs (2)
31 var (sourceExists, sourceModified) = Utils.FileExists(Info.Filename); 41 Logger.Log($"Skipping `{Info.Filename}` => `{destination}` file is up to date.");