This repository was archived by the owner on Dec 19, 2018. It is now read-only.
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
Html.RenderPartialAsync("") shows an error in editor #1254
Closed
Description
Using VS2017 d15prerel (15.3 26423.1-Preview)
Add the following to a Razor file:
@section Scripts {
@{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); }
}
You get a squigglie indicating the overload doesn't exist:
You can however "Go to definition" on the method and it finds it OK. Also, runtime works fine.