8000 Log the location of selected NuGet config file · dotnet-script/dotnet-script@22a9555 · GitHub
[go: up one dir, main page]

Skip to content

Commit 22a9555

Browse files
committed
Log the location of selected NuGet config file
1 parent 80c059c commit 22a9555

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Dotnet.Script.DependencyModel/Context/DotnetRestorer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public void Restore(ProjectFileInfo projectFileInfo, string[] packageSources)
2626
var configFileArgument = CreateConfigFileArgument();
2727
var runtimeIdentifier = _scriptEnvironment.RuntimeIdentifier;
2828

29-
_logger.Debug($"Restoring {projectFileInfo.Path} using the dotnet cli. RuntimeIdentifier : {runtimeIdentifier}");
29+
_logger.Debug($"Restoring {projectFileInfo.Path} using the dotnet cli. RuntimeIdentifier : {runtimeIdentifier} NugetConfigFile: {projectFileInfo.NuGetConfigFile}");
3030
var exitcode = _commandRunner.Execute("dotnet", $"restore \"{projectFileInfo.Path}\" -r {runtimeIdentifier} {packageSourcesArgument} {configFileArgument}");
3131
if (exitcode != 0)
3232
{

0 commit comments

Comments
 (0)
0