Skip to content

Commit

Permalink
Fix path to nuget packages on linux when debugging (#2814)
Browse files Browse the repository at this point in the history
Co-authored-by: Oleg Zhuk <[email protected]>
  • Loading branch information
asvishnyakov and OlegoO authored Jul 11, 2024
1 parent fd80920 commit 5430612
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 5430612

Please sign in to comment.