aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2019-03-25 14:35:30 +0200
committerShlomo Hecht <shlomo@twine-s.com>2019-03-25 14:35:30 +0200
commitcbb5066b1997bb430e33a89e742fd0b5c440a388 (patch)
tree3b45ad87006780a11f0323a5716cdd0a85d30d30 /Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects
parent0a3f882fe4d388d7387a165349595208cf96a3ae (diff)
parentdf1a05d5586fbce72e9aa2cb05cd64f74d1b98e9 (diff)
downloadTango-cbb5066b1997bb430e33a89e742fd0b5c440a388.tar.gz
Tango-cbb5066b1997bb430e33a89e742fd0b5c440a388.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects')
-rw-r--r--Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/CSharpProject.cs14
-rw-r--r--Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/StubProject.cs25
-rw-r--r--Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/UnitTestProject.cs24
3 files changed, 63 insertions, 0 deletions
diff --git a/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/CSharpProject.cs b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/CSharpProject.cs
new file mode 100644
index 000000000..62e830d06
--- /dev/null
+++ b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/CSharpProject.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Scripting.IDE.Projects
+{
+ public abstract class CSharpProject : Project
+ {
+
+ }
+}
diff --git a/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/StubProject.cs b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/StubProject.cs
new file mode 100644
index 000000000..bc915fa77
--- /dev/null
+++ b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/StubProject.cs
@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Media.Imaging;
+
+namespace Tango.Scripting.IDE.Projects
+{
+ public class StubProject : CSharpProject
+ {
+ public override BitmapSource Image => GetImage("Images/StubProject.png");
+
+ public override Task Build()
+ {
+ throw new NotImplementedException();
+ }
+
+ public override Task Run()
+ {
+ throw new NotImplementedException();
+ }
+ }
+}
diff --git a/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/UnitTestProject.cs b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/UnitTestProject.cs
new file mode 100644
index 000000000..e5510ad45
--- /dev/null
+++ b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Projects/UnitTestProject.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Media.Imaging;
+
+namespace Tango.Scripting.IDE.Projects
+{
+ public class UnitTestProject : CSharpProject
+ {
+ public override BitmapSource Image { get; }
+
+ public override Task Build()
+ {
+ throw new NotImplementedException();
+ }
+
+ public override Task Run()
+ {
+ throw new NotImplementedException();
+ }
+ }
+}