2 implementations of FilePath
NuGet.Common (2)
Errors\PackagingLogMessage.cs (1)
17public string? FilePath { get; set; }
Errors\RestoreLogMessage.cs (1)
17public string? FilePath { get; set; }
2 writes to FilePath
NuGet.Commands (2)
RestoreCommand\Logging\RestoreCollectorLogger.cs (2)
150message.FilePath = message.ProjectPath; 175message.FilePath = message.ProjectPath ?? ProjectPath;
7 references to FilePath
NuGet.Build.Tasks (2)
Common\MSBuildLogger.cs (2)
164logMessage.FilePath, 188logMessage.FilePath,
NuGet.Build.Tasks.Pack (2)
src\nuget-client\src\NuGet.Core\NuGet.Build.Tasks\Common\MSBuildLogger.cs (2)
164logMessage.FilePath, 188logMessage.FilePath,
NuGet.Commands (2)
RestoreCommand\Logging\RestoreCollectorLogger.cs (2)
148if (string.IsNullOrEmpty(message.FilePath)) 173if (string.IsNullOrEmpty(message.FilePath))
NuGet.ProjectModel (1)
LockFile\AssetsLogMessage.cs (1)
65FilePath = logMessage.FilePath,