1 write to Local
Microsoft.Build.Engine.OM.UnitTests (1)
ObjectModelRemoting\Helpers\TestCollectionGroup.cs (1)
223this.Local = this.Group.AddNew();
42 references to Local
Microsoft.Build.Engine.OM.UnitTests (42)
ObjectModelRemoting\Helpers\TestCollectionGroup.cs (4)
206this.Local.Importing = false; 207result.Add(this.Local, new HashSet<Project>(this.Local.Collection.LoadedProjects)); 271this.Clear(this.Local);
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (3)
28this.Local.Importing = true; 37this.StdGroup.Local.Importing = true; 45var newView = this.StdGroup.Local.GetLoadedProjects(tempPath).FirstOrDefault();
ObjectModelRemoting\LinkedConstructionReadOnly_Tests.cs (3)
31this.Local.Importing = true; 35var projView = this.Local.GetLoadedProjects(this.BigFile).FirstOrDefault(); 47var projView = this.Local.GetLoadedProjects(this.BigFile).FirstOrDefault();
ObjectModelRemoting\LinkedEvaluationModify_Tests.cs (4)
34var pcLocal = this.StdGroup.Local; 108var pcLocal = this.StdGroup.Local; 304var pcLocal = this.StdGroup.Local; 340var pcLocal = this.StdGroup.Local;
ObjectModelRemoting\LinkedEvaluationReadOnly_Tests.cs (3)
25this.Local.Importing = true; 29var projView = this.Local.GetLoadedProjects(this.BigFile).FirstOrDefault(); 41var projView = this.Local.GetLoadedProjects(this.BigFile).FirstOrDefault();
ObjectModelRemoting\LinkedProjectCollection_Tests.cs (20)
29var pcLocal = this.StdGroup.Local; 66var pcLocal = this.StdGroup.Local; 124var pcLocal = this.StdGroup.Local; 156this.StdGroup.Local.Importing = true; 159Assert.Equal(0, this.StdGroup.Local.Collection.LoadedProjects.Count); 163this.StdGroup.Local.LoadProject(this.StdGroup.StdProjectFiles[0]); 164ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Local.Collection.LoadedProjects, 1, 0); 167this.StdGroup.Local.VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[0], 1, 0); 171this.StdGroup.Local.LoadProject(this.StdGroup.StdProjectFiles[1]); 172ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Local.Collection.LoadedProjects, 2, 0); 175this.StdGroup.Local.VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[1], 1, 0); 180ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Local.Collection.LoadedProjects, 2, 1); 183this.StdGroup.Local.VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[2], 0, 1); 189ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Local.Collection.LoadedProjects, 2, 2); 192this.StdGroup.Local.VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[0], 1, 1); 196this.StdGroup.Local.Collection.UnloadAllProjects(); 198ViewValidation.VerifyProjectCollectionLinks(this.StdGroup.Local.Collection.LoadedProjects, 0, 2); 201this.StdGroup.Local.VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[0], 0, 1); 205this.StdGroup.Local.VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[1], 0, 0); 209this.StdGroup.Local.VerifyProjectCollectionLinks(this.StdGroup.StdProjectFiles[2], 0, 1);
ObjectModelRemoting\LinkedSpecialCasesScenarios.cs (5)
42this.LocalBig = this.Local.LoadProjectIgnoreMissingImports(this.LocalBigPath); 52this.Local.Importing = true; 54var targetView = this.Local.GetLoadedProjects(this.TargetBigPath).FirstOrDefault(); 61var guestView = this.Local.GetLoadedProjects(this.GuestBigPath).FirstOrDefault(); 82var newView = this.StdGroup.Local.GetLoadedProjects(tempPath).FirstOrDefault();