I'm setting up xml comments through properties in project in solution. I want this comments to be seen in other project in same solution. However project and xml being refereenced in bin near .exe isn't enough.
I tried adding the hard link to other project bin folder but it didn't quite work.
I have project tree like:
Solution:
|---ProjectA (referrence to project B)
|---ProjectB (having some summary comments in it generated on build)
I'm using methods from B working as utility methods in project A, but I can't see the summary out of xml. When I'm calling method like
_something.doAFlip()
there is no description while calling class and method while it is provided alongside .dll in bin/netframework etc. with name: myassembly.dll and myassembly.xml together.
<GenerateDocumentationFile>true</GenerateDocumentationFile>(if csproj 2017 format).<ItemGroup> <ProjectReference Include="..\xx\ProjectA.csproj" /> </ItemGroup>And Project B has this generatedocumentationfile which is creating documentation, but although it is generated properly (as I think and can see) it is not shown in intellisense in ProjectA while using methods out of Project B. VS version: 15.8.2