environments
2 TopicsSingle MSIX Package for Different Environments
Hi, We have a requirement in MSIX where we have to convert the Appv5.1 package into a single MSIX package for four different environment (pre, prod, uat, dev) where the only difference for all the environments is that they copy a config file into the bubble based on the environment. Can that be achieved in MSIX in single package? The below is the bat script which is used to copy the file according to the environment. @echo Off echo Loading environment files if "%1"=="DEV" set EnvFile=UserInterface.exe.config-dev if "%1"=="PRE" set EnvFile=UserInterface.exe.config-pre if "%1"=="UAT" set EnvFile=UserInterface.exe.config-UAT if "%1"=="PRD" set EnvFile=UserInterface.exe.config-prd echo f | xcopy \\Folder\files\%EnvFile% "C:\ProgramData\Microsoft\AppV\Client\Integration\Root\Data Loader\UserInterface.exe.config" /y PS: These files are present in a share location from there the script copies the files into the bubble. Tim Mangan Bogdan Mitrache1.4KViews0likes8CommentsAzure IoT development and production environments
Hi, My Azure IoT platform is currently running successfully and before the official launch I would like to make the most appropriate changes in order to set up a development/test environment in parallel to the production one. Our current system is based on DPS, IoT Hub, CosmoDB, Azure SQL, different App services and function apps. My question is: apart from replicating the required services either based on subscriptions or resource groups, is there any other more optimal approach I could follow? Thanks!1.2KViews0likes1Comment