Can't open your class diagrams within .Net Core/Standard projects in Visual Studio 2017?
Here is a solution. Open your project file in a text editor and add the following item group to it:
<ItemGroup>
<ProjectCapability Include="CSharp;Managed;ClassDesigner" />
</ItemGroup>
Reload the project in VS2017 and try opening the class diagrams again.