public static SolutionFileProjectReference NewNetCoreOrStandard(string solutionFilePath, string projectFilePath)
        {
            var solutionDirectoryToDependencyProjectRelativeFilePath = VsPathUtilities.GetProjectFileRelativeToSolutionDirectoryPath(solutionFilePath, projectFilePath);

            var projectName = VsPathUtilities.GetProjectName(projectFilePath);

            var solutionFileProjectReference = SolutionFileProjectReference.NewNetCoreOrStandardFromProjectFileRelativePath(projectName, solutionDirectoryToDependencyProjectRelativeFilePath);

            return(solutionFileProjectReference);
        }