I'm trying out xamarin webView where you can use a razor-view as the UI. But the intellisense for the C#-code doesn't work.
Is this a known bug or am I missing something? Do I need to configure it in the webConfig-file?
The code works and builds, but when I need a model in razor intellisense won't work:
@model TestProject.Models.Model1
<html>
<head>
<title>testProject</title>
</head>
<body>
@Model.Text
</body>
</html>
Where I write @model
and @Model
, it just says 'Cannot resolve symbol...'
What to do?