I'm working on a VS IsolatedShell 2015 application; my current goal is to enable project references.
However when right-clicking the 'references' node in a project there are basically no options available, most notably for my case the reference manager is missing:
The project itself is based on CPS, so maybe I need to enable this somewhere in there?
The project does contain these capabilities (as documented here):
<ProjectCapability Include="AssemblyReferences;COMReferences;ProjectReferences;SDKReferences" />
I've also added the ReferenceManagerProjects
& DependenciesTree
capabilities (another link) and made sure that there are rule files for the resolved references (I tested this by manually adding some assembly references to the project and those are displayed correctly).
Within the Shell .pkgundef file the 'web specific packages' are enabled, as hinted in the last answer on this page.
I've also looked through all other pkgdef/pkgundef files, but nothing else looked like it should be responsible for the reference manager.
Are there any other places that could lock the reference manager out?
Or is there some interface that has to be implemented for CPS to enable this?