Legacy Documentation: Version 5.0
Getting Started
Windows Store Apps: Debugging

Windows Store Apps: Deployment

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

How to deploy Windows Store Application

  • Go to Build Settings, choose SDK version and build your project to a folder

  • Visual Studio solution will be generated

  • Running on local machine:
    • Make sure, that selected solution platform is x86 and Debug target is set to “Local machine”
    • Press F5 or go to Debug -> Start debugging
  • Running on remote machine (handheld device):
    • First time you’ll have to install remote debugging tools (see http://msdn.microsoft.com/en-us/library/bt727f1t.aspx for more information) on a remote machine (Note: for ARM tablets you’ll need ARM remote debugging tools, for ex., rtools_setup_arm.exe)
    • If you are deploying to ARM architecture device, make sure that ARM is selected as Solution Platform
    • Start Visual Studio Remote debugger on a remote machine
    • Go to Visual Studio project settings -> Debug
    • Set target device to “Remote machine”
    • Find a remote machine in the list and select it
    • Press F5 or go to Debug -> Start debugging
    • Note: If you cannot connect to a remote machine, make sure that Firewal does not block it
  • Running in simulator:
    • Set Debug Target to “Simulator”
    • Press F5 or go to Debug -> Start debugging
Getting Started
Windows Store Apps: Debugging