C# app install in phone [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I'm using MS Visual Studio 2013.
i wonder if somehow can install application on phone(to use application on phone when user want's?
i know with ms visual studio can connect to windows phone, but how can install application?

You can connect device to the machine.when successfully connected, the device will be listed in visual studio.
From visual studio,select the device instead of simulator.
just deploy the solution
this will install your app into the device.

You can distribute Windows apps (I think this is what you want), throw the windows store.
Other methods are to develop ORM software or enterprise software.
Have a look here for more detailed infos.

I assume you want to deploy your own application to a test device.
First you have to make sure that you have installed the correct WindowsPhone SDK (depending on your phone OS).
https://dev.windows.com/de-de/develop/download-phone-sdk
Get a developer licence. If you are trying to deploy your application Visual Studio will give you a hint how to get one.
Create a project for windows phone or a universal app, something you can put on your device.
Connect your device and press "Start" in Visual Studio, the application gets compiled, deployed and started automatically.

Related

Difference between running Umbraco on MacOS vs. Windows(Parallels) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed yesterday.
Improve this question
I'm a frontend developer with very limited experience of .NET/C#/Umbraco. I want to setup an environment on my Macbook Pro M1 (Ventura), preferably without a VM. I don't really understand if this is possible. The Umbraco website says "To run a local installation of Umbraco on a Mac you need to setup a Virtual Machine "vm" that runs Microsoft Windows", but then I came across these guides:
How to run .NETCore Umbraco CMS on a MacBook
Docker Express: Running a Local SQL Server on Your M1 Mac
I've managed to install the .NETCore SDK, Docker & Azure Data Studio + setup a test db, but I want to make sure I'm on the right track before I continue.
So my questions are;
Is it possible to get this up and running entirely on my Mac, or should I keep some parts in Parallels/Windows. I would be thankful if someone could explain why, and what the benefits are.
Other proffessional projects I'm working on are setup in a Windows environment, using IIS Manager. How would I get these projects up and running om my Mac? What would be the best substitute for IIS Manager?
Thanks!

Can a C# application be accessed from an android mobile? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
​I have been developing custom applications in C# and SQL Server. I have a new requirement where the customer wants to be able to access their application from their android or apple mobile phone too.
I need to know whether a desktop application developed in C# and SQL Server would have this feature or if any components can be plugged-in to enable that feature? Or if not, what would it take to achieve this.
I just need to be pointed in the right direction and I'll figure out the rest.
Thank you
Visual studio gives you the ability to build Native Android and iOS app using xamarin. It can solve your problem but it really depends on your software.
SQL, however, is unsupported by Android and iOS, if the database needs to reside on the device, you need to use another db, like SQLite for Android.
If the database can be a remote db, you can build an API (REST?) and access to it using this API
Native Android and iOS development with VS

Do I need iOS or Android device(s) to write applications using Visual Studio with Xamarin [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
With the free Xamarian with Visual Studio does a Windows Developer using a Windows Machine have to buy Iphones, Ipads & Andoid devices to convert c# Windows into IOS or Android? When trying to create C# from withing Visual Studio / Xamarian it is asking me to pair a mac that I do not have. Is it mandatory to use physical devices rather than emulators? Thank You for this opportunity!
You do not need an Android or iOS device for development, although obviously building apps without being able to test them on real devices is not ideal.
For iOS, you must have a Mac to act as a build host when using Visual Studio.
For iOS, you need a Mac at least.
The Android emulators is OK for any other OS.
For Windows Phone 8, you need a Windows 8+ PC.

Odd Visual Studio Experience? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am running an app as a side app to a major application on an x86 Windows 8.1 tablet. The app is written in C# 3.5 client side. When I try to compile the app on a desktop machine, and then run the app on a tablet, the app immediately crashes. When I compile the app on a tablet (fresh VS install), the app runs fine. Does anyone know what setting I could be missing here?
Thanks in advance,
Dan
Switching the app to compile to 3.5 instead of "3.5 client profile" and x86 throughout the project's build tab fixed the bug.

Do I have to use Windows 8 in order to develop for Windows Store? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I really want to rollback W8 but I'd like to have an option to develop for Windows Store (for example I might buy Windows Surface and use it as the testing environment but keep dev on W7).. Is it possible?
When I say an app I mean C# / XAML.
According to Develop Windows Store apps using Visual Studio 2012, you cannot do this.
Windows Store app development in Visual Studio is supported only on
Windows 8. Windows 7 is not supported.
Although Windows store app development only supported in Windows 8 but you can always install Windows 8 in VM like Virtual Box to get the job done. Also you can install Windows 8 to a VHD so you don't have to partition your hard drive. Here are the instructions on that.

Categories