3 writes to Path
Microsoft.DotNet.VersionTools.Tasks (3)
BaseDependenciesTask.cs (3)
130Path = GetRequiredMetadata(step, "Path") 139Path = GetRequiredMetadata(step, "Path") 146Path = GetRequiredMetadata(step, "Path"),
15 references to Path
Microsoft.DotNet.VersionTools (15)
Dependencies\Submodule\IndicatorPackageSubmoduleUpdater.cs (1)
63$"to upgrade '{Path}', but it had no version.txt file. Skipping.");
Dependencies\Submodule\LatestCommitSubmoduleUpdater.cs (3)
56$"For {Path}, expected exactly 1 {nameof(SubmoduleDependencyInfo)} " + 65Trace.TraceInformation($"For {Path}, found: {matchingInfo}"); 72GitCommand.Fetch(Path, Repository, Ref);
Dependencies\Submodule\OrchestratedBuildSubmoduleUpdater.cs (2)
47Trace.TraceInformation($"In '{Path}', fetching '{refspec}' from '{GitUrl}'..."); 48GitCommand.Fetch(Path, GitUrl, refspec);
Dependencies\Submodule\SubmoduleUpdater.cs (9)
27Trace.TraceWarning($"Unable to find a desired hash for '{Path}', leaving as '{currentHash}'."); 33Trace.TraceInformation($"Nothing to upgrade for '{Path}' at '{desiredHash}'"); 39Trace.TraceInformation($"In '{Path}', moving from '{currentHash}' to '{desiredHash}'."); 42GitCommand.Checkout(Path, desiredHash); 47$"In '{Path}', current HEAD '{currentHash}' should be '{desiredHash}'" 63Trace.TraceInformation($"Fetching all configured remotes for '{Path}'."); 64GitCommand.FetchAll(Path); 69return GitCommand.RevParse(Path, "HEAD").Trim(); 77return GitCommand.SubmoduleStatusCached(Path)