Skip to content

Commit

Permalink
fix report xslt parameter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gasparnagy committed Jun 29, 2010
1 parent e8b6213 commit 298d1d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Reporting/ReportParameters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ protected ReportParameters(string projectFile, string outputFile, string xsltFil
{
this.ProjectFile = projectFile;
this.OutputFile = Path.GetFullPath(outputFile);
this.XsltFile = Path.GetFullPath(xsltFile);
this.XsltFile = string.IsNullOrEmpty(xsltFile) ? "" : Path.GetFullPath(xsltFile);
}
}
}

0 comments on commit 298d1d3

Please sign in to comment.