Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Parameter "unevaluatedValue" cannot be null when saving *.rptproj project

If you have existing Report Server Project in your solution and you upgrade SQL Server Data Tools from version 14.0.61707.300 to 14.0.61709.290, you can get following message when opening your existing *.rptproj files:

Upgrade message

When you confirm upgrade by clicking on "Yes" button, solution could be successfully opened. When you try to save modified project file, you can get SaveAs... dialog and following confirmation box:

replace project file confirmation

But when you confirm replacing existing project file, you could get an error from Visual Studio: Parameter "unevaluatedValue" cannot be null

like image 502
Rudolf Dvoracek Avatar asked Nov 17 '17 16:11

Rudolf Dvoracek


1 Answers

As I found at Community developer site, the problem is in the content of project files. To solve the situation you have to open existing *.rptproj file and manually add Platform into all build configurations, where it is missing.

Adding missing Platform element into project file

After this change, Visual Studio detects that project files has been changed, so you can reload them and therefore you can save them.

like image 190
Rudolf Dvoracek Avatar answered Sep 20 '22 12:09

Rudolf Dvoracek