Remco;16917 wrote:Hi, thanks for sharing this issue.
Could you check whether the project files involved each have a correct closing tag in the form of: </Project> ?
This error seems to be related to the tag not being found or perhaps being syntactically different.
Wooww... that was the issue, thanks!
Our failing project had this:
<Project Sdk="Microsoft.NET.Sdk"/>
It now loads correctly with this content:
<Project Sdk="Microsoft.NET.Sdk">
</Project>
Question: Why did my inital .csproj content not work ? (without the closing tag)
Second question/request: I didn't manage to copy the whole exception stacktrace content from the Trace Output window (I typed the exception stacktrace in first post word for word...), can this be fixed ? I could select all content, but CTRL+C or a copy context menu was not possible...