Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Solution project failed to load

I have database project which work until we migrated visual studio from VS2015 to VS2017. Now one project failing to load and I can't understand why? Everything was installed what need to work with reports. Different report project works perfectly.

AS you can see the last project in solution was not loaded enter image description here

Then I try reload it I am getting C:\xxx\xxx\xxx\xxx\xxx\xxx\xxx.rptproj : error : There is an error in XML document (2, 2).

Project xml looks like enter image description here

Looking for solution or hint how I could load the project? ps. on diferent machine with VS2017 project work and both have the same version from source control

like image 718
Gurult Avatar asked May 30 '26 06:05

Gurult


1 Answers

Found solution : First created empty report project and changed in the line

<Project xmlns:xsi="http://schemas.microsoft.com/developer/msbuild/2003">

To

<Project xmlns:xsi="http://schemas.microsoft.com/developer/msbuild/2003-instance" xmlns:xsd="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="15.0">

Then clicked reload solution and it workded.

Thank you for help solve problem especially jdweng for given idea

like image 93
Gurult Avatar answered Jun 01 '26 19:06

Gurult