diff options
| author | Roy <Roy.mail.net@gmail.com> | 2023-04-26 17:55:17 +0300 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2023-04-26 17:55:17 +0300 |
| commit | 914d28f26fcc61c12f0a98c86e6a5ad5a455f72c (patch) | |
| tree | 49b8f80ff3a6ba8bd7e8159605277593b10e8125 /Software/Visual_Studio/PPC/Tango.PPC.UI/Build | |
| parent | 07a75244fe05eb4b2b0b628ec8f038cced238579 (diff) | |
| download | Tango-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.cs | 6 |
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 } } } |
