File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,11 @@ public class ActionHelper
10
10
11
11
public ActionHelper ( string outputPath )
12
12
{
13
- _outputPath = outputPath ?? throw new ArgumentNullException ( nameof ( outputPath ) , "ActionHelper output must be specified!" ) ;
13
+ if ( outputPath == null )
14
+ {
15
+ throw new ArgumentNullException ( nameof ( outputPath ) , "ActionHelper output must be specified!" ) ;
16
+ }
17
+ _outputPath = outputPath ;
14
18
_lock = new object ( ) ;
15
19
}
16
20
Original file line number Diff line number Diff line change 31
31
// You can specify all the values or you can default the Build and Revision Numbers
32
32
// by using the '*' as shown below:
33
33
// [assembly: AssemblyVersion("1.0.*")]
34
- [ assembly: AssemblyVersion ( "0.8.0.1 " ) ]
35
- [ assembly: AssemblyFileVersion ( "0.8.0.1 " ) ]
34
+ [ assembly: AssemblyVersion ( "0.8.0.2 " ) ]
35
+ [ assembly: AssemblyFileVersion ( "0.8.0.2 " ) ]
You can’t perform that action at this time.
0 commit comments