Search code examples
.netvisual-studiowindows-runtimevisual-studio-2012visual-studio-debugging

Auto Uninstall WinRT App after Debugging Stopped


I want to automatically uninstall a WinRT app after it has finished debugging. Is this possible?


Solution

  • You can use Remove-AppxPackage to do the uninstall. I don't know if there's a post-debugging trigger you can hook to do this.

    Remove-AppxPackage => http://technet.microsoft.com/en-us/library/hh856038.aspx