Browse Source
Merge pull request #23742 from abpframework/fix/data-collection
Increase MaxDepth for package metadata search
pull/23743/head
İsmail ÇAĞDAŞ
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Core/Volo/Abp/Internal/Telemetry/Helpers/AbpPackageMetadataReader.cs
|
|
|
@ -11,7 +11,7 @@ static internal class AbpProjectMetadataReader |
|
|
|
{ |
|
|
|
private const string AbpPackageSearchPattern = "*.abppkg"; |
|
|
|
private const string AbpSolutionSearchPattern = "*.abpsln"; |
|
|
|
private const int MaxDepth = 5; |
|
|
|
private const int MaxDepth = 10; |
|
|
|
public static AbpProjectMetaData? ReadProjectMetadata(Assembly assembly) |
|
|
|
{ |
|
|
|
var assemblyPath = assembly.Location; |
|
|
|
|