Browse Source
Merge pull request #22749 from abpframework/auto-merge/rel-9-2/3681
Merge branch dev with rel-9.2
pull/22759/head
maliming
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
1 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/PathHelper.cs
|
|
|
@ -20,8 +20,9 @@ static internal class PathHelper |
|
|
|
|
|
|
|
static internal string GetMauiBlazorAssemblyFilePath(string directory, string projectFileName) |
|
|
|
{ |
|
|
|
return Directory.GetFiles(directory, "*.dll", SearchOption.AllDirectories).FirstOrDefault(f => |
|
|
|
return Directory.GetFiles(Path.Combine(directory, "bin"), "*.dll", SearchOption.AllDirectories).FirstOrDefault(f => |
|
|
|
!f.Contains("android") && |
|
|
|
!f.Contains("windows10") && |
|
|
|
f.EndsWith(projectFileName + ".dll", StringComparison.OrdinalIgnoreCase)); |
|
|
|
} |
|
|
|
|
|
|
|
|