Difference between revisions of "Mono"

From the Linux and Unix Users Group at Virginia Teck Wiki
Jump to: navigation, search
imported>Cov
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''Mono''' is a cross-platform [[Free Software]] [[w:.NET Framework|.NET]] compiler and runtime.
+
'''Mono''' is a cross-platform [[gp:Free Software|Free Software]] [[w:.NET Framework|.NET]] compiler and runtime.
  
 
Programming in [[w:C Sharp (programming language)|C#]] is required for [[ECE 4564 Network Application Design]]. Thanks to Mono, all assignments for that class can be completed from Linux, if [[w:GTK Sharp|GTK#]] is substituted for [[w:Windows Forms|Windows Forms]].
 
Programming in [[w:C Sharp (programming language)|C#]] is required for [[ECE 4564 Network Application Design]]. Thanks to Mono, all assignments for that class can be completed from Linux, if [[w:GTK Sharp|GTK#]] is substituted for [[w:Windows Forms|Windows Forms]].
Line 8: Line 8:
 
$ sudo apt-get install mono-complete monodevelop monodevelop-debugger-mdb monodoc-browser
 
$ sudo apt-get install mono-complete monodevelop monodevelop-debugger-mdb monodoc-browser
 
</pre>
 
</pre>
 
=WSDL=
 
To use a WSDL file, perform the following steps:
 
<pre>
 
$ wget -O WeatherForecast.wsdl http://www.webservicex.net/WeatherForecast.asmx?WSDL
 
$ wsdl WeatherForecast.wsdl
 
$ gmcs /target:library -r:/usr/lib/mono/2.0/System.Web.Services.dll WeatherForecast.cs
 
</pre>
 
Then, add .dll, in this case <code>WeatherForecast.dll</code>, as a reference in your IDE.
 
  
 
=External Links=
 
=External Links=
Line 23: Line 14:
 
* [http://www.mono-project.com/Web_Services Mono Web Services walkthrough]
 
* [http://www.mono-project.com/Web_Services Mono Web Services walkthrough]
  
[[Category:Libre course software]]
+
[[Category:Software]]
 +
[[Category:Howtos]]

Latest revision as of 22:47, 3 January 2019

Mono is a cross-platform Free Software .NET compiler and runtime.

Programming in C# is required for ECE 4564 Network Application Design. Thanks to Mono, all assignments for that class can be completed from Linux, if GTK# is substituted for Windows Forms.

Development Environment

The recommended development environment is MonoDevelop, which as of version 2.0 comes bundled with a GUI designer. Note that the debugger and API documentation are packaged separately. To install everything on Ubuntu Karmic, run:

$ sudo apt-get install mono-complete monodevelop monodevelop-debugger-mdb monodoc-browser

External Links