File tree Expand file tree Collapse file tree
ssrs-powershell-deploy/SSRS Expand file tree Collapse file tree Original file line number Diff line number Diff line change 114114
115115 if ((test-path $CompiledRdlPath ) -eq $false )
116116 {
117- write-error (' File {0} not found. Build your project before deploying .' -f $CompiledRdlPath )
117+ write-error (' Report " {0}" is listed in the project but wasn '' t found in the bin\ folder. Rebuild your project before publishing .' -f $CompiledRdlPath )
118118 break ;
119119 }
120120 $RdlLastModified = (get-item $RdlPath ).LastWriteTime
121121 $CompiledRdlLastModified = (get-item $CompiledRdlPath ).LastWriteTime
122122 if ($RdlLastModified -gt $CompiledRdlLastModified )
123123 {
124- # warning about to publish older report
125- write-error (' File {0} is older than source file {1}. Rebuild your project before publishing.' -f $CompiledRdlPath , $RdlPath )
124+ write-error (' Report "{0}" in bin\ is older than source file "{1}". Rebuild your project before publishing.' -f $CompiledRdlPath , $RdlPath )
126125 break ;
127126 }
128127 }
You can’t perform that action at this time.
0 commit comments