Hello Tian Min,
i've created a multi file assembly, containing 3 modules.
The multi file assembly contains only the manifest.
In my C# project, i reference the multi file assembly.
The intellisense for the interfaces of the 3 modules
(referenced in the manifest) is not working. Surprisingly,
the compilation is working.
If i'm using a VB.NET project and add a reference to the
same multi file assembly, the intellisense is working. So
it seems to be a bug in the C# integration in VisualStudio
2003?
Here are the statements to create the multi file assembly:
Creating Modules:
csc /out:$(TargetName).mod /target:module $(ProjectDir)
Class1.cs
csc /out:$(TargetName).mod /target:module $(ProjectDir)
Class2.cs
csc /out:$(TargetName).mod /target:module $(ProjectDir)
Class3.cs
Creating multi file assembly:
al /out:foxRay.dll /v:0.9.0.* /t:lib $(ProjectDir)(OutDir)
Class1.mod $(ProjectDir)$(OutDir)Class2.mod
$(ProjectDir$(OutDir)Class3.mod
The intellisense for foxRay.dll in a C# project is not
working, the intellisense in VB.NET project is working.
Any ideas?
Regards
Frank