Tagged Questions
The cci tag has no wiki summary.
11
votes
2answers
282 views
CCI vs. Mono.Cecil — advantages and disadvantages
I have seen articles discussing these two similar frameworks, but most of them are two years old or so. I assume both projects are much more mature now than they were two years ago, and the situation ...
9
votes
3answers
3k views
Mono Cecil vs. PostSharp Core vs. Microsoft CCI for implementing AOP framework
Which is the better in terms of capabilities, easy of use, documentation, samples, community/support, VS integration, known implementations, long-term viability, and build speed to implement a custom ...
3
votes
1answer
1k views
Microsoft CCI - resources, references for writing compilers
Some time ago, I was working on compiler, I've used System.Reflection to generate code (IL) from my AST. Now, I've an idea for another compiler that I'd like to work on (it will be another pet ...
1
vote
2answers
206 views
How can I create a new Windows Phone 7 assembly from scratch using CCI or Mono.Cecil
I am working on a tool to generate assemblies for WP7. I am doing this from the full framework. Since Reflection.Emit doesn't work with WP7 but either CCI or Mono.Cecil do I am wondering if there is a ...
1
vote
1answer
80 views
Determining type of CollectionBase via Reflections (or Microsoft.Cci)
Question:
Is there a static way to reliably determine the type contained by a type derived from CollectionBase, using Reflection or Microsoft.Cci?
Background:
I am working on a code generator that ...
0
votes
1answer
142 views
Common Compiler Infrastructure: How to work with ICustomAttribute
I'm attempting to use CCI-Metadata for creating a code generator, by iterating over a set of assemblies, discovering the types and their metadata and then generating the code. I would like to be able ...
0
votes
1answer
222 views
Microsoft CCI based Obfuscator
I want to write an .NET obfuscator based on Microsoft CCI library. I found a few obfuscators written with Mono.Cecil, but there are no CCI based. Are there any potential problems with CCI for this ...