Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sensslen committed Feb 26, 2024
1 parent 8000938 commit 9e57f5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/NuGetUtility/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ private static IAsyncEnumerable<ReferencedPackageWithContext> GetPackageInformat
CancellationToken cancellation)
{
Console.WriteLine($"get package information for {projectWithReferences}");
ISettings settings = Settings.LoadDefaultSettings(projectWithReferences.Project);
Console.WriteLine($"full path is {Path.GetFullPath(projectWithReferences.Project)}");
ISettings settings = Settings.LoadDefaultSettings(Path.GetFullPath(projectWithReferences.Project));
var sourceProvider = new PackageSourceProvider(settings);

using var sourceRepositoryProvider = new WrappedSourceRepositoryProvider(new SourceRepositoryProvider(sourceProvider, Repository.Provider.GetCoreV3()));
Expand Down

0 comments on commit 9e57f5e

Please sign in to comment.