Author SHA1 Message Date
codex 44ce419c49 fix: copy available MAS model assets
PR and Push Build/Test / build-and-test (push) Successful in 11m38s
PR and Push Build/Test / build-and-test (pull_request) Failing after 11m41s
2026-08-05 13:01:50 +02:00
codex a087ff0cbf Merge remote-tracking branch 'origin/main' into renovate/microsoftspeechversion 2026-08-05 13:00:56 +02:00
codex 8dc1b70f8a test: stabilize summary retry background wait
PR and Push Build/Test / build-and-test (push) Successful in 11m32s
2026-08-05 12:35:00 +02:00
codex aaee123b9a merge: attach calendar metadata to active meetings
PR and Push Build/Test / build-and-test (push) Failing after 18m6s
2026-08-05 11:59:35 +02:00
renovate-bot ada4a40f62 Update MicrosoftSpeechVersion to 1.51.1
PR and Push Build/Test / build-and-test (push) Successful in 10m0s
PR and Push Build/Test / build-and-test (pull_request) Successful in 11m11s
2026-08-04 02:39:30 +00:00
2 changed files with 5 additions and 4 deletions
@@ -189,7 +189,9 @@ public sealed class MeetingSummaryRetryRunnerTests
return; return;
} }
await stateChanged.Task.WaitAsync(TimeSpan.FromMilliseconds(100)); await Task.WhenAny(
stateChanged.Task,
Task.Delay(TimeSpan.FromMilliseconds(100)));
} }
throw new TimeoutException($"Expected {count} state changes."); throw new TimeoutException($"Expected {count} state changes.");
+2 -3
View File
@@ -5,7 +5,7 @@
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<PreserveCompilationContext>true</PreserveCompilationContext> <PreserveCompilationContext>true</PreserveCompilationContext>
<MicrosoftSpeechVersion>1.50.0</MicrosoftSpeechVersion> <MicrosoftSpeechVersion>1.51.1</MicrosoftSpeechVersion>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'"> <PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
@@ -50,8 +50,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'"> <ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
<None Include="$(NuGetPackageRoot)microsoft.cognitiveservices.speech.extension.mas\$(MicrosoftSpeechVersion)\contentFiles\any\any\models\aec_v1.fpie" Link="runtimes\win-x64\native\MASmodels\aec_v1.fpie" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" /> <None Include="$(NuGetPackageRoot)microsoft.cognitiveservices.speech.extension.mas\$(MicrosoftSpeechVersion)\contentFiles\any\any\models\*.fpie" Link="runtimes\win-x64\native\MASmodels\%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
<None Include="$(NuGetPackageRoot)microsoft.cognitiveservices.speech.extension.mas\$(MicrosoftSpeechVersion)\contentFiles\any\any\models\pns_avg4.fpie" Link="runtimes\win-x64\native\MASmodels\pns_avg4.fpie" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>