The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
58 views

How to read assembly from stream instead of file in Common Compiler Infrastructure

In CCI, it is possible to load a .NET assembly from file: var assembly = (IAssembly) new PeReader.DefaultHost().LoadUnitFrom("C:\assembly.dll"); But I can't find any way to load it from any stream. ...
0
votes
0answers
69 views

Can i use Microsoft.CCI.dll (CCI Metadata) & CCIAST (CI Code) to perform source code analysis while code is being written?

I want to automate "code inspection" while a user is typing in a small Visual Studio Addin i am working on. All i need is a very small subset of functionality that CodeRush, Resharper and FxCop ...
2
votes
2answers
572 views

Migrating custom Code Analysis rules to VS2012

I have written dozens of custom code analysis rules. The rules were developed targeting Visual Studio 2010. As required, the assembly has a reference to version 10.0 of FxCopSdk, Microsoft.Cci, and ...
4
votes
3answers
91 views

Is there a CIL Static Analysis Library like ASM for Java Bytecode? [closed]

I am looking for a library for doing custom static code analysis on CIL code. READ: I have no interest in a tool that already does static analysis like those shown here. For custom analysis with Java ...
0
votes
1answer
135 views

Code Analysis from Common Intermediate Language (CIL)

I would like to do some fairly basic program analysis on my .NET code (which is a combination of .dlls, .exe and C# code). Using Microsoft's Common Compiler Infrastructure, I first converted the code ...
14
votes
2answers
695 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 ...
2
votes
2answers
517 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
137 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 ...
1
vote
2answers
269 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
264 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 ...
12
votes
3answers
4k 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
2k 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 ...