I have a project .NET Framework 4 but I don't know how to run it on Ubuntu server.
What .NET Runtime I have to installing to run it? Or do I need install something else?
(P/s: on Windows this is so easy: just click on my file.exe and it's start. How about Ubuntu 20.04?)
CodePudding user response:
.NET Framework 4 can not be run on linux machine. your best bet to upgrade your project to .netcore or even better to .NET 6, both are cross-platform and support Windows, Linux, Mac and more.
CodePudding user response:
You can not run .NET Framework applications on ubuntu. But maybe wine can do it. Note: The wine looks like Windows 2000!
For installing:
sudo apt update
sudo apt install wine64
wine --version
I hope this comment was useful :)