Hello.
I'm using Visual Studio 2013 and VS SDK 2013.
I created my custom project type that contains one or more files in my specific language.
I change the msbuild task "Compile" that invoke my custom compiler. The results of the build is one or more .net assembly dll and related pdb files.
The msbuild task "Compile" is configure properly to set the output property with the list of output assembly made form my compiler.
In a Visual Studio Solution I have my custom project type and c# project. The c# project reference my custom project type with project reference.
When I build the Solution, my custom project is compiled without errors and the c# project that reference my custom project type is compiled successful.
The Intellisense in c# project dosen't work. It is not possible see the assembly declared in my custom project type, but the build works fine.
Is there a way to resolve this problem?
Thanks
Andrea