gmcs is the C# compiler used by mono.
-1
votes
0answers
24 views
Adding args to gmcs command mono c#
I am trying to run the command;
gmcs ../Main.cs ConsileUtility.cs ECC.cs FileIO.cs
But I'm getting the error
"The name devString does not exist in the current context"
This is because ...
1
vote
1answer
243 views
Run mono .exe with the DLL's in a different folder
I compiled the test.cs file (which references a third party library) using the dmcs executable for Mac and the following command line program:
dmcs /out:program.exe test.cs /target:exe ...
2
votes
3answers
355 views
How can you use Mono's mcs to compile and run a csproj file?
I'm a Unix guy who needs to try and compile some C# code for work. I've downloaded Mono for Mac, and the mcs command line tool. There's a csproj file attached to this library which contains XML with ...
10
votes
1answer
2k views
MonoDevelop: is it possible to switch PCL's compiler?
We are starting a cross-platform project to be deployed to Android and iOS. Obviously, a lot of code is to be shared between the two, and some of the code relies heavily on the .NET framework items, ...
2
votes
2answers
2k views
Compile & Install Mono on Centos - Can't get past 'make'
The basic instructions for installing Mono are:
tar xzvf mono-X.XX.tar.gz; cd mono-X.XX
./configure --prefix=/usr/local; make; make install
So I've downloaded the latest version from ...
1
vote
2answers
848 views
Compiling C# code with Windows Forms in Linux
I downloaded a few source codes containing C# code that uses windows forms. Is it possible to compile the codes under the Linux environment (Ubuntu 12.04) and run it?
I already tried successfully to ...
0
votes
1answer
379 views
Mono xbuild uses dmcs instead of gmcs
I have the following code:
using System;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
namespace MyTasks
{
public class SimpleTask : Task
{
public override ...
0
votes
0answers
369 views
How to make the same .exe work with .NET 2.0, 3.5 and 4.0?
I'm developing a .NET 2.0 application, creating the .exe from .cs sources using Mono (gmcs -langversion:ISO-2). It works fine on Windows if the .NET Framework 2.0 is installed, but it doesn't work if ...
1
vote
1answer
84 views
Build error under Mono when moving AssemblyVersion attribute to a separate file
I have a C# library project with a build task that writes the current SVN revision into a file named Version.cs. The resulting file contains just this single line:
[assembly: ...
0
votes
2answers
541 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?
...
7
votes
2answers
207 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. ...
1
vote
2answers
47 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
1k 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 ...
15
votes
2answers
519 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 ...
0
votes
1answer
197 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
{
...
8
votes
2answers
3k 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
89 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 ...
4
votes
1answer
3k 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
1answer
2k 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
1answer
269 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 ...