Skip to content

Commit

Permalink
Fix path to nuget packages on linux when debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
asvishnyakov committed Jul 2, 2024
1 parent a185c69 commit 69a5a09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static PlatformInformation()
{
NativeLibraryPrefixes = new[] { "", "lib" };
NativeLibraryExtensions = new[] { ".so", ".so.1" };
NuGetPackagesCache = Path.Combine("~", ".nuget", "packages");
NuGetPackagesCache = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".nuget", "packages");
DirectorySeparator = Path.AltDirectorySeparatorChar;
}
else
Expand Down

0 comments on commit 69a5a09

Please sign in to comment.