public void LoadSolution(string slnFilename) { _slnFilename = slnFilename; ////read sln file _slnMx = new SolutionMx(); _slnMx.ReadSolution(slnFilename); cmbNetStd.Items.AddRange(new object[] { "classic", //"netstandard1.3", //"netstandard1.6", "netstandard2.0", //"netstandard2.1", "xamarin_ios", "xamarin_droid", "xamarin_ios_and_droid" }); cmbNetStd.SelectedIndex = 0; _slnListViewController = new SolutionListViewController(); _slnListViewController.SetSolutionListView(this.listView1); _slnListViewController.SetMergePlanListView(this.listView2); _slnListViewController.SetProjectReferenceListView(this.lstAsmReferenceList); _slnListViewController.LoadSolutionMx(_slnMx); }
private void cmdReadSln_Click(object sender, EventArgs e) { //read sln file slnMx = new SolutionMx(); slnMx.ReadSolution(@"D:\projects\HTML-Renderer\Source\MainDev.sln"); _slnListViewController = new SolutionListViewController(); _slnListViewController.SetSolutionListView(this.listView1); _slnListViewController.SetMergePlanListView(this.listView2); _slnListViewController.SetProjectReferenceListView(this.lstAsmReferenceList); _slnListViewController.LoadSolutionMx(slnMx); }
public void LoadSolution(string slnFilename) { this.slnFilename = slnFilename; ////read sln file slnMx = new SolutionMx(); slnMx.ReadSolution(slnFilename); _slnListViewController = new SolutionListViewController(); _slnListViewController.SetSolutionListView(this.listView1); _slnListViewController.SetMergePlanListView(this.listView2); _slnListViewController.SetProjectReferenceListView(this.lstAsmReferenceList); _slnListViewController.LoadSolutionMx(slnMx); }