I am trying to use Cecil, a library written by Jb Evain to generate and inspect programs and libraries in the ECMA CIL format. See link : Mono.Cecil | Mono
using System;
using UnityEditor;
using Mono.Cecil;
public class TestCecil
{
[MenuItem("Assets/TestMenu")]
protected static void LookForUnusedClasses(){
}
}
But I have the following error :
The type or namespace name
Cecildoes not exist in the namespaceMono. Are you missing an assembly reference?
Not sure if this changes anything, but I tried switching from .Net 2.0 Subset to regular, but I still get the same errors. Thanks in Advance.