Added the Blazor survey link to the Blazor-Server project template (#17434)
* Added the survey link to the Blazor Server project * Use new survey link for server project * Updated the baseline to include the SurveyPrompt.razor file * Added the SurveyPrompt.razor to all the test baselines
This commit is contained in:
parent
bc7135c202
commit
452a822b62
|
|
@ -3,3 +3,5 @@
|
|||
<h1>Hello, world!</h1>
|
||||
|
||||
Welcome to your new app.
|
||||
|
||||
<SurveyPrompt Title="How is Blazor working for you?" />
|
||||
|
|
|
|||
|
|
@ -0,0 +1,16 @@
|
|||
<div class="alert alert-secondary mt-4" role="alert">
|
||||
<span class="oi oi-pencil mr-2" aria-hidden="true"></span>
|
||||
<strong>@Title</strong>
|
||||
|
||||
<span class="text-nowrap">
|
||||
Please take our
|
||||
<a target="_blank" class="font-weight-bold" href="https://go.microsoft.com/fwlink/?linkid=2112271">brief survey</a>
|
||||
</span>
|
||||
and tell us what you think.
|
||||
</div>
|
||||
|
||||
@code {
|
||||
// Demonstrates how a parent component can supply parameters
|
||||
[Parameter]
|
||||
public string Title { get; set; }
|
||||
}
|
||||
|
|
@ -922,6 +922,7 @@
|
|||
"Shared/LoginDisplay.razor",
|
||||
"Shared/MainLayout.razor",
|
||||
"Shared/NavMenu.razor",
|
||||
"Shared/SurveyPrompt.razor",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/bootstrap/bootstrap.min.css",
|
||||
|
|
@ -958,6 +959,7 @@
|
|||
"Shared/LoginDisplay.razor",
|
||||
"Shared/MainLayout.razor",
|
||||
"Shared/NavMenu.razor",
|
||||
"Shared/SurveyPrompt.razor",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/bootstrap/bootstrap.min.css",
|
||||
|
|
@ -994,6 +996,7 @@
|
|||
"Shared/LoginDisplay.razor",
|
||||
"Shared/MainLayout.razor",
|
||||
"Shared/NavMenu.razor",
|
||||
"Shared/SurveyPrompt.razor",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/bootstrap/bootstrap.min.css",
|
||||
|
|
@ -1029,6 +1032,7 @@
|
|||
"Properties/launchSettings.json",
|
||||
"Shared/MainLayout.razor",
|
||||
"Shared/NavMenu.razor",
|
||||
"Shared/SurveyPrompt.razor",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/bootstrap/bootstrap.min.css",
|
||||
|
|
@ -1065,6 +1069,7 @@
|
|||
"Shared/LoginDisplay.razor",
|
||||
"Shared/MainLayout.razor",
|
||||
"Shared/NavMenu.razor",
|
||||
"Shared/SurveyPrompt.razor",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/bootstrap/bootstrap.min.css",
|
||||
|
|
@ -1101,6 +1106,7 @@
|
|||
"Shared/LoginDisplay.razor",
|
||||
"Shared/MainLayout.razor",
|
||||
"Shared/NavMenu.razor",
|
||||
"Shared/SurveyPrompt.razor",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/bootstrap/bootstrap.min.css",
|
||||
|
|
|
|||
Loading…
Reference in New Issue