20 references to Location
Microsoft.Build (15)
BackEnd\Components\Logging\TargetLoggingContext.cs (2)
52projectLoggingContext.BuildEventContext, target.Name, projectFullPath, target.Location.File, 113LoggingService.LogTargetFinished(BuildEventContext, _target.Name, projectFullPath, _target.Location.File, success, targetOutputWrapper);
BackEnd\Components\RequestBuilder\RequestBuilder.cs (1)
1273projectTargetInstance.Value.Location.Equals(targetResult.TargetLocation);
BackEnd\Components\RequestBuilder\TargetBuilder.cs (3)
161targets.Add(new TargetSpecification(targetName.name, targetExists ? targetInstance.Location : _projectInstance.ProjectFileLocation, targetName.reason)); 529targetResult.TargetLocation = currentTargetEntry.Target.Location; 573TargetFile = currentTargetEntry.Target.Location.File,
BackEnd\Components\RequestBuilder\TargetEntry.cs (3)
385TargetFile = _target.Location.File, 426List<ItemBucket> buckets = BatchingEngine.PrepareBatchingBuckets(GetBatchableParametersForTarget(), _baseLookup, _target.Location, null); 623List<ItemBucket> batchingBuckets = BatchingEngine.PrepareBatchingBuckets(GetBatchableParametersForTarget(), _baseLookup, _target.Location, targetLoggingContext);
Construction\Solution\SolutionProjectGenerator.cs (5)
1009if (traversalInstance.Targets[targetName].Location.File == traversalProject.FullPath) 2424initialTarget.Location, 2425initialTarget.Location); 2429initialTarget.Location, 2430initialTarget.Location,
Evaluation\Evaluator.cs (1)
1052_evaluationLoggingContext.LogComment(MessageImportance.Low, "OverridingTarget", otherTarget.Name, otherTarget.Location.File, targetName, targetElement.Location.File);
Microsoft.Build.Engine.UnitTests (5)
BackEnd\TargetEntry_Tests.cs (2)
1030TargetEntry entry = new TargetEntry(requestEntry, this, new TargetSpecification(targetName, project.Targets[targetName].Location), lookup, null, TargetBuiltReason.None, _host, null, false); 1046TargetEntry entry = new TargetEntry(requestEntry, this, new TargetSpecification(target, project.Targets[target].Location), baseEntry.Lookup, baseEntry, TargetBuiltReason.None, _host, null, false);
Instance\ProjectInstance_Internal_Tests.cs (1)
799targetInstance.Location.ShouldBe(projectInstance.ProjectFileLocation);
TestComparers\ProjectInstanceModelTestComparers.cs (2)
94Assert.Equal(x.Location, y.Location, new Helpers.ElementLocationComparerIgnoringType());