Skip to main content

Developing .NET Applications with Mono in Linux

Mono is a Cross Platform, Open Source .NET development framework
  1. Install MonoDevelop IDE
    Go to terminal sudo apt-get install monodevelop
  2. To run asp.net application you'll need a webserver with asp.net support
    XSP is a simple web server written in C# that can be used to run asp.net applications sudo apt-get install mono-xsp2
  3. Now You are ready to go
  4. Applications->Programming->MonoDevelop and start developing .NET applications from your ubuntu
  5. To develop VB.NET applications sudo apt-get install mono-vbnc
Lots of other packages and plugins are also available for mono. Try them by yourself. And enjoy the freedom of OpenSource

Comments

  1. -> WvDial: Internet dialer version 1.60
    --> Cannot get information for serial port.
    --> Initializing modem.
    --> Sending: ATZ
    ATZ
    OK
    --> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
    ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
    OK
    --> Modem initialized.
    --> Configuration does not specify a valid phone number.
    --> Configuration does not specify a valid login name.
    --> Configuration does not specify a valid password.

    ReplyDelete
  2. this was the response. also after saving the vim how to escape from the vim mode? This comment is after the wvdial settings.

    ReplyDelete
  3. It seems, you haven't entered a phone number, a login name and a password or you forgot to remove the ; symbol from the beginning of field line
    Check these and try again.......

    ReplyDelete

Post a Comment

Popular posts from this blog

A Quick Start for VIM

Vim is a very powerful console based text editor specially designed for programmers Vim basically has two modes which are explained below Insert Mode To Start Editing the text use insert mode press i on your keyboard to turn on insert mode... Command Mode  To issue commands, such as save or quit use command mode press Esc key on your keyboard to turn on command mode.... To save (write to file)  :w To quit  :q To save and quit  :wq Note :   To Enable C-style indentation issue this command on command mode   :set cindent  This post will let you start with vim

Updating Firefox

It'll take some time to get the official mozilla release of firefox to appear on the ubuntu repository (some security reasons).... You cant update the firefox from firefox because you cant find the update option in the Help menu If you wanna keep your browser up-to-date with mozilla official release Goto-»Applications-»Accessories-»Terminal -»then type sudo firefox then you'll see update option in the Help menu