Microsoft.SourceBrowser.HtmlGenerator.ProjectGenerator.GetProjectDestinationPath C# (CSharp) Method

GetProjectDestinationPath() private method

private GetProjectDestinationPath ( Microsoft.CodeAnalysis.Project project, string solutionDestinationPath ) : string
project Microsoft.CodeAnalysis.Project
solutionDestinationPath string
return string
        private string GetProjectDestinationPath(Project project, string solutionDestinationPath)
        {
            var assemblyName = project.AssemblyName;
            if (assemblyName == "<Error>")
            {
                return null;
            }

            AssemblyName = SymbolIdService.GetAssemblyId(assemblyName);
            string subfolder = Path.Combine(solutionDestinationPath, AssemblyName);
            return subfolder;
        }
    }