├── _dist
└── .gitkeep
├── .assets
├── nupkg-icon.png
└── nupkg-icon.docx
├── SampleSites
├── SampleSite.Client
│ ├── wwwroot
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ └── css
│ │ │ └── blazor-ui.css
│ ├── Program.cs
│ ├── SampleSite.Client.csproj
│ ├── Properties
│ │ └── launchSettings.json
│ └── .vscode
│ │ ├── tasks.json
│ │ └── launch.json
├── SampleSite.Server
│ ├── wwwroot
│ │ ├── favicon.ico
│ │ └── css
│ │ │ └── blazor-ui.css
│ ├── appsettings.json
│ ├── appsettings.Development.json
│ ├── SampleSite.Server.csproj
│ ├── Properties
│ │ └── launchSettings.json
│ ├── Program.cs
│ ├── Pages
│ │ └── _Host.cshtml
│ └── .vscode
│ │ ├── tasks.json
│ │ └── launch.json
├── Net8App
│ └── BlazorApp1
│ │ ├── BlazorApp1
│ │ ├── Components
│ │ │ ├── Pages
│ │ │ │ ├── Home.razor
│ │ │ │ └── Error.razor
│ │ │ ├── Routes.razor
│ │ │ ├── _Imports.razor
│ │ │ ├── App.razor
│ │ │ └── Layout
│ │ │ │ ├── MainLayout.razor
│ │ │ │ ├── NavMenu.razor
│ │ │ │ ├── MainLayout.razor.css
│ │ │ │ └── NavMenu.razor.css
│ │ ├── wwwroot
│ │ │ ├── favicon.png
│ │ │ └── app.css
│ │ ├── appsettings.Development.json
│ │ ├── appsettings.json
│ │ ├── BlazorApp1.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ │ └── launchSettings.json
│ │ └── BlazorApp1.Client
│ │ ├── wwwroot
│ │ ├── appsettings.json
│ │ └── appsettings.Development.json
│ │ ├── Pages
│ │ ├── SpeechRecognitionOnAutoPage.razor
│ │ └── SpeechRecognitionOnServerPage.razor
│ │ ├── Program.cs
│ │ ├── _Imports.razor
│ │ ├── BlazorApp1.Client.csproj
│ │ └── Components
│ │ └── SpeechRecognitionComponent.razor
└── SampleSite.Components
│ ├── _Imports.razor
│ ├── SampleSite.Components.csproj
│ ├── Properties
│ └── launchSettings.json
│ └── App.razor
├── Toolbelt.Blazor.SpeechRecognition
├── PackageSrc
│ ├── BuildMultiTargeting
│ │ └── Toolbelt.Blazor.SpeechRecognition.targets
│ ├── BuildTransitive
│ │ └── Toolbelt.Blazor.SpeechRecognition.targets
│ └── Build
│ │ └── Toolbelt.Blazor.SpeechRecognition.targets
├── SpeechRecognitionAlternative.cs
├── SpeechRecognitionEventArgs.cs
├── SpeechRecognitionStartOptions.cs
├── script.ts
├── ILLink.Substitutions.xml
├── SpeechRecognitionResult.cs
├── SpeechRecognitionOptions.cs
├── bundleconfig.json
├── wwwroot
│ ├── script.module.min.js
│ └── script.min.js
├── ILLink.Descriptors.xml
├── script.js
├── script.module.js
├── SpeechRecognitionExtensions.cs
├── script.module.ts
├── Toolbelt.Blazor.SpeechRecognition.csproj
├── tsconfig.json
└── SpeechRecognition.cs
├── nuget.config
├── RELEASE-NOTES.txt
├── .gitattributes
├── README.md
├── Toolbelt.Blazor.SpeechRecognition.sln
├── .gitignore
└── LICENSE
/_dist/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.assets/nupkg-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsakamoto/Toolbelt.Blazor.SpeechRecognition/HEAD/.assets/nupkg-icon.png
--------------------------------------------------------------------------------
/.assets/nupkg-icon.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsakamoto/Toolbelt.Blazor.SpeechRecognition/HEAD/.assets/nupkg-icon.docx
--------------------------------------------------------------------------------
/SampleSites/SampleSite.Client/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsakamoto/Toolbelt.Blazor.SpeechRecognition/HEAD/SampleSites/SampleSite.Client/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/SampleSites/SampleSite.Server/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jsakamoto/Toolbelt.Blazor.SpeechRecognition/HEAD/SampleSites/SampleSite.Server/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/SampleSites/Net8App/BlazorApp1/BlazorApp1/Components/Pages/Home.razor:
--------------------------------------------------------------------------------
1 | @page "/"
2 |
3 |
12 | Request ID: @RequestId
13 |
18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |
20 |21 | The Development environment shouldn't be enabled for deployed applications. 22 | It can result in displaying sensitive information from exceptions to end users. 23 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 24 | and restarting the app. 25 |
26 | 27 | @code{ 28 | [CascadingParameter] 29 | private HttpContext? HttpContext { get; set; } 30 | 31 | private string? RequestId { get; set; } 32 | private bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 33 | 34 | protected override void OnInitialized() => 35 | RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier; 36 | } 37 | -------------------------------------------------------------------------------- /SampleSites/SampleSite.Server/Pages/_Host.cshtml: -------------------------------------------------------------------------------- 1 | @page "/" 2 | @namespace SampleSite.Server 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | @using SampleSite.Components 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |