@@ -42,7 +42,9 @@ public ExceptionlessConfiguration(IDependencyResolver resolver) {
42
42
EventPluginManager . AddDefaultPlugins ( this ) ;
43
43
}
44
44
45
- internal bool IsLocked => _configLocked ;
45
+ internal bool IsLocked {
46
+ get { return _configLocked ; }
47
+ }
46
48
47
49
internal void LockConfig ( ) {
48
50
if ( _configLocked )
@@ -183,7 +185,7 @@ public void AddDataExclusions(IEnumerable<string> exclusions) {
183
185
/// <summary>
184
186
/// The dependency resolver to use for this configuration.
185
187
/// </summary>
186
- public IDependencyResolver Resolver => _resolver ;
188
+ public IDependencyResolver Resolver { get { return _resolver ; } }
187
189
188
190
#region Plugins
189
191
@@ -327,7 +329,7 @@ public ValidationResult() {
327
329
Messages = new List < string > ( ) ;
328
330
}
329
331
330
- public bool IsValid => Messages . Count == 0 ;
332
+ public bool IsValid { get { return Messages . Count == 0 ; } }
331
333
public ICollection < string > Messages { get ; private set ; }
332
334
}
333
335
@@ -344,7 +346,9 @@ public PluginRegistration(string key, int priority, Lazy<IEventPlugin> plugin) {
344
346
345
347
public string Key { get ; private set ; }
346
348
347
- public IEventPlugin Plugin => _plugin . Value ;
349
+ public IEventPlugin Plugin {
350
+ get { return _plugin . Value ; }
351
+ }
348
352
349
353
public override string ToString ( ) {
350
354
return String . Format ( "Key: {0}, Priority: {1}" , Key , Priority ) ;
0 commit comments