File tree Expand file tree Collapse file tree 4 files changed +27
-6
lines changed
samples/KristofferStrube.Blazor.WebAudio.WasmExample Expand file tree Collapse file tree 4 files changed +27
-6
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ jobs:
1414 # Checkout the code
1515 - uses : actions/checkout@v2
1616
17- # Install .NET 8 .0 SDK
18- - name : Setup .NET 8 preview
17+ # Install .NET 9 .0 SDK
18+ - name : Setup .NET 9 preview
1919 uses : actions/setup-dotnet@v1
2020 with :
21- dotnet-version : ' 8 .0.x'
21+ dotnet-version : ' 9 .0.x'
2222 include-prerelease : true
2323
2424 # Added Ahead-Of-Time workload
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.BlazorWebAssembly" >
22
33 <PropertyGroup >
4- <TargetFramework >net8 .0</TargetFramework >
4+ <TargetFramework >net9 .0</TargetFramework >
55 <RunAOTCompilation >true</RunAOTCompilation >
66 <Nullable >enable</Nullable >
77 <ImplicitUsings >enable</ImplicitUsings >
1414 <PackageReference Include =" KristofferStrube.Blazor.CSSView" Version =" 0.1.0-alpha.0" />
1515 <PackageReference Include =" KristofferStrube.Blazor.MediaStreamRecording" Version =" 0.1.0-alpha.1" />
1616 <PackageReference Include =" KristofferStrube.Blazor.SVGEditor" Version =" 0.3.0" />
17- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 8 .0.3 " />
18- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 8 .0.3 " PrivateAssets =" all" />
17+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 9 .0.0 " />
18+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 9 .0.0 " PrivateAssets =" all" />
1919 </ItemGroup >
2020
2121 <ItemGroup >
Original file line number Diff line number Diff line change @@ -104,9 +104,11 @@ else
104104 while (true )
105105 {
106106 await leftAnalyzerNode .GetByteTimeDomainDataAsync (leftTimeDomainDataArray );
107+ await Task .Delay (10 );
107108 leftTimeDomainMeasurements = await leftTimeDomainDataArray .GetAsArrayAsync ();
108109
109110 await rightAnalyzerNode .GetByteTimeDomainDataAsync (rightTimeDomainDataArray );
111+ await Task .Delay (10 );
110112 rightTimeDomainMeasurements = await rightTimeDomainDataArray .GetAsArrayAsync ();
111113
112114 await Task .Delay (10 );
Original file line number Diff line number Diff line change 1+ ::deep .anchor-inner-thin {
2+ stroke-width : 2 ;
3+ r : 10
4+ }
5+
6+ ::deep .anchor-inner-thick {
7+ stroke-width : 4 ;
8+ r : 10
9+ }
10+
11+ ::deep .anchor-outer-thin {
12+ stroke-width : 2 ;
13+ r : 12
14+ }
15+
16+ ::deep .anchor-outer-thick {
17+ stroke-width : 4 ;
18+ r : 14
19+ }
You can’t perform that action at this time.
0 commit comments