Browse Source
Merge pull request #22748 from abpframework/liangshiwei/cli-patch
pull/22749/head
maliming
10 months 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)); |
|
|
|
} |
|
|
|
|
|
|
|
|