You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test-plan.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,9 @@ To setup a test project to verify on you can do:
106
106
* Completion is available for types that exist in the project (i.e. `Program`)
107
107
* Typing `@model DateTime` prompts for completion for the `model` symbol and the `DateTime` symbol.
108
108
109
+
##### C# Lightbulbs
110
+
* Typing `@{ var x = new HtmlString("sdf"); }`results in squiggles under `HtmlString`. Selecting `HtmlString` and pressing Ctrl+. results in a change suggestion to fully-qualify that type name as `Microsoft.AspNetCore.Html.HtmlString`. Hitting enter on that suggestion resolves the squiggles and changes the line.
111
+
109
112
##### C# Signature Help
110
113
* Typing `@Html.Raw()` prompts for signature help inside of the `()`.
111
114
@@ -137,6 +140,9 @@ To setup a test project to verify on you can do:
137
140
##### C# Diagnostics
138
141
* Typing `@ThisDoesNotExist` results in an error being created and squiggled in the .cshtml file. NOTE: This error squiggly will be misaligned due to known issues.
139
142
143
+
##### TagHelper Quick Info
144
+
* Typing `<environment></environment>` then hovering the mouse over the opening tag results in a window about that TagHelper that should read something like `EnvironmentTagHelper ITagHelper implementation targeting <environment> elements that conditionally renders content based on the current value of IHostingEnvironment.EnvironmentName...`.
145
+
140
146
##### TagHelper completion
141
147
Note that the pipe in the below examples indicates the cursor.
142
148
* Typing `<environment>` prompts you with HTML completion for the `environment` tag and on completion commit auto-completes the closing tag.
0 commit comments