VSSonarExtensionUi.Model.Configuration.RoslynManagerModel.AssociateWithNewProject C# (CSharp) Method

AssociateWithNewProject() public method

Associates the with new project.
public AssociateWithNewProject ( Resource project, string workDir, ISourceControlProvider sourceModelIn, Profile>.Dictionary profile, string visualStudioVersion ) : void
project Resource The project.
workDir string The work directory.
sourceModelIn ISourceControlProvider The source model in.
profile Profile>.Dictionary
visualStudioVersion string
return void
        public void AssociateWithNewProject(
            Resource project,
            string workDir,
            ISourceControlProvider sourceModelIn,
            Dictionary<string, Profile> profile,
            string visualStudioVersion)
        {
            this.Profile = profile;
            this.SourceDir = workDir;
            this.associatedProject = project;
        }