From e0edf9de24600db0242952064475fbbde157ccaf Mon Sep 17 00:00:00 2001 From: Roy Date: Thu, 7 Sep 2023 16:38:33 +0300 Subject: Ease up to PPC/Eureka release paths --- .../PPC/Tango.PPC.Publisher.UI/MainWindowVM.cs | 17 ++++++++++++++++- .../Tango.PPC.Publisher.UI.csproj | 12 +++++++++++- 2 files changed, 27 insertions(+), 2 deletions(-) (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Publisher.UI') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Publisher.UI/MainWindowVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.Publisher.UI/MainWindowVM.cs index 39d8c9b18..76d3b3fc3 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Publisher.UI/MainWindowVM.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Publisher.UI/MainWindowVM.cs @@ -142,7 +142,22 @@ namespace Tango.PPC.Publisher.UI _client = new PPCWebClient(); var settings = SettingsManager.Default.GetOrCreate(); - Options = settings.Options; + var options = settings.Options; + + String vsPath = Path.GetFullPath(AppDomain.CurrentDomain.BaseDirectory + "..\\..\\..\\"); + + if (IsEureka) + { + options.InstallerProject = $@"{vsPath}\Advanced Installer Projects\Eureka Installer.aip"; + options.InstallerOutputFolder = $@"{vsPath}\Build\Installers\Eureka"; + } + else + { + options.InstallerProject = $@"{vsPath}\Visual_Studio\Advanced Installer Projects\PPC Installer.aip"; + options.InstallerOutputFolder = $@"{vsPath}\Build\Installers\PPC"; + } + + Options = options; _publisher = new PPCPublisher(Options); _publisher.IsEureka = IsEureka; diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Publisher.UI/Tango.PPC.Publisher.UI.csproj b/Software/Visual_Studio/PPC/Tango.PPC.Publisher.UI/Tango.PPC.Publisher.UI.csproj index be3bce7d8..8eeaa1ad8 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Publisher.UI/Tango.PPC.Publisher.UI.csproj +++ b/Software/Visual_Studio/PPC/Tango.PPC.Publisher.UI/Tango.PPC.Publisher.UI.csproj @@ -52,11 +52,21 @@ AnyCPU pdbonly true - ..\..\Build\PPC\Debug\ + ..\..\Build\PPC\Eureka_Debug\ TRACE;Eureka prompt 4 + + AnyCPU + true + full + false + ..\..\Build\PPC\Eureka_Debug\ + TRACE;DEBUG;Eureka + prompt + 4 + ..\..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll -- cgit v1.3.1