Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Cloud 9 support .Net for build or deploy or debug?

I really want to know is Cloud 9(https://c9.io/) support .Net(C#)? My target is using .Net 4.0 + MVC 3.0 for my project.

There are "Run With" future for "New Runner", is that can make Cloud 9 support .Net?

like image 618
Roy Avatar asked Sep 11 '14 10:09

Roy


People also ask

Does Cloud9 support C#?

Cloud9 IDE also offered syntax highlighting for various languages, such as C#, C/C++, Java, JavaScript, Python, and Ruby.

What features are offered by Cloud9 for development and deployment purposes?

AWS Cloud9 is a cloud-based integrated development environment (IDE) that lets you to write, run, and debug code from any machine with just a browser. The Cloud9 IDE provides the software and tooling needed for dynamic programming languages including JavaScript, Python, PHP, Ruby, Go, and C++.


1 Answers

Yes, it does.

enter image description here

INSTALL PROCEDURE

Add the Mono Project GPG signing key and the package repository

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
sudo apt-get update --fix-missing

Then install Mono as described

sudo apt-get install mono-complete
sudo apt-get install mono-devel
sudo apt-get install referenceassemblies-pcl

HOW COMPILE CONSOLE APPLICATION

To compile, use mcs:

mcs filename.cs

The compiler will create filename.exe, which you can run using:

mono filename.exe

ADDITIONAL RESOURCES

  • Visit mono-project.com/docs/getting-started/install/linux/ for support on the install procedure
  • Visit mono-project.com/docs/getting-started/mono-basics/ to learn more about using mono basics
  • Visit mono-project.com/docs/about-mono/compatibility/ for latest version of .NET support
like image 91
Boo Avatar answered Sep 18 '22 15:09

Boo