gitextract_t_iy0_rr/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CNAME ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── ThirdPartyNotices ├── api/ │ ├── .gitignore │ └── index.md ├── appveyor.yml ├── community.md ├── docfx.json ├── docs/ │ ├── common/ │ │ └── samples/ │ │ └── 3.x/ │ │ └── BlazorSample/ │ │ ├── App.cshtml │ │ ├── BlazorSample.csproj │ │ ├── Components/ │ │ │ ├── ListViewTemplate.cshtml │ │ │ ├── Tab.cshtml │ │ │ ├── TabSet.cshtml │ │ │ └── TableTemplate.cshtml │ │ ├── JsInteropClasses/ │ │ │ ├── ExampleJsInterop.cs │ │ │ └── HelloHelper.cs │ │ ├── Pages/ │ │ │ ├── BlazorRocks.cshtml │ │ │ ├── BlazorRocksBase.cs │ │ │ ├── BlazorRoute.cshtml │ │ │ ├── CascadingValuesParametersTabSet.cshtml │ │ │ ├── CascadingValuesParametersTheme.cshtml │ │ │ ├── ChildComponent.cshtml │ │ │ ├── FetchData.cshtml │ │ │ ├── HeadingComponent.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── JSInterop.cshtml │ │ │ ├── ParentComponent.cshtml │ │ │ ├── RazorTemplates.cshtml │ │ │ ├── RouteParameter.cshtml │ │ │ ├── TemplatedComponents.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── README.md │ │ ├── Shared/ │ │ │ ├── CascadingValuesParametersLayout.cshtml │ │ │ ├── MainLayout.cshtml │ │ │ └── NavMenu.cshtml │ │ ├── Startup.cs │ │ ├── UIInterfaces/ │ │ │ └── ITab.cs │ │ ├── UIThemeClasses/ │ │ │ └── ThemeInfo.cs │ │ ├── _ViewImports.cshtml │ │ └── wwwroot/ │ │ ├── css/ │ │ │ └── site.css │ │ ├── exampleJsInterop.js │ │ ├── index.html │ │ └── sample-data/ │ │ └── weather.json │ ├── component-libraries.md │ ├── components/ │ │ └── index.md │ ├── debugging.md │ ├── dependency-injection.md │ ├── get-started.md │ ├── host-and-deploy/ │ │ ├── configure-linker.md │ │ └── index.md │ ├── hosting-models/ │ │ └── samples_snapshot/ │ │ └── Startup.cs │ ├── hosting-models.md │ ├── index.md │ ├── introduction/ │ │ ├── faq.md │ │ └── index.md │ ├── javascript-interop.md │ ├── layouts.md │ ├── routing.md │ ├── toc.md │ └── tutorials/ │ ├── build-your-first-blazor-app/ │ │ └── samples/ │ │ └── 3.x/ │ │ └── BlazorApp1/ │ │ ├── App.cshtml │ │ ├── BlazorApp1.csproj │ │ ├── Pages/ │ │ │ ├── Counter.cshtml │ │ │ ├── FetchData.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ToDo.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Program.cs │ │ ├── README.md │ │ ├── Shared/ │ │ │ ├── MainLayout.cshtml │ │ │ ├── NavMenu.cshtml │ │ │ └── SurveyPrompt.cshtml │ │ ├── Startup.cs │ │ ├── TodoItem.cs │ │ ├── _ViewImports.cshtml │ │ └── wwwroot/ │ │ ├── css/ │ │ │ ├── open-iconic/ │ │ │ │ ├── FONT-LICENSE │ │ │ │ ├── ICON-LICENSE │ │ │ │ ├── README.md │ │ │ │ └── font/ │ │ │ │ └── fonts/ │ │ │ │ └── open-iconic.otf │ │ │ └── site.css │ │ ├── index.html │ │ └── sample-data/ │ │ └── weather.json │ └── build-your-first-blazor-app.md ├── includes/ │ └── razor-components-preview-notice.md ├── index.md ├── releaseDocs.sh ├── src/ │ ├── Microsoft.AspNetCore.Blazor.Browser.xml │ ├── Microsoft.AspNetCore.Blazor.Server.xml │ ├── Microsoft.AspNetCore.Blazor.xml │ └── Microsoft.JSInterop.xml ├── template/ │ ├── index.html.tmpl │ └── styles/ │ └── main.css └── toc.yml