Visual Studio Code Coverage Not Showing All Assemblies
The assemblies are not showing up as they are not loaded during the current test run.
Add some simple tests that use a type in each of the other assemblies.
Adding <DebugType>Full</DebugType>
to target .csproj file, worked for me
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<DebugType>Full</DebugType>
</PropertyGroup>