18 references to Location
Microsoft.Build (13)
BackEnd\Components\Logging\TargetLoggingContext.cs (2)
53projectLoggingContext.BuildEventContext, target.Name, projectFullPath, target.Location.File, 114LoggingService.LogTargetFinished(BuildEventContext, _target.Name, projectFullPath, _target.Location.File, success, targetOutputWrapper);
BackEnd\Components\RequestBuilder\TargetBuilder.cs (2)
156targets.Add(new TargetSpecification(targetName.name, targetExists ? targetInstance.Location : _projectInstance.ProjectFileLocation, targetName.reason)); 563TargetFile = currentTargetEntry.Target.Location.File,
BackEnd\Components\RequestBuilder\TargetEntry.cs (3)
390TargetFile = _target.Location.File, 431List<ItemBucket> buckets = BatchingEngine.PrepareBatchingBuckets(GetBatchableParametersForTarget(), _baseLookup, _target.Location, null); 628List<ItemBucket> batchingBuckets = BatchingEngine.PrepareBatchingBuckets(GetBatchableParametersForTarget(), _baseLookup, _target.Location, targetLoggingContext);
Construction\Solution\SolutionProjectGenerator.cs (5)
1017if (traversalInstance.Targets[targetName].Location.File == traversalProject.FullPath) 2411initialTarget.Location, 2412initialTarget.Location); 2416initialTarget.Location, 2417initialTarget.Location,
Evaluation\Evaluator.cs (1)
1039_evaluationLoggingContext.LogComment(MessageImportance.Low, "OverridingTarget", otherTarget.Name, otherTarget.Location.File, targetName, targetElement.Location.File);
Microsoft.Build.Engine.UnitTests (5)
BackEnd\TargetEntry_Tests.cs (2)
1031TargetEntry entry = new TargetEntry(requestEntry, this, new TargetSpecification(targetName, project.Targets[targetName].Location), lookup, null, TargetBuiltReason.None, _host, null, false); 1047TargetEntry 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)
800targetInstance.Location.ShouldBe(projectInstance.ProjectFileLocation);
TestComparers\ProjectInstanceModelTestComparers.cs (2)
94Assert.Equal(x.Location, y.Location, new Helpers.ElementLocationComparerIgnoringType());