diff --git a/.nuspec/Microsoft.Maui.Resizetizer.targets b/.nuspec/Microsoft.Maui.Resizetizer.targets index 1f29b505bf31..0224bb482fc0 100644 --- a/.nuspec/Microsoft.Maui.Resizetizer.targets +++ b/.nuspec/Microsoft.Maui.Resizetizer.targets @@ -34,7 +34,7 @@ + TaskName="Microsoft.Maui.Resizetizer.TizenSplashUpdater" /> - $([System.IO.Path]::GetFullPath('$(_MauiIntermediateImages)')) - + diff --git a/src/SingleProject/Resizetizer/src/ResizetizeImages.cs b/src/SingleProject/Resizetizer/src/ResizetizeImages.cs index 632ab60a74b3..d60d345e9d9c 100644 --- a/src/SingleProject/Resizetizer/src/ResizetizeImages.cs +++ b/src/SingleProject/Resizetizer/src/ResizetizeImages.cs @@ -153,7 +153,7 @@ void ProcessAppIcon(ResizeImageInfo img, ConcurrentBag resized } else if (PlatformType == "tizen") { - var updator = new TizenIconManifestUpdator(appIconName, appIconDpis, this); + var updator = new TizenIconManifestUpdater(appIconName, appIconDpis, this); updator.Update(); } diff --git a/src/SingleProject/Resizetizer/src/TizenIconManifestUpdator.cs b/src/SingleProject/Resizetizer/src/TizenIconManifestUpdater.cs similarity index 92% rename from src/SingleProject/Resizetizer/src/TizenIconManifestUpdator.cs rename to src/SingleProject/Resizetizer/src/TizenIconManifestUpdater.cs index b8ea28316b95..d4ff43ab9085 100644 --- a/src/SingleProject/Resizetizer/src/TizenIconManifestUpdator.cs +++ b/src/SingleProject/Resizetizer/src/TizenIconManifestUpdater.cs @@ -3,11 +3,11 @@ namespace Microsoft.Maui.Resizetizer { - internal class TizenIconManifestUpdator + internal class TizenIconManifestUpdater { const string namespaceURI = "http://tizen.org/ns/packages"; - public TizenIconManifestUpdator(string appIconName, DpiPath[] dpis, ILogger logger) + public TizenIconManifestUpdater(string appIconName, DpiPath[] dpis, ILogger logger) { AppIconName = appIconName; Dpis = dpis; diff --git a/src/SingleProject/Resizetizer/src/TizenSplashUpdator.cs b/src/SingleProject/Resizetizer/src/TizenSplashUpdater.cs similarity index 96% rename from src/SingleProject/Resizetizer/src/TizenSplashUpdator.cs rename to src/SingleProject/Resizetizer/src/TizenSplashUpdater.cs index f0ad58103327..74774e87f11d 100644 --- a/src/SingleProject/Resizetizer/src/TizenSplashUpdator.cs +++ b/src/SingleProject/Resizetizer/src/TizenSplashUpdater.cs @@ -8,7 +8,7 @@ namespace Microsoft.Maui.Resizetizer { - public class TizenSplashUpdator : Task + public class TizenSplashUpdater : Task { [Required] public ITaskItem[] MauiSplashScreen { get; set; } @@ -104,7 +104,6 @@ public void UpdateColorAndMoveFile(string sourceFilePath, string destFilePath) } } } - File.Delete(sourceFilePath); } public void UpdateManifest() @@ -151,7 +150,6 @@ public void UpdateManifest() splashScreenNode.SetAttribute("dpi", image.Key); splashScreenNode.SetAttribute("orientation", orientation); splashScreenNode.SetAttribute("indicator-display", "false"); - splashScreenNode.SetAttribute("app-control-operation", "http://tizen.org/appcontrol/operation/default"); splashScreensNode.AppendChild(splashScreenNode); } }