From 7ba9469aa14b0d38e81a7587b20046cecd730868 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Mon, 11 May 2020 09:24:29 -0400 Subject: [PATCH] add msbuild task to copy the appropriate UWT engine to our output path rendering custom build scripts unnecessary --- .../UniversalEditor.UserInterface.csproj | 10 ++++++++++ build.sh | 7 ------- uwt-install-gtk.sh | 5 ----- uwt-install-wf.sh | 5 ----- uwt-remove-gtk.sh | 3 --- uwt-remove-wf.sh | 3 --- 6 files changed, 10 insertions(+), 23 deletions(-) delete mode 100755 build.sh delete mode 100755 uwt-install-gtk.sh delete mode 100755 uwt-install-wf.sh delete mode 100755 uwt-remove-gtk.sh delete mode 100755 uwt-remove-wf.sh diff --git a/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj b/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj index 51e3ba87..6bd4402a 100644 --- a/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj +++ b/Libraries/UniversalEditor.UserInterface/UniversalEditor.UserInterface.csproj @@ -193,4 +193,14 @@ --> + + + + + + + + + + diff --git a/build.sh b/build.sh deleted file mode 100755 index a5efac02..00000000 --- a/build.sh +++ /dev/null @@ -1,7 +0,0 @@ -cd ../../UniversalWidgetToolkit -msbuild UniversalWidgetToolkit.GTK.sln - -cp Output/Debug/UniversalWidgetToolkit.Engines.GTK.dll ../UniversalEditor/CSharp/Output/Debug -cd ../UniversalEditor/CSharp -msbuild - diff --git a/uwt-install-gtk.sh b/uwt-install-gtk.sh deleted file mode 100755 index 4eff49de..00000000 --- a/uwt-install-gtk.sh +++ /dev/null @@ -1,5 +0,0 @@ -cd ../MBS.Framework.UserInterface -cp Output/Debug/MBS.Framework.UserInterface.Engines.GTK.dll ../UniversalEditor/Output/Debug -cp Output/Debug/MBS.Framework.UserInterface.Engines.GTK.dll.config ../UniversalEditor/Output/Debug -cp Output/Debug/MBS.Framework.UserInterface.Engines.GTK.pdb ../UniversalEditor/Output/Debug - diff --git a/uwt-install-wf.sh b/uwt-install-wf.sh deleted file mode 100755 index eca90f59..00000000 --- a/uwt-install-wf.sh +++ /dev/null @@ -1,5 +0,0 @@ -cd ../MBS.Framework.UserInterface -cp Output/Debug/MBS.Framework.UserInterface.Engines.WindowsForms.dll ../UniversalEditor/Output/Debug -# cp Output/Debug/MBS.Framework.UserInterface.Engines.WindowsForms.dll.config ../UniversalEditor/Output/Debug -cp Output/Debug/MBS.Framework.UserInterface.Engines.WindowsForms.pdb ../UniversalEditor/Output/Debug - diff --git a/uwt-remove-gtk.sh b/uwt-remove-gtk.sh deleted file mode 100755 index 6061cb70..00000000 --- a/uwt-remove-gtk.sh +++ /dev/null @@ -1,3 +0,0 @@ -rm Output/Debug/MBS.Framework.UserInterface.Engines.GTK.dll -rm Output/Debug/MBS.Framework.UserInterface.Engines.GTK.pdb - diff --git a/uwt-remove-wf.sh b/uwt-remove-wf.sh deleted file mode 100755 index 9ba6b10e..00000000 --- a/uwt-remove-wf.sh +++ /dev/null @@ -1,3 +0,0 @@ -rm Output/Debug/MBS.Framework.UserInterface.Engines.WindowsForms.dll -rm Output/Debug/MBS.Framework.UserInterface.Engines.WindowsForms.pdb -