ServiceClientGenerator.SolutionFileCreator.SelectProjectAndConfigurationsForSolution C# (CSharp) Method

SelectProjectAndConfigurationsForSolution() public method

public SelectProjectAndConfigurationsForSolution ( string projectFile, ProjectFileCreator.ProjectConfigurationData>.IDictionary solutionProjects, ISet buildConfigurations ) : void
projectFile string
solutionProjects ProjectFileCreator.ProjectConfigurationData>.IDictionary
buildConfigurations ISet
return void
        void SelectProjectAndConfigurationsForSolution(string projectFile, 
                                                       IDictionary<string, ProjectFileCreator.ProjectConfigurationData> solutionProjects, 
                                                       ISet<string> buildConfigurations)
        {
            var projectKey = Path.GetFileNameWithoutExtension(projectFile);
            solutionProjects.Add(projectKey, _allProjects[projectKey]);
            SelectBuildConfigurationsForProject(projectKey, buildConfigurations);
        }