1 write to Remote
Microsoft.Build.Engine.OM.UnitTests (1)
ObjectModelRemoting\Helpers\TestCollectionGroup.cs (1)
224this.Remote = new ProjectCollectionLinker[this.RemoteCount];
45 references to Remote
Microsoft.Build.Engine.OM.UnitTests (45)
ObjectModelRemoting\Helpers\TestCollectionGroup.cs (3)
208foreach (var r in this.Remote) 227this.Remote[i] = this.Group.AddNew(); 272foreach (var remote in this.Remote)
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (1)
27this.Target = this.Remote[0];
ObjectModelRemoting\LinkedConstructionReadOnly_Tests.cs (1)
30var projReal = this.Remote[0].LoadProjectIgnoreMissingImports(this.BigFile);
ObjectModelRemoting\LinkedEvaluationModify_Tests.cs (4)
35var pcRemote = this.StdGroup.Remote[0]; 109var pcRemote = this.StdGroup.Remote[0]; 305var pcRemote = this.StdGroup.Remote[0]; 341var pcRemote = this.StdGroup.Remote[0];
ObjectModelRemoting\LinkedEvaluationReadOnly_Tests.cs (1)
24var projReal = this.Remote[0].LoadProjectWithSettings(this.BigFile, ProjectLoadSettings.IgnoreMissingImports | ProjectLoadSettings.RecordDuplicateButNotCircularImports);
ObjectModelRemoting\LinkedProjectCollection_Tests.cs (33)
30var pcRemote = this.StdGroup.Remote[0]; 67var pcRemote0 = this.StdGroup.Remote[0]; 68var pcRemote1 = this.StdGroup.Remote[1]; 125var pcRemote = this.StdGroup.Remote[0]; 157Array.ForEach(StdGroup.Remote, (r) => r.Importing = true); 160Assert.Equal(0, this.StdGroup.Remote[0].Collection.LoadedProjects.Count); 161Assert.Equal(0, this.StdGroup.Remote[1].Collection.LoadedProjects.Count); 165ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Remote[0].Collection.LoadedProjects, 0, 1); 166ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Remote[1].Collection.LoadedProjects, 0, 1); 168this.StdGroup.Remote[0].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[0], 0, 1); 169this.StdGroup.Remote[1].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[0], 0, 1); 173ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Remote[0].Collection.LoadedProjects, 0, 2); 174ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Remote[1].Collection.LoadedProjects, 0, 2); 176this.StdGroup.Remote[0].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[1], 0, 1); 177this.StdGroup.Remote[1].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[1], 0, 1); 179this.StdGroup.Remote[0].LoadProject(this.StdGroup.StdProjectFiles[2]); 181ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Remote[0].Collection.LoadedProjects, 1, 2); 182ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Remote[1].Collection.LoadedProjects, 0, 3); 184this.StdGroup.Remote[0].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[2], 1, 0); 185this.StdGroup.Remote[1].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[2], 0, 1); 188this.StdGroup.Remote[1].LoadProject(this.StdGroup.StdProjectFiles[0]); 190ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Remote[0].Collection.LoadedProjects, 1, 3); 191ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Remote[1].Collection.LoadedProjects, 1, 3); 193this.StdGroup.Remote[0].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[0], 0, 2); 194this.StdGroup.Remote[1].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[0], 1, 1); 199ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Remote[0].Collection.LoadedProjects, 1, 1); 200ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Remote[1].Collection.LoadedProjects, 1, 1); 202this.StdGroup.Remote[0].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[0], 0, 1); 203this.StdGroup.Remote[1].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[0], 1, 0); 206this.StdGroup.Remote[0].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[1], 0, 0); 207this.StdGroup.Remote[1].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[1], 0, 0); 210this.StdGroup.Remote[0].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[2], 1, 0); 211this.StdGroup.Remote[1].VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[2], 0, 1);
ObjectModelRemoting\LinkedSpecialCasesScenarios.cs (2)
39this.Target = this.Remote[0]; 40this.Guest = this.Remote[1];