aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/Build
diff options
context:
space:
mode:
authorRoy <Roy.mail.net@gmail.com>2023-04-26 17:55:17 +0300
committerRoy <Roy.mail.net@gmail.com>2023-04-26 17:55:17 +0300
commit914d28f26fcc61c12f0a98c86e6a5ad5a455f72c (patch)
tree49b8f80ff3a6ba8bd7e8159605277593b10e8125 /Software/Visual_Studio/PPC/Tango.PPC.UI/Build
parent07a75244fe05eb4b2b0b628ec8f038cced238579 (diff)
downloadTango-914d28f26fcc61c12f0a98c86e6a5ad5a455f72c.tar.gz
Tango-914d28f26fcc61c12f0a98c86e6a5ad5a455f72c.zip
More Eureka Adjustments.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Build')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/Build/DefaultBuildProvider.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Build/DefaultBuildProvider.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Build/DefaultBuildProvider.cs
index 8f200191b..36bb64103 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Build/DefaultBuildProvider.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Build/DefaultBuildProvider.cs
@@ -17,12 +17,18 @@ namespace Tango.PPC.UI.Build
get { return BuildType == BuildType.Eureka; }
}
+ public string BuildName => BuildType == BuildType.Eureka ? "Eureka" : "Tango - PPC";
+
public DefaultBuildProvider()
{
+
if (App.StartupArgs != null && App.StartupArgs.Contains("eureka_build"))
{
BuildType = BuildType.Eureka;
}
+#if Eureka
+ BuildType = BuildType.Eureka;
+#endif
}
}
}