2 writes to ForegroundFilename
Microsoft.Maui.Resizetizer (2)
ResizeImageInfo.cs (2)
124
info.
ForegroundFilename
= fgFileInfo.FullName;
130
info.
ForegroundFilename
= info.Filename;
9 references to ForegroundFilename
Microsoft.Maui.Resizetizer (9)
AndroidAdaptiveIconGenerator.cs (2)
99
var foregroundFile = Info.
ForegroundFilename
;
127
var tools = SkiaSharpTools.Create(Info.ForegroundIsVector, Info.
ForegroundFilename
, dpi.Size, null, Info.TintColor, Logger);
ResizeImageInfo.cs (4)
22
? Path.GetFileNameWithoutExtension(
ForegroundFilename
)
29
? Path.GetExtension(
ForegroundFilename
)
49
public bool ForegroundIsVector => IsVectorFilename(
ForegroundFilename
);
128
if (info.IsAppIcon && string.IsNullOrEmpty(info.
ForegroundFilename
))
SkiaSharpAppIconTools.cs (3)
19
var hasForeground = !string.IsNullOrWhiteSpace(info.
ForegroundFilename
) && File.Exists(info.
ForegroundFilename
);
26
foregroundTools = SkiaSharpTools.Create(info.ForegroundIsVector, info.
ForegroundFilename
, null, null, info.TintColor, logger);