13 questions
5
votes
1
answer
2k
views
What's the relationship between Mono Cecil and NRefactory and how to compare them to Roslyn? [closed]
I understand that Microsoft's Compiler as a Service or Roslyn project was inspired by Mono Cecil.
But what's the relationship between Mono Cecil and NRefactory? Does one use the other? Or are they ...
1
vote
1
answer
1k
views
Accessing GCC on a cloud for compilation
We are building a cloud service to provide"Compilation As A Service". We have an Ubuntu 12.04 VM on Azure. We managed to install GCC on the VM as well. Now we are building the frontend on Visual ...
1
vote
2
answers
2k
views
Mono.CSharp (Compiler as a Service) changes in version 2.10
I am running Mono version 2.10 on Ubuntu 11.10. I am trying to run the sample provided on http://blog.davidebbo.com/2012/02/quick-fun-with-monos-csharp-compiler-as.html ,but it seems to target a ...
16
votes
2
answers
5k
views
Can I use Roslyn for compile time code rewriting?
For example I have
class Foo: INotifyPropertyChanged {
public event PropertyChangedEventHandler PropertyChanged;
public int Bar {get;set;}
}
Can I get the Foo class AST and rewrite Bar, in ...
8
votes
2
answers
1k
views
What are the differences between Boo vs Nemerle?
It looks like both of these languages are dubbed as "what C# should have been", with hygenic macros, REPL, Compiler as a Serivce (CaaS), static + duck typing (way before C# had it). Are there any ...
11
votes
4
answers
2k
views
What are the benefits of Compiler as a Service
In Anders Hejlsberg's .NET 4.0 presentation he discussed in NET 5.0 ("or some future release") they are working on a "Compiler as a Service" model.
Anders Hejlsberg's states: [source][1]
"We want to ...
24
votes
5
answers
8k
views
what is the state of the "C# compiler as a service " [closed]
Back at the PDC in 2008, in the C# futures talk by Anders Hejlsberg he talked about rewriting the C# compiler and providing a "compiler as a service" I certainly got the impression at the time that ...