Skip to content

Commit

Permalink
VCST-662: fix folder (#2770)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTzykin authored Mar 6, 2024
1 parent 60f9914 commit 5c9f1b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static PlatformInformation()
{
NativeLibraryPrefixes = new[] { "", "lib", };
NativeLibraryExtensions = new[] { ".dylib" };
NuGetPackagesCache = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), ".nuget", "packages");
NuGetPackagesCache = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".nuget", "packages");
DirectorySeparator = Path.AltDirectorySeparatorChar;
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
Expand Down

0 comments on commit 5c9f1b1

Please sign in to comment.