Skip to content

Commit 5c9f1b1

Browse files
authored
VCST-662: fix folder (#2770)
1 parent 60f9914 commit 5c9f1b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/VirtoCommerce.Platform.Modules/AssemblyLoading/PlatformInformation.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ static PlatformInformation()
3535
{
3636
NativeLibraryPrefixes = new[] { "", "lib", };
3737
NativeLibraryExtensions = new[] { ".dylib" };
38-
NuGetPackagesCache = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), ".nuget", "packages");
38+
NuGetPackagesCache = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".nuget", "packages");
3939
DirectorySeparator = Path.AltDirectorySeparatorChar;
4040
}
4141
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))

0 commit comments

Comments
 (0)