Browse Source

Merge pull request #21313 from abpframework/auto-merge/rel-8-3/3187

Merge branch rel-9.0 with rel-8.3
pull/21314/head
maliming 2 years ago
committed by GitHub
parent
commit
8d9d111b8c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/NugetPackageToLocalReferenceConverter.cs

5
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/NugetPackageToLocalReferenceConverter.cs

@ -141,6 +141,11 @@ public class NugetPackageToLocalReferenceConverter : ITransientDependency
private static string[] GetProjectFilesUnder(string path)
{
if (!Directory.Exists(path))
{
return [];
}
return Directory.GetFiles(path,
"*.csproj",
SearchOption.AllDirectories);

Loading…
Cancel
Save