131 instantiations of BuildEventFileInfo
Microsoft.Build (131)
BackEnd\BuildManager\BuildManager.cs (4)
2231((IBuildComponentHost)this).LoggingService.LogFatalBuildError(buildEventContext, ex, new BuildEventFileInfo(submission.BuildRequestData.ProjectFullPath)); 2864loggingService?.LogError(buildEventContext, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, DebugUtils.DebugDumpPath, exception); 2873loggingService?.LogError(BuildEventContext.Invalid, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, DebugUtils.DebugDumpPath, shutdownPacket.Exception.ToString()); 3019((IBuildComponentHost)this).LoggingService.LogError(buildEventContext, new BuildEventFileInfo(String.Empty), "UnableToCreateNode", response.RequiredNodeType.ToString("G"));
BackEnd\Components\ProjectCache\ProjectCacheService.cs (2)
589var buildEventFileInfo = new BuildEventFileInfo(buildRequest.ProjectFullPath); 875var buildEventFileInfo = new BuildEventFileInfo(requestConfiguration.ProjectFullPath);
BackEnd\Components\RequestBuilder\RequestBuilder.cs (1)
308_projectLoggingContext.LogError(new BuildEventFileInfo(String.Empty), "FailedToReceiveTaskThreadStatus", BuildParameters.RequestBuilderShutdownTimeout);
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (2)
277_loggingService.LogError(_buildEventContext, new BuildEventFileInfo(String.Empty), "BuildTargetCompletely", _targetToAnalyze.Name); 295_loggingService.LogError(_buildEventContext, new BuildEventFileInfo(String.Empty), "BuildTargetPartially", _targetToAnalyze.Name);
BackEnd\Components\RequestBuilder\TaskBuilder.cs (6)
173new BuildEventFileInfo(taskInstance.Location), 850new BuildEventFileInfo(_targetChildInstance.Location), 958new BuildEventFileInfo(_targetChildInstance.Location), 968new BuildEventFileInfo(_targetChildInstance.Location), 997new BuildEventFileInfo(_targetChildInstance.Location), 1005taskLoggingContext.LogError(new BuildEventFileInfo(_targetChildInstance.Location),
BackEnd\Components\RequestBuilder\TaskHost.cs (2)
1161_taskLoggingContext.LogWarning(null, new BuildEventFileInfo(string.Empty), "ExpectedEventToBeSerializable", e.GetType().Name); 1294file: new BuildEventFileInfo(ProjectFileOfTaskNode, LineNumberOfTaskNode, ColumnNumberOfTaskNode),
BackEnd\Components\SdkResolution\CachingSdkResolverService.cs (1)
79loggingContext.LogWarning(null, new BuildEventFileInfo(sdkReferenceLocation), "ReferencingMultipleVersionsOfTheSameSdk", sdk.Name, result.Version, result.ElementLocation, sdk.Version);
BackEnd\Components\SdkResolution\MainNodeSdkResolverService.cs (1)
87loggingService.LogFatalBuildError(loggingContext.BuildEventContext, e, new BuildEventFileInfo(request.ElementLocation));
BackEnd\Components\SdkResolution\OutOfProcNodeSdkResolverService.cs (1)
93loggingContext.LogWarning(null, new BuildEventFileInfo(sdkReferenceLocation), "ReferencingMultipleVersionsOfTheSameSdk", sdk.Name, sdkResult.Version, sdkResult.ElementLocation, sdk.Version);
BackEnd\Components\SdkResolution\SdkResolverLoader.cs (7)
144ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(location), "SdkResolverNoDllOrManifest", subfolder.FullName); 207ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(location), "SdkResolverDllInManifestMissing", pathToManifest, string.Empty); 213ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(location), e, "SdkResolverManifestInvalid", pathToManifest, e.Message); 218ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(location), "SdkResolverDllInManifestMissing", pathToManifest, manifest.Path); 319ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(location), e, "CouldNotLoadSdkResolverAssembly", resolverPath, e.Message); 336ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(location), e.InnerException ?? e, "CouldNotLoadSdkResolver", type.Name, message); 340ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(location), e, "CouldNotLoadSdkResolver", type.Name, e.Message);
BackEnd\Components\SdkResolution\SdkResolverService.cs (5)
254loggingContext.LogError(new BuildEventFileInfo(sdkReferenceLocation), "SingleResolverFailedToResolveSDK", sdk.Name, resolvers[0].Name, string.Join(Environment.NewLine, errors)); 259loggingContext.LogError(new BuildEventFileInfo(sdkReferenceLocation), "FailedToResolveSDK", sdk.Name, string.Join($"{Environment.NewLine} ", errors)); 293new BuildEventFileInfo(sdkReferenceLocation), 386loggingContext.LogWarning(null, new BuildEventFileInfo(sdkReferenceLocation), "SdkResultVersionDifferentThanReference", sdk.Name, sdk.Version, result.Version); 465loggingContext.LogWarningFromText(null, null, null, new BuildEventFileInfo(location), warning);
BackEnd\Shared\BuildRequestConfiguration.cs (1)
1198ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(data.ProjectFullPath), "ProjectUpgradeNeededToVcxProj", data.ProjectFullPath);
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (18)
592_taskLoggingContext.LogError(new BuildEventFileInfo(_taskLocation), "TaskParametersError", _taskName, e.Message); 699new BuildEventFileInfo(parameterLocation), 716new BuildEventFileInfo(parameterLocation), 879_taskLoggingContext.LogFatalTaskError(e, new BuildEventFileInfo(_taskLocation), ((ProjectTaskInstance)_taskLoggingContext.Task).Name); 1216new BuildEventFileInfo(_taskLocation), 1226new BuildEventFileInfo(_taskLocation), 1300new BuildEventFileInfo(_taskLocation), 1341new BuildEventFileInfo(_taskLocation), 1352new BuildEventFileInfo(_taskLocation), 1362new BuildEventFileInfo(_taskLocation), 1448new BuildEventFileInfo(parameterLocation), 1459new BuildEventFileInfo(parameterLocation), 1470new BuildEventFileInfo(parameterLocation), 1481new BuildEventFileInfo(parameterLocation), 1759new BuildEventFileInfo(_taskLocation), 1768new BuildEventFileInfo(_taskLocation), 2039_targetLoggingContext.LogError(new BuildEventFileInfo(_taskLocation), "AttributeTypeLoadError", _taskName, e.Message); 2055_taskLoggingContext.LogWarningFromText(null, warningCode, helpKeyword, new BuildEventFileInfo(_taskLocation), message);
BuildCheck\Infrastructure\BuildCheckBuildEventHandler.cs (1)
162string.IsNullOrEmpty(acquisitionData.ProjectPath) ? BuildEventFileInfo.Empty : new BuildEventFileInfo(acquisitionData.ProjectPath),
BuildCheck\Infrastructure\BuildCheckCentralContext.cs (1)
308new BuildEventFileInfo(projectFullPath),
BuildCheck\Infrastructure\BuildCheckManagerProvider.cs (2)
238new BuildEventFileInfo(projectPath), 349new BuildEventFileInfo(projectFullPath),
Construction\ProjectRootElement.cs (5)
2057ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(projectFile), "ProjectUpgradeNeededToVcxProj", projectFile); 2069ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(projectFile), ex, "InvalidProjectFile", ex.Message); 2121? new BuildEventFileInfo(fullPath, xmlException) 2122: new BuildEventFileInfo(fullPath); 2146BuildEventFileInfo fileInfo = new BuildEventFileInfo(ex);
Construction\Solution\ProjectInSolution.cs (2)
426new BuildEventFileInfo(ParentSolution.FullPath), "SolutionParseNestedProjectErrorWithNameAndGuid", ProjectName, ProjectGuid, ParentProjectGuid); 468new BuildEventFileInfo(ParentSolution.FullPath), "SolutionParseNestedProjectErrorWithNameAndGuid", ProjectName, ProjectGuid, ParentProjectGuid);
Construction\Solution\SolutionFile.cs (29)
315new BuildEventFileInfo(FullPath), 330new BuildEventFileInfo(errorLocation), 337new BuildEventFileInfo(FullPath), 582new BuildEventFileInfo(solutionFile), 594new BuildEventFileInfo(solutionFile), 625new BuildEventFileInfo(solutionFile), 639new BuildEventFileInfo(_solutionFile), 658new BuildEventFileInfo(solutionFilterFile), 681new BuildEventFileInfo(solutionFilterFile), 750ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(_solutionFile), "InvalidProjectFile", e.Message); 898new BuildEventFileInfo(FullPath), 919new BuildEventFileInfo(FileUtilities.GetFullPath(project, Path.GetDirectoryName(_solutionFile))), 963new BuildEventFileInfo(FullPath), "SolutionParseNoHeaderError"); 1009new BuildEventFileInfo(FullPath, _currentLineNumber, 0), "SolutionParseVersionMismatchError", 1019new BuildEventFileInfo(FullPath, _currentLineNumber, 0), 1078new BuildEventFileInfo(FullPath, _currentLineNumber, 0), "SolutionParseProjectDepGuidError", proj.ProjectName); 1096new BuildEventFileInfo(FullPath, _currentLineNumber, 0), "SolutionParseWebProjectPropertiesError", proj.ProjectName); 1122new BuildEventFileInfo(FullPath), "SolutionParseProjectEofError", proj.ProjectName); 1307new BuildEventFileInfo(FullPath, _currentLineNumber, 0), 1314new BuildEventFileInfo(FullPath, _currentLineNumber, 0), 1504new BuildEventFileInfo(FullPath, _currentLineNumber, 0), "SolutionParseProjectError"); 1556ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(FullPath), "ProjectUpgradeNeededToVcxProj", proj.RelativePath); 1604new BuildEventFileInfo(FullPath, _currentLineNumber, 0), "SolutionParseNestedProjectError"); 1612new BuildEventFileInfo(FullPath, _currentLineNumber, 0), "SolutionParseNestedProjectUndefinedError", projectGuid, parentProjectGuid); 1653new BuildEventFileInfo(FullPath, _currentLineNumber, 0), "SolutionParseInvalidSolutionConfigurationEntry", str); 1665new BuildEventFileInfo(FullPath, _currentLineNumber, 0), "SolutionParseInvalidSolutionConfigurationEntry", str); 1680new BuildEventFileInfo(projectPath, lineNumber, 0), 1730new BuildEventFileInfo(FullPath, _currentLineNumber, 0), "SolutionParseInvalidProjectSolutionConfigurationEntry", str); 1776new BuildEventFileInfo(FullPath), "SolutionParseInvalidProjectSolutionConfigurationEntry",
Construction\Solution\SolutionProjectGenerator.cs (7)
289ProjectFileErrorUtilities.VerifyThrowInvalidProjectFile(dependencyProject != null, "SubCategoryForSolutionParsingErrors", new BuildEventFileInfo(solutionFile.FullPath), "SolutionParseProjectDepNotFoundError", project.ProjectGuid, dependencyProjectGuid); 751new BuildEventFileInfo(_solutionFile.FullPath), 1223new BuildEventFileInfo(traversalProject.FullPath), 1293new BuildEventFileInfo(_solutionFile.FullPath), 1389new BuildEventFileInfo(traversalProject.FullPath), 2260new BuildEventFileInfo(project.RelativePath), 2288new BuildEventFileInfo(_solutionFile.FullPath),
Definition\Project.cs (1)
3214LoggingService.LogError(s_buildEventContext, new BuildEventFileInfo(FullPath), "SecurityProjectBuildDisabled");
Definition\Toolset.cs (7)
600new BuildEventFileInfo(/* this warning truly does not involve any file */ String.Empty), 611new BuildEventFileInfo(/* this warning truly does not involve any file */ String.Empty), 866loggingContext.LogError(new BuildEventFileInfo(/* this warning truly does not involve any file it is just gathering properties */String.Empty), "TasksPropertyBagError", e.Message); 907loggingContext.LogWarning(null, new BuildEventFileInfo(String.Empty /* this warning truly does not involve any file*/), "OverrideTasksFileFailure", rootedPathMessage); 914loggingContext.LogWarning(null, new BuildEventFileInfo(String.Empty /* this warning truly does not involve any file*/), "OverrideTasksFileFailure", rootedPathMessage); 954ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(currentTasksFile, e), 959loggingContext.LogError(new BuildEventFileInfo(currentTasksFile),
Evaluation\Conditionals\Parser.cs (1)
145LoggingServices.LogWarning(_logBuildEventContext, null, new BuildEventFileInfo(_elementLocation), "ConditionMaybeEvaluatedIncorrectly", expression);
Evaluation\Evaluator.cs (6)
380evaluator._evaluationLoggingContext.LogErrorFromText(null, null, null, new BuildEventFileInfo(root.ProjectFileLocation.File), 1202_evaluationLoggingContext.LogWarning("", new BuildEventFileInfo(""), "ChangeWave_InvalidFormat", Traits.Instance.MSBuildDisableFeaturesFromVersion, $"[{string.Join(", ", ChangeWaves.AllWaves.Select(x => x.ToString()))}]"); 1205_evaluationLoggingContext.LogWarning("", new BuildEventFileInfo(""), "ChangeWave_OutOfRotation", ChangeWaves.DisabledWave, Traits.Instance.MSBuildDisableFeaturesFromVersion, $"[{string.Join(", ", ChangeWaves.AllWaves.Select(x => x.ToString()))}]"); 2212_evaluationLoggingContext.LogWarning(null, new BuildEventFileInfo(importLocationInProject), "SelfImport", importFileUnescaped); 2229_evaluationLoggingContext.LogWarning(null, new BuildEventFileInfo(importLocationInProject), "ImportIntroducesCircularity", importFileUnescaped, importedBy); 2256_evaluationLoggingContext.LogWarning(null, new BuildEventFileInfo(importLocationInProject), "DuplicateImport", importFileUnescaped, previouslyImportedAt.Location.LocationString, parenthesizedProjectLocation);
Evaluation\Expander.MetadataExpander.cs (1)
218new BuildEventFileInfo(_elementLocation),
Evaluation\LazyItemEvaluator.RemoveOperation.cs (1)
29new BuildEventFileInfo(string.Empty),
Evaluation\PropertiesUseTracker.cs (1)
143loggingContext.LogWarning(null, new BuildEventFileInfo(propertyElement.Location), "UsedUninitializedProperty", propertyElement.Name, elementWhichUsedProperty?.LocationString);
Graph\GraphBuilder.cs (1)
362new BuildEventFileInfo(Solution.FullPath),
Instance\TaskFactories\AssemblyTaskFactory.cs (3)
281targetLoggingContext.LogError(new BuildEventFileInfo(taskProjectFile), "TaskLoadFailure", taskName, loadInfo.AssemblyLocation, exception.Message); 392taskLoggingContext.LogError(new BuildEventFileInfo(taskLoc, taskLine, taskColumn), message, messageArgs)), 478targetLoggingContext.LogError(new BuildEventFileInfo(taskProjectFile), "TaskLoadFailure", taskName, _loadedType.Assembly.AssemblyLocation, exception.Message);
Instance\TaskFactories\TaskHostTask.cs (4)
636_taskLoggingContext.LogFatalError(taskHostTaskComplete.TaskException, new BuildEventFileInfo(_taskLocation), taskHostTaskComplete.TaskExceptionMessage, taskHostTaskComplete.TaskExceptionMessageArgs); 660_taskLoggingContext.LogError(new BuildEventFileInfo(_taskLocation), "TaskHostExitedPrematurely", (nodeShutdown.Exception == null) ? String.Empty : nodeShutdown.Exception.ToString()); 874_taskLoggingContext.LogError(new BuildEventFileInfo(_taskLocation), "TaskHostAcquireFailed", _taskType.Type.Name, runtime, architecture, msbuildLocation); 879new BuildEventFileInfo(_taskLocation),
Instance\TaskFactoryEngineContext.cs (1)
391_loggingContext.LogWarning(null, new BuildEventFileInfo(string.Empty), "ExpectedEventToBeSerializable", e.GetType().Name);
Instance\TaskRegistry.cs (4)
719loggingContext.LogError(new BuildEventFileInfo(projectUsingTaskInXml.OverrideLocation), "DuplicateOverrideUsingTaskElement", taskName); 1480targetLoggingContext.LogError(new BuildEventFileInfo(taskProjectFile), "TaskFactoryLoadFailure", TaskFactoryAttributeName, taskFactoryLoadInfo.AssemblyLocation, exception.Message); 1534new BuildEventFileInfo(elementLocation), 1572new BuildEventFileInfo(elementLocation.File, elementLocation.Line, elementLocation.Column),
parent\Shared\BuildEventFileInfo.cs (1)
17internal static BuildEventFileInfo Empty = new BuildEventFileInfo(ElementLocation.EmptyLocation);
Utilities\EngineFileUtilities.cs (1)
435new BuildEventFileInfo(buildEventFileInfoFullPath),
68 references to BuildEventFileInfo
Microsoft.Build (68)
BackEnd\BuildManager\BuildManager.cs (2)
3475file: BuildEventFileInfo.Empty, 3663BuildEventFileInfo.Empty,
BackEnd\BuildManager\EnvironmentVariableValidator.cs (1)
45loggingService.LogWarning(BuildEventContext.Invalid, null, BuildEventFileInfo.Empty, "DotnetHostPathIsDirectory", dotnetHostPath);
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
1423BuildEventFileInfo.Empty,
BackEnd\Components\Logging\BuildLoggingContext.cs (1)
58internal void LogFatalTaskError(Exception exception, BuildEventFileInfo file, string taskName)
BackEnd\Components\Logging\ILoggingService.cs (9)
409void LogError(BuildEventContext buildEventContext, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs); 419void LogError(BuildEventContext buildEventContext, string subcategoryResourceName, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs); 430void LogErrorFromText(BuildEventContext buildEventContext, string subcategoryResourceName, string errorCode, string helpKeyword, BuildEventFileInfo file, string message); 445void LogFatalBuildError(BuildEventContext buildEventContext, Exception exception, BuildEventFileInfo file); 454void LogFatalTaskError(BuildEventContext buildEventContext, Exception exception, BuildEventFileInfo file, string taskName); 464void LogFatalError(BuildEventContext buildEventContext, Exception exception, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs); 475void LogTaskWarningFromException(BuildEventContext buildEventContext, Exception exception, BuildEventFileInfo file, string taskName); 485void LogWarning(BuildEventContext buildEventContext, string subcategoryResourceName, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs); 496void LogWarningFromText(BuildEventContext buildEventContext, string subcategoryResourceName, string warningCode, string helpKeyword, BuildEventFileInfo file, string message);
BackEnd\Components\Logging\LoggingContext.cs (9)
138internal void LogComment(MessageImportance importance, BuildEventFileInfo file, string messageResourceName, params object?[]? messageArgs) 190internal void LogError(BuildEventFileInfo file, string messageResourceName, params object[] messageArgs) 204internal void LogErrorWithSubcategory(string? subcategoryResourceName, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs) 219internal void LogErrorFromText(string? subcategoryResourceName, string? errorCode, string? helpKeyword, BuildEventFileInfo file, string message) 244internal void LogFatalError(Exception exception, BuildEventFileInfo file, string messageResourceName, params object?[]? messageArgs) 254_loggingService.LogWarning(_eventContext, null, BuildEventFileInfo.Empty, messageResourceName, messageArgs); 264internal void LogWarning(string? subcategoryResourceName, BuildEventFileInfo file, string messageResourceName, params object?[]? messageArgs) 278internal void LogWarningFromText(string? subcategoryResourceName, string warningCode, string helpKeyword, BuildEventFileInfo file, string message) 299internal void LogFatalBuildError(Exception exception, BuildEventFileInfo file)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (9)
98public void LogError(BuildEventContext location, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs) 112public void LogError(BuildEventContext buildEventContext, string subcategoryResourceName, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs) 132public void LogErrorFromText(BuildEventContext buildEventContext, string subcategoryResourceName, string errorCode, string helpKeyword, BuildEventFileInfo file, string message) 195public void LogFatalBuildError(BuildEventContext buildEventContext, Exception exception, BuildEventFileInfo file) 209public void LogFatalTaskError(BuildEventContext buildEventContext, Exception exception, BuildEventFileInfo file, string taskName) 226public void LogFatalError(BuildEventContext buildEventContext, Exception exception, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs) 260public void LogTaskWarningFromException(BuildEventContext buildEventContext, Exception exception, BuildEventFileInfo file, string taskName) 285public void LogWarning(BuildEventContext buildEventContext, string subcategoryResourceName, BuildEventFileInfo file, string messageResourceName, params object[] messageArgs) 302public void LogWarningFromText(BuildEventContext buildEventContext, string subcategoryResourceName, string warningCode, string helpKeyword, BuildEventFileInfo file, string message)
BackEnd\Components\Logging\TaskLoggingContext.cs (1)
148internal void LogTaskWarningFromException(Exception exception, BuildEventFileInfo file, string taskName)
BackEnd\Components\ProjectCache\ProjectCacheService.cs (10)
208BuildEventFileInfo buildEventFileInfo = BuildEventFileInfo.Empty; 589var buildEventFileInfo = new BuildEventFileInfo(buildRequest.ProjectFullPath); 875var buildEventFileInfo = new BuildEventFileInfo(requestConfiguration.ProjectFullPath); 956BuildEventFileInfo buildEventFileInfo = BuildEventFileInfo.Empty; 1052private readonly BuildEventFileInfo _buildEventFileInfo; 1059BuildEventFileInfo buildEventFileInfo) 1107private readonly BuildEventFileInfo _buildEventFileInfo; 1114BuildEventFileInfo buildEventFileInfo)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupIntrinsicTask.cs (1)
664BuildEventFileInfo.Empty,
BackEnd\Components\RequestBuilder\RequestBuilder.cs (2)
834BuildEventFileInfo.Empty, 848(((LoggingContext)_projectLoggingContext) ?? _nodeLoggingContext).LogError(BuildEventFileInfo.Empty, "UnhandledMSBuildError", ex.ToString());
BackEnd\Node\OutOfProcNode.cs (1)
617_loggingContext?.BuildEventContext ?? BuildEventContext.Invalid, null, BuildEventFileInfo.Empty,
BackEnd\Shared\EventsCreatorHelper.cs (2)
29public static BuildErrorEventArgs CreateErrorEventFromText(BuildEventContext buildEventContext, string? subcategoryResourceName, string? errorCode, string? helpKeyword, BuildEventFileInfo file, string message) 60public static BuildWarningEventArgs CreateWarningEventFromText(BuildEventContext buildEventContext, string? subcategoryResourceName, string? errorCode, string? helpKeyword, BuildEventFileInfo file, string message)
BuildCheck\Infrastructure\BuildCheckBuildEventHandler.cs (1)
162string.IsNullOrEmpty(acquisitionData.ProjectPath) ? BuildEventFileInfo.Empty : new BuildEventFileInfo(acquisitionData.ProjectPath),
BuildCheck\Infrastructure\BuildEventsProcessor.cs (1)
253BuildEventFileInfo.Empty,
BuildCheck\Infrastructure\CheckContext\CheckDispatchingContext.cs (2)
54public void DispatchAsErrorFromText(string? subcategoryResourceName, string? errorCode, string? helpKeyword, BuildEventFileInfo file, string message) 61public void DispatchAsWarningFromText(string? subcategoryResourceName, string? errorCode, string? helpKeyword, BuildEventFileInfo file, string message)
BuildCheck\Infrastructure\CheckContext\CheckLoggingContext.cs (2)
37public void DispatchAsErrorFromText(string? subcategoryResourceName, string? errorCode, string? helpKeyword, BuildEventFileInfo file, string message) 41public void DispatchAsWarningFromText(string? subcategoryResourceName, string? errorCode, string? helpKeyword, BuildEventFileInfo file, string message)
BuildCheck\Infrastructure\CheckContext\ICheckContext.cs (2)
33void DispatchAsErrorFromText(string? subcategoryResourceName, string? errorCode, string? helpKeyword, BuildEventFileInfo file, string message); 43void DispatchAsWarningFromText(string? subcategoryResourceName, string? errorCode, string? helpKeyword, BuildEventFileInfo file, string message);
Construction\ProjectRootElement.cs (2)
2120BuildEventFileInfo fileInfo = ex is XmlException xmlException 2146BuildEventFileInfo fileInfo = new BuildEventFileInfo(ex);
Construction\Solution\ProjectInSolution.cs (1)
22using BuildEventFileInfo = Microsoft.Build.Shared.BuildEventFileInfo;
Construction\Solution\SolutionFile.cs (1)
22using BuildEventFileInfo = Microsoft.Build.Shared.BuildEventFileInfo;
parent\Shared\BuildEventFileInfo.cs (1)
17internal static BuildEventFileInfo Empty = new BuildEventFileInfo(ElementLocation.EmptyLocation);
parent\Shared\ProjectFileErrorUtilities.cs (6)
28BuildEventFileInfo projectFile, 47BuildEventFileInfo projectFile, 68BuildEventFileInfo projectFile, 88BuildEventFileInfo projectFile, 110BuildEventFileInfo projectFile, 133BuildEventFileInfo projectFile,