Version: 5.6
시작
Windows Store Apps: Profiler

Windows Store Apps: Deployment

How to deploy Windows Store Application

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

  • Visual Studio 솔루션이 생성됩니다.

  • Local Machine에서 실행되는 경우
    • Make sure, that selected solution platform is x86 and Debug target is set to “Local machine”
    • F5를 누르거나 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)
    • ARM 아키텍처 장치로 배포하는 경우 Solution Platform이 ARM으로 선택되었는지 확인해야 합니다.
    • 원격 장치에서 Visual Studio Remote Debugger를 시작해야 합니다.
    • Visual Studio에서 Project Settings -> Debug로 가야 합니다.
    • 타겟 장치를 “Remote Machine”으로 설정합니다.
    • Find a remote machine in the list and select it
    • F5를 누르거나 Debug -> Start Debugging으로 가야 합니다.
    • Note: If you cannot connect to a remote machine, make sure that Firewal does not block it
  • Simulator에서 실행되는 경우
    • Debug Target“Simulator”로 설정합니다.
    • F5를 누르거나 Debug -> Start Debugging으로 가야 합니다.
시작
Windows Store Apps: Profiler