Questions tagged [monodevelop]

MonoDevelop is an IDE focusing on developing desktop, mobile and web applications using C# and other .NET languages. It's open source and extensible, and runs on Mac, Windows and Linux.

MonoDevelop is the IDE of the Mono Project, an open-source cross-platform implementation of the .NET standards. In addition to the Mono runtime, MonoDevelop supports .NET and C/C++; third-party plugins exist to add support for other languages and runtimes.

Bugs should be filed on the MonoDevelop bug tracker. Please ensure you are using the most recent version of MonoDevelop.

For more in-depth discussions, see the MonoDevelop mailing list and IRC channel.

MonoDevelop was the bundled IDE with the editor up until Unity version 5, in which it was replaced for to edit C# scripts.

2672 questions
14
votes
1 answer

FormatException when using "X" for hexadecimal formatting

I took the following code from HexConverter - Unify Community Wiki string hex = color.r.ToString("X2") + color.g.ToString("X2") + color.b.ToString("X2"); This gives me the exception: FormatException: The specified format 'X2' is invalid I tried…
Kay
  • 12,918
  • 4
  • 55
  • 77
14
votes
2 answers

MonoDevelop 3.1.1 can't find System.Xml.Linq

I just downloaded the trial version of "Mono for Android"/MonoDevelop 3.1.1 for Mac OS X. I am trying to parse some XML using XDocument. But I can't seem to find the import I need: using System.Xml.Linq; I get the following error: The type or…
Sunkas
  • 9,542
  • 6
  • 62
  • 102
14
votes
1 answer

How to enable iPhone Settings (bundle, plist) in MonoTouch

I'm trying to get the iPhone Settings working in a small test app I'm writing using MonoTouch/MonoDevelop. It's probably super basic/fundamental in Xcode... ...however I didn't immediately see how to do it in the MonoTouch examples, and after a bit…
Conceptdev
  • 3,261
  • 1
  • 21
  • 23
13
votes
5 answers

Visual studio project to MonoDevelop

Is there a way to transfer a Visual Studio project to the MonoDevelop environment? at FAQ - MonoDevelop it is said that: MonoDevelop can open, manipulate and save MSBuild-based projects directly in mopst cases. In fact, since MonoDevelop 2.0 the…
user1088695
13
votes
2 answers

system.web functionality in Mono missing?

I need HttpUtility for encoding strings, but it seems it was supported, but no longer. Actually, the whole System.Web is gone. Is there an alternative? I need to Javascript Escape some strings.
13
votes
4 answers

asp.net template not found after installed "monodevelop" IDE on ubuntu 16.04

i currently installed mono-complete and monodevelop from the mono official site and entered this commands below sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF echo "deb…
Ahmed Nabil
  • 131
  • 1
  • 8
13
votes
3 answers

Error: *.csproj could not import "$(MSBuildBinPath)\Microsoft.CSharp.targets" on MonoDevelop

So, I have MonoDevelop v5.7 on Linux Mint 16. I create new C# ConsoleProject with default code on it using System; namespace Lab1 { class MainClass { public static void Main (string[] args) { Console.WriteLine…
Zagorodniy Olexiy
  • 2,132
  • 3
  • 22
  • 47
13
votes
2 answers

Unity3D new UI System and List Views

I am trying to build a list view with the new Unity UI (2014). The vertical and scrollable list should contain image buttons, which should retain their aspect ratio based on their assigned image! All button should stretch to width of screen. The…
Gering
  • 3,010
  • 3
  • 21
  • 23
13
votes
3 answers

Xamarin IDE Access to the Path is denied

I'm porting over a Visual Studio C# solution with many projects and creating a new solution in the Xamarin IDE - all on windows. I am porting / re-creating 1 project at a time and then compiling. I can compile each project individually but and…
mojoker
  • 308
  • 2
  • 14
13
votes
4 answers

Unable to hit breakpoints in MonoDevelop

On my archlinux system I did a fresh installation of: mono 3.0.7 monodevelop 4.0.8 monodevelop-debugger-gdb 4.0 When I debug an application the debugger doesn't stop on the breakpoints, even not on the System.Diagnostics.Debugger.Break ();…
Nicolas
  • 6,289
  • 4
  • 36
  • 51
12
votes
6 answers

How do I use Linq in MonoDevelop 2.0 on OS X?

I installed MonoDevelop 2.0 on my Mac. I created a new Console Application. "Hello World" program runs fine. But I can't use Linq. using System. doesn't show Linq option. What should I do?
Sam Kong
  • 5,472
  • 8
  • 51
  • 87
12
votes
1 answer

Using mkbundle to port Mono GTK# app to other platforms

I'm a long-time C# developer but new to Mono and, especially, Gtk#. I have developed a small app using C# and Gtk#. I need this app to work on Windows, Linux and Mac so I decided to go for Mono and, so far, it seems to be a cool framework. What my…
Sebastian Brandes
  • 726
  • 1
  • 6
  • 15
12
votes
3 answers

How to debug unit test with MonoDevelop?

I have MonoDevelop 2.4.2 on OSX. I have a failing unit test that I would like to debug. Is there a way to do it? I found a reference on MonoDevelop mailing list but my version does not have mentioned option. Am I missing something?
Michal Sznajder
  • 9,338
  • 4
  • 44
  • 62
12
votes
3 answers

How to disable physics system in unity

I want to develop native android app in unity engine, and does not need to use physics, could it possible to disable physics engine for specific project in unity.
Muhammad Ameen
  • 179
  • 1
  • 2
  • 9
12
votes
1 answer

Xamarin auto-import shortcut

In eclipse, it's ctrl+shift+o, which automaticly imports everything. But how can I do this in Xamarin? I don't remember every package and there aren't those lightbulbs, which are in Eclipse that would help me to "quick-fix" the problem. So, is there…
Vilda
  • 1,675
  • 1
  • 20
  • 50