Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When does .Net run on UNIX?

Tags:

.net

I've heard of mono for developing cross platform .Net applications but why does the .Net Framework itself include conditional compilation, for example

#if PLATFORM_UNIX
...
#endif // PLATFORM_UNIX

as can be seen in the .Net Framework Reference Source for System.IO.Path

like image 614
Grokodile Avatar asked Jul 14 '11 19:07

Grokodile


People also ask

Does .NET run on Unix?

Net framework cannot be installed in Unix/Linux machines.

Does .NET run on Linux?

NET works well on their Linux distributions. Support is provided by those distributions. You can still open issues at dotnet/core if you run into problems.

What OS does .NET run on?

The . NET Framework (pronounced as "dot net") is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until being superseded by the cross-platform . NET project.

Which Flavour of .NET framework will be work on Linux OS?

The list of Linux distributions on which you can run . NET Core includes Red Hat Enterprise Linux (RHEL), Ubuntu, Debian, Fedora, CentOS, Oracle, and SUSE.


1 Answers

This is for the SSCLI, which uses much of the same codebase and can run on UNIX

like image 69
SLaks Avatar answered Sep 28 '22 09:09

SLaks