diff options
author | Jose <jose@zeroc.com> | 2017-04-11 01:00:31 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-04-11 01:00:31 +0200 |
commit | 9b3573c34f05d2d2d92a7e5acd3e970c67ecced0 (patch) | |
tree | dd15d242557e3492a0e112d956fed8166192eca1 /scripts/Util.py | |
parent | Fixed ICE-7755 - listen on all IPs associated with a DNS name (diff) | |
download | ice-9b3573c34f05d2d2d92a7e5acd3e970c67ecced0.tar.bz2 ice-9b3573c34f05d2d2d92a7e5acd3e970c67ecced0.tar.xz ice-9b3573c34f05d2d2d92a7e5acd3e970c67ecced0.zip |
Fix (ICE-7671) - VS 2017 crash when build UWP
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 6e10094aea0..ec04d6921fc 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -2054,6 +2054,7 @@ class UWPProcessController(RemoteProcessController): run("MakeAppx.exe unpack /p \"{0}\" /d \"{1}\" /l".format(package, layout)) print("Registering application to run from layout...") + run("powershell Remove-AppxPackage {0}".format(self.packageFullName)) run("powershell Add-AppxPackage -Register \"{0}/AppxManifest.xml\"".format(layout)) run("CheckNetIsolation LoopbackExempt -a -n={0}".format(self.appUserModelId)) |