Skip to content

Commit 324ee28

Browse files
committed
build fix
1 parent c5da9a3 commit 324ee28

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Ghpr.Core/Helpers/ActionHelper.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ public class ActionHelper
1010

1111
public ActionHelper(string outputPath)
1212
{
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;
1418
_lock = new object();
1519
}
1620

Ghpr.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
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("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")]

0 commit comments

Comments
 (0)