environments
1 TopicSingle 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.5KViews0likes8Comments