DEV Community

Smx27
Smx27

Posted on

How do i Develop Asp.Net In Ubantu

How do i Develop Asp.Net web application in ubantu ? Is there any process?

Top comments (1)

Collapse
 
vaso profile image
Vaclav Elias

You can develop Console or ASP.NET Core application in Ubuntu the same way how you would do in Windows. Including, you can develop it in Windows and publish to Ubuntu, considering you are using .NET Core 3.1 or .NET 5+

The deployment/hosting process is a bit complex, you might try to Google any recent (maybe easier approaches).

  1. Install .NET on Ubuntu docs.microsoft.com/en-us/dotnet/co...

  2. Create an application

  3. Deploy docs.microsoft.com/en-us/aspnet/co..., or if using Apache docs.microsoft.com/en-us/aspnet/co...

If you have got only Linux, considering you have got some GUI, you can install Visual Studio Code IDE (cross platform), which is very good tool to develop cross platform .NET applications.

I couldn't find any most recent tutorial, only this old one from 2021 chrisdevcode.hashnode.dev/cdotnet-...