The site, http://sqlite.phxsoftware.com/, talks about a mixed-mode assembly and a managed-only version of the provider. Are they both named System.Data.SQLite.dll? I installed the managed-only version in windows and it is working. Which, as I understand it, means that I must also have the native sqlite3.dll file somewhere on my machin...
What would a developer used to working in Visual Studio have to give up if they switched to Monodevelop? This hypothetical developer most often develops ASP.NET web applications with C#.
I'm aware that Monodevelop has the basic Visual Studio features like syntax highlighting and support for Visual Studio solutions. What are the deficien...
Hello Everyone,
I am looking for the .NET video processing library. The major requirements:
Cross-platform (100% pure .NET library or a .NET wrapper for a cross-platform library)
Ability to generate thumbnails for video, and read/write some video metadatas.
Supports for most popular video formats and codecs (including H.264 and 3GP. Q...
I am thinking of getting a $20/month VPS Ubuntu box with Slicehost.com or linode.com and running asp.net MVC on mono. Has anyone done this? I have successfully configured asp.net MVC with Apache on my local ubuntu box but I just am not sure how stable this would be? I really like the idea of root access VPS plus being able to run asp.net...
I have an iPhone application that uses small MPEG movies showing hand signs in the Dutch Sign Language. I get the movies from the Gebarencentrum, with their permission. But they are all in the old MPEG-1 format, and the iPhone won't play that. The allowed me to convert a couple of hunderd of the movies in batch and put them on my own web...
Has anyone tried getting the ICSharpCode.TextEditor library to work in Ubuntu under Mono? I know it uses quite a few P/Invoke methods, If anyone found a way to get around these it would be good help to know how it was done. Thanks!
...
Is it possible to run the new ASP.NET MVC 2 Preview 2 on mono?
...
Below is the link
http://stackoverflow.com/questions/1518946/how-to-insert-delete-select-update-values-in-datagridview-in-c-using-mysql
which has the code to connect to a MySQL datbase from a Windows application. It works fine in Windows XP. So I have created a setup file and installed in Ubuntu using Wine.
The issue is with the data ...
Gnome.Icon and Gnome.ThumbnailFactory both want me to pass in a URI of a file whose icon I want -- I only have a MIME type, which I want to look up an icon for. Is there a GNOME C# API function which will give me what I want? Ideally the prototype would just be:
Gdk.Pixbuf LookupIcon (string mime_type);
...
Is it possible to embed a Gtk widget into an application using System.Windows.Forms? Thanks!
...
Any good Gtk libraries out there? I know of Holly Gtk Widgets, any other good ones out there?
Are there any good ones for menubar or toolbar ? Thanks!
...
Is there any quick tutorial on the net on how to get started with using gtksourceview-sharp? I have gtksourceview-sharp.dll but I can't get it to work, even when I have the libgtksourceview-1.0-0.dll in the same directory with it... Thanks!
...
I am playing around with MonoDevelop 2.0 and Mono 2.4 in Ubuntu.
I have run into problems with extension methods not being available (eg mockView.Stub(...)) in RhinoMocks 3.5 for AAA style tests. I downloaded the RhinoMocks dll from Ayende's site rather than compiled from source. My project in MonoDevelop is setup to target framework 3....
I'm looking to a framework which will allow me to have a simple plugin system in my .NET application. It seems MEF is the framework which Microsoft is endorsing, and will become part of .NET 4 (it also seems to work with older .NET versions as a separate library, as well as Mono).
I'm previously used Mono.Addins as for a plugin system f...
When using GTK# from C# on Mono, I often find myself copying out C# data structures into Gtk.ListStore -- it would be much easier if there was a Gtk.TreeModel which wrapped an IEnumerable. Does such a thing exist?
...
Has System.Data in Mono been expanded to include extra functionality?
I'm attempting to make use of the SQL Parser written for Mono in Mono.Data.SqlExpressions but when all the classes in the SqlExpressions namespace have been included the project still fails to compile because the classes in System.Data do not match.
Example, System.Dat...
I have a textview and when something is pasted into it from the clipboard I need to intercept that text and do some preprocessing on it before it ends up in the textview.
I've tried listening to the "PasteClipboard" event which doesn't give me a way to modify the incoming text. and the "textview.Buffer.Changed" event which fires after t...
Let say I started a C# project under Windows (Visual Studio 2008) and I want to switch to Mono. Do I have to recompile all the dependencies my project uses, e.g., NHibernate and every single external dependency that comes along ?
Note 1: The reason I asked this question is that I built a project with MonoDevelop on Ubuntu 9.10 and every...
Take the following C# file, the simplest possible repro of my problem:
using System;
using System.IO;
public static class Test
{
public static void Main(string[] args)
{
string line;
while ((line = Console.In.ReadLine()) != null)
{
Console.Out.WriteLine(line);
}
}
}
When I build...
I am a Linux noob and I would like to debug a unit test.
If I run my test in MonoDevelop it goes green but if I try to debug everything freeze and I have to stop the debugger. My breakpoint on first line of code is never hit. There is no stack trace or information of what could have failed.
Edit 1: Should I install OpenSuse (since it i...