Skip to content

Commit

Permalink
Merge pull request #21312 from abpframework/fix-NugetPackageToLocalRe…
Browse files Browse the repository at this point in the history
…ferenceConverter

Check if folder exist in NugetPackageToLocalReferenceConverter
  • Loading branch information
enisn authored Nov 12, 2024
2 parents 21afbc2 + 238c2ce commit 2173e58
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,11 @@ public List<NugetPackageInfoWithModuleName> GetNugetPackages(ModuleWithMastersIn

private static string[] GetProjectFilesUnder(string path)
{
if (!Directory.Exists(path))
{
return [];
}

return Directory.GetFiles(path,
"*.csproj",
SearchOption.AllDirectories);
Expand Down

0 comments on commit 2173e58

Please sign in to comment.