Skip to content

Commit 21c1668

Browse files
authored
Merge pull request #3529 from ryanbrandenburg/patch-1
Update test-plan.md
2 parents 708a433 + b01ad53 commit 21c1668

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test-plan.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ To setup a test project to verify on you can do:
106106
* Completion is available for types that exist in the project (i.e. `Program`)
107107
* Typing `@model DateTime` prompts for completion for the `model` symbol and the `DateTime` symbol.
108108

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+
109112
##### C# Signature Help
110113
* Typing `@Html.Raw()` prompts for signature help inside of the `()`.
111114

@@ -137,6 +140,9 @@ To setup a test project to verify on you can do:
137140
##### C# Diagnostics
138141
* 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.
139142

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+
140146
##### TagHelper completion
141147
Note that the pipe in the below examples indicates the cursor.
142148
* Typing `<environment>` prompts you with HTML completion for the `environment` tag and on completion commit auto-completes the closing tag.

0 commit comments

Comments
 (0)