What visual studio template can i use for a server that will communicate with devices and uses web pages?

Viewed 65

I need an application that will communicate with other applications (android apps and arduino sensors, etc) throught json with visual studio IDE but this application should host a local web page too (to modify the system and deliver stadistics).

I do not have a lot of experience with visual studio or distributed systems. What template should i use for a project with this characteristics?

1 Answers

you can use the "Asp.Net Core Web Application" template!

When you open Visual Studio, select "New Project" then in the search box write "Asp.Net Core Web Application like in the picture below:

enter image description here

Pick the one with the C# Tag!

That's it you have your template!

Rest Api is what you want, it uses json to communicate with other Apps, you can then have multiple Apps communicating with your Rest API, you can also use Swagger to create your rest API interface so you can easily see your endpoints documented there.

Good look with your Project!

Related