ServiceClientGenerator.SolutionFileCreator.SelectProjectAndConfigurationsForSolution C# (CSharp) 메소드

SelectProjectAndConfigurationsForSolution() 공개 메소드

public SelectProjectAndConfigurationsForSolution ( string projectFile, ProjectFileCreator.ProjectConfigurationData>.IDictionary solutionProjects, ISet buildConfigurations ) : void
projectFile string
solutionProjects ProjectFileCreator.ProjectConfigurationData>.IDictionary
buildConfigurations ISet
리턴 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);
        }