Reporter | Dotnet Shadow (dotnetshadow) |
---|---|
Created | Feb 1, 2018 4:15:55 AM |
Updated | Apr 17, 2018 2:26:23 PM |
Subsystem | Platform - Project Model |
Assignee | Slava Tutushkin (slava.tutushkin) |
Priority | Show-stopper |
State | Waiting for Info |
Type | Bug |
Fix version | 2018.1.1 |
Affected versions | 2017.3.1 |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
Using Resharper 2017.3.1
Project builds successfully, but there error still shows
I'm using this project: https://github.com/trenoncourt/HtmlAgilityPack.CssSelectors.NetCore
When I write this line in my own project which uses the above project I get the error:
Project builds successfully, but there error still shows
I'm using this project: https://github.com/trenoncourt/HtmlAgilityPack.CssSelectors.NetCore
When I write this line in my own project which uses the above project I get the error:
System.Private.Xml should be referenced error
var nodes = doc.QuerySelectorAll("div .my-class[data-attr=123] > ul li").Select(x=>x.InnerTest); // If I put .Select() it causes the issue, if I don't put it it's ok