[NUI] Change VS Code settings in Ubuntu (#1890)
authordongsug-song <35130733+dongsug-song@users.noreply.github.com>
Wed, 5 Aug 2020 04:34:40 +0000 (13:34 +0900)
committerGitHub <noreply@github.com>
Wed, 5 Aug 2020 04:34:40 +0000 (13:34 +0900)
test/Tizen.NUI.Samples/Tizen.NUI.Samples/.vscode/launch.json
test/Tizen.NUI.Samples/Tizen.NUI.Samples/Program.cs
test/Tizen.NUI.Samples/Tizen.NUI.Samples/Tizen.NUI.Samples.csproj

index 166d61f..19ce928 100644 (file)
@@ -9,7 +9,7 @@
             "type": "coreclr",
             "request": "launch",
             "preLaunchTask": "build",
-            "program": "${workspaceFolder}/bin/Debug/netcoreapp2.0/Tizen.NUI.Samples.dll",
+            "program": "${workspaceFolder}/bin/Debug/netcoreapp3.1/Tizen.NUI.Samples.dll",
             "args": [],
             "cwd": "${workspaceFolder}",
             "console": "internalConsole",
index 91627e2..8d19d83 100755 (executable)
@@ -20,7 +20,6 @@ namespace Tizen.NUI.Samples
 {
     public class Application
     {
-        [STAThread]
         static void Main(string[] args)
         {
             new DaliDemo("").Run(args);
index 11a4024..074bcd9 100755 (executable)
@@ -2,9 +2,10 @@
 
   <PropertyGroup>
     <OutputType>Exe</OutputType>
-    <TargetFramework>netcoreapp2.0</TargetFramework>
+    <TargetFramework>netcoreapp3.1</TargetFramework>
     <RootNamespace>Tizen.NUI.Samples</RootNamespace>
     <AssemblyName>Tizen.NUI.Samples</AssemblyName>
+    <StartupObject>Tizen.NUI.Samples.Application</StartupObject>
   </PropertyGroup>
 
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">