1
1
using System ;
2
- using System . Linq ;
3
- using System . Reflection ;
4
2
using Exceptionless . Logging ;
5
3
using Exceptionless . Models ;
4
+ using Exceptionless . Utility ;
6
5
7
6
namespace Exceptionless . Plugins . Default {
8
7
[ Priority ( 80 ) ]
@@ -40,10 +39,10 @@ private string GetVersion(IExceptionlessLog log) {
40
39
if ( _appVersionLoaded )
41
40
return _appVersion ;
42
41
43
- var entryAssembly = GetEntryAssembly ( log ) ;
42
+ var entryAssembly = AssemblyHelper . GetEntryAssembly ( log ) ;
44
43
45
44
try {
46
- string version = GetVersionFromAssembly ( entryAssembly ) ;
45
+ string version = AssemblyHelper . GetVersionFromAssembly ( entryAssembly ) ;
47
46
if ( ! String . IsNullOrEmpty ( version ) ) {
48
47
_appVersion = version ;
49
48
_appVersionLoaded = true ;
@@ -54,80 +53,11 @@ private string GetVersion(IExceptionlessLog log) {
54
53
log . FormattedError ( typeof ( VersionPlugin ) , ex , "Unable to get version from loaded assemblies. Error: {0}" , ex . Message ) ;
55
54
}
56
55
57
- #if NETSTANDARD2_0
58
- try {
59
- var platformService = Microsoft . Extensions . PlatformAbstractions . PlatformServices . Default ;
60
-
61
- _appVersion = platformService . Application . ApplicationVersion ;
62
- _appVersionLoaded = true ;
63
-
64
- return _appVersion ;
65
- } catch ( Exception ex ) {
66
- log . FormattedError ( typeof ( VersionPlugin ) , ex , "Unable to get Platform Services instance. Error: {0}" , ex . Message ) ;
67
- }
68
- #endif
69
-
70
56
_appVersion = null ;
71
57
_appVersionLoaded = true ;
72
58
73
59
return null ;
74
60
}
75
61
76
- private string GetVersionFromAssembly ( Assembly assembly ) {
77
- if ( assembly == null )
78
- return null ;
79
-
80
- string version = assembly . GetInformationalVersion ( ) ;
81
- if ( String . IsNullOrEmpty ( version ) || String . Equals ( version , "0.0.0.0" ) )
82
- version = assembly . GetFileVersion ( ) ;
83
-
84
- if ( String . IsNullOrEmpty ( version ) || String . Equals ( version , "0.0.0.0" ) )
85
- version = assembly . GetVersion ( ) ;
86
-
87
- if ( String . IsNullOrEmpty ( version ) || String . Equals ( version , "0.0.0.0" ) ) {
88
- var assemblyName = assembly . GetAssemblyName ( ) ;
89
- version = assemblyName != null ? assemblyName . Version . ToString ( ) : null ;
90
- }
91
-
92
- return ! String . IsNullOrEmpty ( version ) && ! String . Equals ( version , "0.0.0.0" ) ? version : null ;
93
- }
94
-
95
- private Assembly GetEntryAssembly ( IExceptionlessLog log ) {
96
- var entryAssembly = Assembly . GetEntryAssembly ( ) ;
97
- if ( IsUserAssembly ( entryAssembly ) )
98
- return entryAssembly ;
99
-
100
- try {
101
- var assemblies = AppDomain . CurrentDomain . GetAssemblies ( ) . Where ( a =>
102
- ! a . IsDynamic
103
- && a != typeof ( ExceptionlessClient ) . GetTypeInfo ( ) . Assembly
104
- && a != GetType ( ) . GetTypeInfo ( ) . Assembly
105
- && a != typeof ( object ) . GetTypeInfo ( ) . Assembly ) ;
106
-
107
- return assemblies . FirstOrDefault ( a => IsUserAssembly ( a ) ) ;
108
- } catch ( Exception ex ) {
109
- log . FormattedError ( typeof ( VersionPlugin ) , ex , "Unable to get entry assembly. Error: {0}" , ex . Message ) ;
110
- }
111
-
112
- return null ;
113
- }
114
-
115
- private bool IsUserAssembly ( Assembly assembly ) {
116
- if ( assembly == null )
117
- return false ;
118
-
119
- if ( ! String . IsNullOrEmpty ( assembly . FullName ) && ( assembly . FullName . StartsWith ( "System." ) || assembly . FullName . StartsWith ( "Microsoft." ) ) )
120
- return false ;
121
-
122
- string company = assembly . GetCompany ( ) ?? String . Empty ;
123
- string [ ] nonUserCompanies = new [ ] { "Exceptionless" , "Microsoft" } ;
124
- if ( nonUserCompanies . Any ( c => company . IndexOf ( c , StringComparison . OrdinalIgnoreCase ) >= 0 ) )
125
- return false ;
126
-
127
- if ( assembly . FullName == typeof ( ExceptionlessClient ) . GetTypeInfo ( ) . Assembly . FullName )
128
- return false ;
129
-
130
- return true ;
131
- }
132
62
}
133
63
}
0 commit comments