From 298d1d3dd272bd3ea59f04cb6170b9b3f1a607de Mon Sep 17 00:00:00 2001 From: "gaspar.nagy" Date: Tue, 29 Jun 2010 12:23:59 +0200 Subject: [PATCH] fix report xslt parameter issue --- Reporting/ReportParameters.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Reporting/ReportParameters.cs b/Reporting/ReportParameters.cs index 8eabead2c..120920787 100644 --- a/Reporting/ReportParameters.cs +++ b/Reporting/ReportParameters.cs @@ -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); } } } \ No newline at end of file