public class TypeWithNested
{
public string Property { get; set; }
public class NestedType : ComplexTypeConfiguration<ScreenState>
{
}
}
and I add a TypeScript Intellisense file from the WebEssentials menu, the intellisense file isn't generated properly, and I see this error in the Output screen:
System.Runtime.InteropServices.COMException (0x80004005): A namespace may exist in multiple projects so it is not possible to retrieve the name through the ProjectItem
at Microsoft.VisualStudio.CSharp.Services.Language.BaseException.ThrowEFAIL(ILangService iLangService, jrc_StringResource_identifiers stringId, Object[] args)
at Microsoft.VisualStudio.CSharp.Services.Language.CodeModel.CExternalCodeElementBase.get_ProjectItem()
at EnvDTE.CodeClass.get_ProjectItem()
at MadsKristensen.EditorExtensions.IntellisenseParser.ProcessElement(CodeElement element, List`1 list, HashSet`1 underProcess)
at MadsKristensen.EditorExtensions.IntellisenseParser.ProcessClass(CodeClass cc, CodeClass baseClass, List`1 list, HashSet`1 underProcess)
at MadsKristensen.EditorExtensions.IntellisenseParser.ProcessElement(CodeElement element, List`1 list, HashSet`1 underProcess)
at MadsKristensen.EditorExtensions.IntellisenseParser.ProcessFile(ProjectItem item, HashSet`1 underProcess)
at MadsKristensen.EditorExtensions.ScriptIntellisenseListener.<>c__DisplayClass1.<ProcessAsync>b__0()
This is with WebEssentials 2013 (2.5.3) running in VS2013 Update 4
If I have a class like the following:
and I add a TypeScript Intellisense file from the WebEssentials menu, the intellisense file isn't generated properly, and I see this error in the Output screen:
This is with WebEssentials 2013 (2.5.3) running in VS2013 Update 4