File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,11 +39,9 @@ public MetricConfiguration(IDictionary<string, ValueObject> arguments)
3939
4040 public ImmutableArray < string > IgnoredTypes { get ; }
4141
42- public string JsonConfigFile => _arguments [ "<jsonfileconfig>" ] . ToString ( ) ;
42+ public string JsonConfigFile => _arguments [ "<jsonfileconfig>" ] ? . ToString ( ) ;
4343
4444 private ImmutableArray < string > GetImmutableArray ( string key )
45- => _arguments [ $ "<{ key } >"] != null
46- ? _arguments [ $ "<{ key } >"] . ToString ( ) . Split ( ';' ) . ToImmutableArray ( )
47- : ImmutableArray < string > . Empty ;
45+ => _arguments [ $ "<{ key } >"] ? . ToString ( ) . Split ( ';' ) . ToImmutableArray ( ) ?? ImmutableArray < string > . Empty ;
4846 }
4947}
Original file line number Diff line number Diff line change 3131// You can specify all the values or you can default the Build and Revision Numbers
3232// by using the '*' as shown below:
3333// [assembly: AssemblyVersion("1.0.*")]
34- [ assembly: AssemblyVersion ( "1.0.0.0 " ) ]
34+ [ assembly: AssemblyVersion ( "1.0.* " ) ]
3535[ assembly: AssemblyFileVersion ( "1.0.0.0" ) ]
You can’t perform that action at this time.
0 commit comments