monodevelop

System.TypeLoadException (WebPartsZone) in mono

I load a user control in a web page which throws an exception: this.LoadControl(someusercontrol); // throws TypeLoadException The details : System.Reflection.ReflectionTypeLoadException: The classes in the module cannot be loaded. at (wrapper managed-to-native) System.Reflection.Assembly:GetTypes (bool) at System.Reflection.Assem...

Debugging in Monodevelop on OSX not quite working

Hey guys, just installed on my Mac Snow Leopard OSX: Mono 2.6 and Monodevelop 2.2 I've created a simple C# Console App: public static void Main (string[] args) { Console.WriteLine ("Hello World!"); Console.Read(); } When I start to type "Console" intellisense works perfectly. When I run the app in Debug mode...

In MonoDevelop, how do I include all assemblies from a package as references?

I want to include all the assemblies in the GtkSharp package. Right now, I have to find every assembly and include it individually. Is there any way to simple include all assemblies in the GtkSharp package? ...

ScriptManager causes server error

I'm playing around with MonoDev on my mac and wanting to see how well it can run basic ASP.NET applications which I've worked on. I chose a very basic site, it's got a handful of ASP.NET pages, all of which inherit nested master pages and some ASP.NET AJAX stuff. The project is .NET 2.0 and I have the web.config set appropriately for AS...

MonoDevelop - Arabic and other Unicode in code editor

When I paste in some upper unicode, or even ansi like العربية I get gibberish in MonoDevelop. I am using the MonoTouch framework. Any idea how to get it to allow me to paste in Arabic, Chinese etc.... ian ...

How to development in Visual Studio and then deploy apps to Linux machine (OS - Ubuntu, web server - Nginx)

How to develop app in Visual Studio and then deploy apps to Linux machine (OS - Ubuntu, web server - Nginx). Can any explain the steps, it will be a great help ...

How do I get rid of the annoying ctrl+backspace behaviour in MonoDevelop?

In MonoDevelop (linux version), ctrl+backspace clears all the linebreaks till the last word/char block, and delete that. For example: qwe asd . . . _ (where _ is my cursor focus is on, and . are line breaks, pressing ctrl+backspace will return me this: qwe _ instead of: qwe asd . . _ How do I get rid of it? ...

How do I set a proxy in Monodevelop to get to the Add-in Manager repos ?

I have monodevelop running great except for the fact that I need to get the "Subsversion Add-in for Windows" and my work proxy is blocking the repo. Any idea of how I can specify the proxy info so I can get to the repo? ...

App Store error: The binary you uploaded was invalid.

The notorious error haunts me in App Store: "The binary you uploaded was invalid. The signature was invalid, or it was not signed with an Apple submission certificate." Steps I've taken: 1) I'm using Monotouch / MonoDevelop. 2) App works on iPhone Simulator and on Device. 3) I've made the distribution build according to the examples ...

switching to open source solutions

I'm a ASP.NET MVC Visual Studio, SQL Server web developer. I would like to switch to equivalent open source solutions. Please help me out. ...

Converting ASP.NET app to Mono without .csproj and .sln

I have an ASP.NET application which I'd like to try running on Mono, just as an experiment. When I bring the application as it is to Mac, start xsp2 on the directory, it runs as I would imagine it should. That is, it crashes on because of the file system path differences (\ vs / in directories). This is where I would like to open it in ...

Codeplex MonoDevelop

Does MonoDevelop work with Microsoft's CodePlex using SVN? ...

How to install Nemerle on Mono

I can't find the solution How to install Nemerle on Mono I've got Nemerle Studio , But I want to try mono with it. Maybe I will make something for Linux later, now I want to try it on windows. ...

MonoTouch Transitioning from a UINavigationController to a UITabController

Hi there, I am just beginning using MonoTouch and having a great time with it. I am however having an issue getting to grips with how the UIControllers and views interact with each other. For instance, i am beginning the app using a UINavigationController but under certain circumstances i want to transition to a UITabController. How is...

Group .net project: 1 Developer on PC with VS 2005 and 1 Developer on Mac with MonoDeveloper

I'm new to .net but a mac user. I need to team with a friend on a new project. He's currently on a pc using VS 2005. And I'd rather try Mono as oppose to running xp or vista in a VM and install VS there. If I use Mono Developer. will we be able to share files in the same project? Is the current version of Mono Developer the equivalent o...

Monodevelop reformat strings

In MonoDevelop when I select the "Format" menu to clean up the code spacing it converts this code: string a =@" sdfsdf sdfsdf sdfsdf"; into single line string a = @"sdfsdf\n\sdfsdf\n\sdfsdf\n\n"; Is there a way to tell the formatter to ignore strings on multiple lines? ...

Mono - Could not load file or assembly

Hi, i just exported my project to my new imac an loaded my solution into monodevelop. After the successfully compilation i started the project, and i always getting the same error. ** (/Library/Frameworks/Mono.framework/Versions/2.6.1/lib/mono/2.0/xsp2.exe:1576): WARNING **: The following assembly referenced from /private/var/folders...

MonoDevelop - Remove SVN Source Control

I have a project which is attached to a SVN provider. I wish to move it to another repository, but when I try to publish to this new location, I am told the project is already bound to another. How do I break the link to that provider? MonoDevelop 2.2 ...

What is the difference between a MonoDevelop solution file and a Visual Studio Solution file?

MonoDevelop allows you to save your solution in either MonoDevelop format or Visual Studio format. What is the difference between these two formats? Are they different ways or storing the same thing? If not, what does one store that the other does not? ...

How to run a project with command line arguments (switches) after building in Monodevelop?

How to run a project with command line arguments (switches) after building in Monodevelop? ...