Skip to content

Commit cdcf563

Browse files
authored
Merge pull request #246 from honda-tatsuya/fix-nuget-path
fix: .nuget path
2 parents e9e39d7 + e2305b9 commit cdcf563

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/MagicOnion.GeneratorCore/Utils/PseudoCompilation.cs

+1-8
Original file line numberDiff line numberDiff line change
@@ -262,14 +262,7 @@ private static void CollectDocument(string csproj, HashSet<string> source, List<
262262
// Try default
263263
// Windows: %userprofile%\.nuget\packages
264264
// Mac/Linux: ~/.nuget/packages
265-
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
266-
{
267-
nugetPackagesPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), @".nuget\packages");
268-
}
269-
else
270-
{
271-
nugetPackagesPath = "~/.nuget/packages";
272-
}
265+
nugetPackagesPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".nuget", "packages");
273266
}
274267

275268
var resolvedDllPaths = new HashSet<string>();

0 commit comments

Comments
 (0)