Open mbpictures opened 4 years ago
In file AvalonStudio/Avalonia.Ide/src/Avalonia.Ide.CompletionEngine/XmlParser.cs
On line 311, there are two =
one after another. Delete one, and you are good to go.
var clonedStack = = new Stack<int>(new Stack<int>(_containingTagStart));
should be
var clonedStack = new Stack<int>(new Stack<int>(_containingTagStart));
Hello @mbpictures, the problem should no longer occur
Hello,
I followed your build instructions and I'm getting the following error while I'm building:
The file "Avalonia.Ide.CompletionEngine.csproj" looks like this:
Do you have any idea how to fix this?