Skip to content
Merged
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
9 changes: 5 additions & 4 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,11 @@
The MCP endpoint (docs/deploy.md, CLAUDE.md's "Administering the site" section): the official
C# SDK's ASP.NET Core extensions, Streamable HTTP transport, mounted as a route group inside
MUI.Web rather than a second deployable. 2.2.0's nuspec targets net8.0/net9.0/net10.0 each with
an explicit net10.0 group and an ASP.NET Core FrameworkReference of its own, so this is the
version to pin rather than trusting a floating one against a runtime it has not stated it
targets. ModelContextProtocol.Core (client+server core types, including the test-only client
used by MUI.Web.Tests) comes in transitively.
an ASP.NET Core FrameworkReference of its own, and pins rather than floats for that reason.
It is still the newest release and states no net11.0 group, so on .NET 11 its net10.0 asset is
the one resolved: that runs, and MUI.Web.Tests' MCP cases are what show it does. Move to the
first release that names net11.0. ModelContextProtocol.Core (client+server core types,
including the test-only client used by MUI.Web.Tests) comes in transitively.
-->
<PackageVersion Include="ModelContextProtocol.AspNetCore" Version="2.2.0" />
</ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions MUIndex.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<Project Path="tests/MUI.Web.Tests/MUI.Web.Tests.csproj" />
</Folder>
<Folder Name="/tools/">
<Project Path="tools/MUI.Listing.Benchmarks/MUI.Listing.Benchmarks.csproj" />
<Project Path="tools/MUI.Streaming.Prototype/MUI.Streaming.Prototype.csproj" />
</Folder>
</Solution>
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<GenerateTestingPlatformEntryPoint>false</GenerateTestingPlatformEntryPoint>
<IsTestProject>false</IsTestProject>
<IsTestingPlatformApplication>false</IsTestingPlatformApplication>
Expand Down