From c6ada5aa5dd0fe710a14ddaf4637d5e8317fee9e Mon Sep 17 00:00:00 2001 From: huiyueun <35286162+huiyueun@users.noreply.github.com> Date: Tue, 6 Apr 2021 08:04:43 +0900 Subject: [PATCH] [NUI] Fix argument issue when launch application on ubuntu (#2827) args[0] value is this. ->Tizen.NUI, Version=4.0.0.0, Culture=neutral, PublicKeyToken=eba370b203a2e242 So can't set using argument value. ex) dotnet run --width 100 --height --100 Signed-off-by: huiyu.eun --- src/Tizen.NUI/src/internal/Application/NUICoreBackend.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tizen.NUI/src/internal/Application/NUICoreBackend.cs b/src/Tizen.NUI/src/internal/Application/NUICoreBackend.cs index 0cc935c..4fc4d38 100755 --- a/src/Tizen.NUI/src/internal/Application/NUICoreBackend.cs +++ b/src/Tizen.NUI/src/internal/Application/NUICoreBackend.cs @@ -144,7 +144,7 @@ namespace Tizen.NUI args[0] = Tizen.Applications.Application.Current.ApplicationInfo.ExecutablePath; if (string.IsNullOrEmpty(args[0])) { - args[0] = this.GetType().Assembly.FullName; + args[0] = this.GetType().Assembly.FullName.Replace(" ", ""); } if (windowRectangle != null) -- 2.7.4