Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I deploy app on Microsoft Surface tablet using Visual Studio 2012?

The Microsoft surface uses the ARM7 which is the same as the Windows Phone. I thought that using the Windows Phone 8 SDK and Visual Studio 2012 I could deploy the app to tablet. When I developed apps for the Windows Phone it was straight forward to register the phone in the Dev Center, and pushing the app was easy by using Visual Studio or Application Deployment Tool.

I did iOS development with Xcode and I can set the target device to iPad or iPhone. What am I missing?

like image 584
Ken Montagna Avatar asked Nov 10 '12 00:11

Ken Montagna


People also ask

Can Visual Studio run on a surface?

Can I run Visual Studio on Microsoft Surface? Visual Studio 2013/2015 can run on x86/x64 architecture computers. So they can run on Microsoft Surface 3, Surface Pro 3 and Surface Pro 4, if other hardware specification meets (e.g. enough free disk space and enough available RAM).

Can I make an app using Visual Studio?

You can build apps for Android, iOS, and Windows devices by using Visual Studio. As you design your app, use tools in Visual Studio to easily add connected services such as Microsoft 365, Azure App Service, and Application Insights. Build your apps by using C# and the . NET Framework, HTML and JavaScript, or C++.

Can Microsoft Surface run apps?

To download the app package you need to install apps on your Surface Hub, visit the Microsoft Store for Business. The Store for Business is where you can find, acquire, and manage apps for the Windows 10 devices in your organization, including Surface Hub.


1 Answers

There is a couple of steps that need to be done for this. Visual Studio allows you to remotely push your app to a device (provided that both the PC and Surface are connected to the same network).

Basically you go here and download the Remote Tools for Visual Studio 2012 (near the bottom of the page) onto your Surface (remembering to download the ARM version).

You can then launch this program on your Surface.

Then in Visual Studio you can click the little drop down arrow next to the run button and choose "Remote Device". If both your development machin and your Surface are on the same network it should detect it automatically (but you may have to enter your Surface's IP address).

The first time the app is deployed onto the device the Surface will prompt you to get a developer certificate and once that has occurred it should just work.

This guide explains it far better then me and should give you all the information you need.

Goodluck!

like image 75
GracelessROB Avatar answered Oct 20 '22 04:10

GracelessROB