3 writes to Path
Microsoft.DotNet.VersionTools.Tasks (3)
BaseDependenciesTask.cs (3)
130
Path
= GetRequiredMetadata(step, "Path")
139
Path
= GetRequiredMetadata(step, "Path")
146
Path
= 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)} " +
65
Trace.TraceInformation($"For {
Path
}, found: {matchingInfo}");
72
GitCommand.Fetch(
Path
, Repository, Ref);
Dependencies\Submodule\OrchestratedBuildSubmoduleUpdater.cs (2)
47
Trace.TraceInformation($"In '{
Path
}', fetching '{refspec}' from '{GitUrl}'...");
48
GitCommand.Fetch(
Path
, GitUrl, refspec);
Dependencies\Submodule\SubmoduleUpdater.cs (9)
27
Trace.TraceWarning($"Unable to find a desired hash for '{
Path
}', leaving as '{currentHash}'.");
33
Trace.TraceInformation($"Nothing to upgrade for '{
Path
}' at '{desiredHash}'");
39
Trace.TraceInformation($"In '{
Path
}', moving from '{currentHash}' to '{desiredHash}'.");
42
GitCommand.Checkout(
Path
, desiredHash);
47
$"In '{
Path
}', current HEAD '{currentHash}' should be '{desiredHash}'"
63
Trace.TraceInformation($"Fetching all configured remotes for '{
Path
}'.");
64
GitCommand.FetchAll(
Path
);
69
return GitCommand.RevParse(
Path
, "HEAD").Trim();
77
return GitCommand.SubmoduleStatusCached(
Path
)