Tagged Questions
15
votes
2answers
314 views
Extending the Mono C# compiler: is there any documentation or precedent?
I am currently involved in some interesting programming language research which has, up until now, centred around extending the upcoming Java 7.0 compiler with some very powerful ...
7
votes
2answers
108 views
Can the Mono compiler as a service be used in a debugging context?
I'd like to know if and how I might be able to use the Mono compiler as a service (see here and here ) within a debugging context to query/modify/visualize/etc objects at runtime within the debugger. ...
6
votes
2answers
2k views
Mono Compiler as a Service (MCS)
I'd like to consume Mono's compiler as a service from my regular .NET 3.5 application.
I've downloaded the latest bits (2.6.7), created a simple console application in Visual Studio and referenced ...
4
votes
1answer
79 views
Why can't I pass just the name of a method where a similarly typed Func is expected?
Why doesn't this C# typecheck? In this example, I am trying to pass a method of type string -> string as a Func<string, string>. It would be seem perfectly reasonable to be able to omit ...
3
votes
1answer
2k views
webkit-sharp for windows package
I wanted to try WebKit by following this tutorial, but gmcs compiler was't able to find "webkit-sharp-1.0" package. Where can i get it and how to install it?
1
vote
2answers
32 views
Defining Custom Library Version in Mono
Does anyone how to set a custom library version, when compiling with the gmcs command? Basically, when I would run "monop -r mydll.dll" it should say Version=MyVersion(e.g.: 1.0.1.0).
Any help is ...
1
vote
2answers
319 views
Include file in C#, Mono (gmcs)
I'm writing a really small application in C# and I need to include an .cs file with some class. How do I do that? I'm looking for some equivalent to PHP's "include file" or Python's "from file import ...
1
vote
1answer
564 views
compile cs files with mono?
I am trying to compile my project with mono on linux. My cmd looks something like...
gmcs Pages/UserProfile.cs Properties/AssemblyInfo.cs queues.cs watch_editor.cs Class1.cs -define:USE_SQLITE ...
0
votes
2answers
60 views
How to include libraries (such as fastJSON) in a c# (gmcs) project
Disclaimer: I just made by hello world with gmcs yesterday
Problem
I want to use fastJSON in my project using gmcs.
How do I
compile the project, consisting of 10 or so files into a library?
...
0
votes
1answer
119 views
Random errors compiling with Mono gmcs on Snow Leopard
I'm running OS 10.6.4, and recently tried installing Mono. Something seems to have gone awry though, I can't even compile basic code.
The following:
using System;
public class HelloWorld
{
...
0
votes
1answer
163 views
Mono .EXE assembly set explorer icon
When compiling with gmcs on Linux, how can I set the explorer icon the final EXE will use?
I have a .ico file to attach to the output exe.
The answer must be build-automatable and execute on Linux ...