Adding the reference will require editing the project files where you want to add it. If it helps, you can peek at the project file where it is already referenced to see a working example.
Near the bottom of the project file (ex, a .csproj) there is likely already an <Import>
element such as
<Project ...>
[...]
<Import Project="$(MSBuildToolsPath)Microsoft.CSharp.targets" />
</Project>
You add the Shared project by adding another element like that for the Shared project. For example:
<Project ...>
[...]
<Import Project="..SharedShared.projitems" Label="Shared" />
<Import Project="$(MSBuildToolsPath)Microsoft.CSharp.targets" />
</Project>
It is important for the Label attribute to be set to "Shared." If you set it to something else it will not be recognized as a Shared project by Visual Studio and will not appear under References. Project should be set to the path to the appropriate ".projitems" file.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…