Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
<PackageVersion Include="StackExchange.Redis" Version="2.13.1" />
<PackageVersion Include="System.IO.Hashing" Version="10.0.8" />
<PackageVersion Include="Yarp.ReverseProxy" Version="2.3.0" />
<PackageVersion Include="StreamJsonRpc" Version="2.22.23" />
<PackageVersion Include="StreamJsonRpc" Version="2.25.28" />
Comment thread
mitchdenny marked this conversation as resolved.
Outdated
Comment thread
mitchdenny marked this conversation as resolved.
Outdated
<PackageVersion Include="Semver" Version="3.0.0" />
<PackageVersion Include="Sigstore" Version="0.5.0" />
<PackageVersion Include="Tuf" Version="0.5.0" />
Expand Down
14 changes: 13 additions & 1 deletion src/Aspire.Hosting/Aspire.Hosting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,19 @@
<PackageReference Include="AspNetCore.HealthChecks.Uris" />
<PackageReference Include="Semver" />
<PackageReference Include="System.IO.Hashing" />
<PackageReference Include="StreamJsonRpc" />
<!--
StreamJsonRpc 2.25.28 brings MessagePack 2.5.302 transitively (clears
GHSA-hv8m-jj95-wg3x / CVE-2026-48109 for downstream consumers like AppHost
projects generated by `dotnet new aspire-starter`). However, the StreamJsonRpc
nupkg ships an analyzer assembly built against Roslyn 4.14, which is newer
than the Roslyn 4.11 shipped in the .NET 8 SDK that our template tests use to
build generated AppHost projects — that triggers CSC error CS9057. We don't
use any of the StreamJsonRpc analyzers in this assembly, so ExcludeAssets
skips them without affecting runtime behavior. Remove the ExcludeAssets once
our template-test toolchain moves to a .NET SDK with Roslyn >= 4.14.
See microsoft/vs-streamjsonrpc#1459.
-->
<PackageReference Include="StreamJsonRpc" ExcludeAssets="analyzers" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading