android sdk is too old [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am installing xamarin on visual studio and I see an error:
Something went wrong
The installed android sdk is too old.version 24.34 or newer is required.
Screen shot of error.
Where can I download latest adt bundle (with adb.exe) ?

You can update your Android SDK by using the Android SDK manager. Either look under Tools inside Visual Studio menu bar or use the windows key and start typing "Android SDK..." you than should find the SDK Manager.

Related

What's the best way to develop exe apps? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 months ago.
Improve this question
I want to start making professional exe apps, but how can i do it?
I started with Windows Forms but heard that it's not good for aestic applications.
Then i started with UWP, but it can't be extracted to exe file :x
I looked for WPF in the internet and it says they are the same as UWP with exe files.
So how the professional apps are being made? How can i make them?
I'm using Visual Studio and I want to make the apps in C#.
If you have the WPF C# packages installed just type inside the project search bar:
Click on the project, give a name, click next
And there you go, you have a WPF project.
Then follow some beginner friendly WPF tutorial
https://wpf-tutorial.com/

Xamarin Forms Android Sample App - Xamarin.Forms NuGet 2.5.0.91635 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm looking for an Android sample app that runs and compiles, and uses the Xamarin.Forms NuGet package 2.5.0.91635. It must be made in Visual Studio. Does anyone have one?
Edit: as per the answer below, this is how to create a new project with the latest NuGet packages:
File -> New Project...
I'm not sure if you need anything other than an Empty Xamarin Forms Android app using 2.5.0.91635. If that is sufficient here is an app that compiles and runs on the emulator
https://1drv.ms/u/s!Ag4_g2yE9YzjjMEOR7OG0z_DtfbGXw

Visual Studio professional 2017-c# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I downloaded Visual Studio professional 2017 from the Microsoft website and installed the universal windows platform development.
I wanted to open a new c# project, but there were no options to console application, Windows Form, and a lot of others.
Which pack do I need to install from the Visual Studio installer?
You'll need to run the installer again and do "Modify" and make sure ".NET Desktop Development" is enabled to get Windows Form application project types you can also install "ASP.NET and Web Development" for web stuff or any others you might need, if have space + time install them all, if needed, but should only need to install the things you need.

How to debug c# in vs code on windows? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I installed on windows 7 visual studio code editor for developing asp.net mvc application. I know now support debug c# only for linux and Mac.
How to debug c# in vs code on windows?
P.S. Yes, i know about visual studio community. But i want try working in vs code.
Right now, VS Code only supports debugging for Node on Windows
https://code.visualstudio.com/Docs/editor/debugging
However, watch for future updates as well as the extension marketplace

How to make a installation file in visual studio [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have a executable file which I made in visual studio (c#/winforms), and I would like to make an installation file which, when run, places my executable file in a specific directory, for example C:/Program Files and creates a shortcut on the desktop - much like most application you install in windows.
I don't know how to approach this. Couldn't find any guides online either.
Add a Visual Studio Installer Setup Project to your solution, and configure it however you want. Reference your other project, and tell it where to put your executable.

Categories