Reputation: 135
I am beginner in windows 8 metro application. I have create a simple application on visual studio 12. it is running in same machine . How can i install this application on other device running windows RT without publishing app in app store. Help me plz...Thankx
Upvotes: 2
Views: 913
Reputation: 526
http://msdn.microsoft.com/en-in/library/windows/apps/hh975357.aspx this will help you in creating package.
If you want to make a basic package, change debug mode to release mode and then follow these steps
project=> store=> create App Packages => next =>create
Upvotes: 0
Reputation: 7231
Choose 'Store->Create App Package' from the projects context menu, then select 'no' when asked whether to create app store packages. Then copy over the generated folders and execute the included PowerShell script to install the application. In case your project contains platform-specific code, you have to make sure it supports compilation for ARM devices, which is what Windows RT runs on.
Upvotes: 1