Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"isRoot": true,
"tools": {
"dotnet-sonarscanner": {
"version": "11.2.1",
"version": "11.3.0",
"commands": [
"dotnet-sonarscanner"
]
},
"demaconsulting.pandoctool": {
"version": "3.10.2",
"version": "3.11.0",
"commands": [
"pandoc"
]
Expand Down
10 changes: 5 additions & 5 deletions src/DemaConsulting.Speech.Demo/DemaConsulting.Speech.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@

<!-- Avalonia UI Dependencies -->
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.20" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.20" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.20" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.20" />
<PackageReference Include="Avalonia" Version="12.1.2" />
<PackageReference Include="Avalonia.Desktop" Version="12.1.2" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="12.1.2" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="12.1.2" />
<!-- Diagnostics (the developer-tools overlay) is a development aid only and must never ship
in a Release build, so it is conditioned on the Debug configuration. -->
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.20" Condition="'$(Configuration)' == 'Debug'" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
</ItemGroup>

<!-- Speech Engine Native Runtime Dependencies.
Expand Down
2 changes: 1 addition & 1 deletion src/DemaConsulting.Speech/DemaConsulting.Speech.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<PackageReference Include="Microsoft.Sbom.Targets" Version="4.1.5" PrivateAssets="All" />
<PackageReference Include="Polyfill" Version="11.2.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.400" PrivateAssets="All" />
<PackageReference Include="DemaConsulting.ApiMark.MSBuild" Version="0.5.0-beta.2" PrivateAssets="All" />
<PackageReference Include="DemaConsulting.ApiMark.MSBuild" Version="0.5.0-beta.3" PrivateAssets="All" />
<PackageReference Include="PortAudioSharp2" Version="1.0.6" />
<!-- Managed sherpa-onnx API only. The matching org.k2fsa.sherpa.onnx.runtime.{RID} native
package is deliberately NOT referenced here: this library does NOT bundle sherpa-onnx
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<IncludeAssets>compile; runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" Version="2.3.3" />
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" Version="2.4.0" />
<PackageReference Include="NSubstitute" Version="6.2.0" />
<PackageReference Include="xunit.v3" Version="4.0.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="4.0.0">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<IncludeAssets>compile; runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" Version="2.3.3" />
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" Version="2.4.0" />
<PackageReference Include="NSubstitute" Version="6.2.0" />
<PackageReference Include="xunit.v3" Version="4.0.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="4.0.0">
Expand Down
Loading