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
4 changes: 2 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ templates/ # Project templates
| Component | Technology |
| --------- | -------------- |
| Runtime | .NET 8/9/10 |
| SDK | 10.0.100 |
| SDK | 10.0.102 |
| Build | Nuke.Build |
| Tests | xUnit |
| Snapshots | CookieCrumble |
Expand Down Expand Up @@ -229,7 +229,7 @@ public class Query
| Build fails | Run `./init.sh` first |
| Missing packages | Run `./build.sh restore` |
| Snapshot mismatch | Check `__snapshots__/` for expected output |
| SDK not found | Install .NET SDK 10.0.100 |
| SDK not found | Install .NET SDK 10.0.102 |

## Links

Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ templates/ # Project templates

## Technology Stack

- **.NET**: SDK 10.0.100 (supports .NET 8, 9, 10)
- **.NET**: SDK 10.0.102 (supports .NET 8, 9, 10)
- **Build System**: Nuke.Build
- **Testing**: xUnit with CookieCrumble for snapshots
- **Documentation**: Gatsby + React + TypeScript
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ else
# install older frameworks for tests
"$DOTNET_INSTALL_FILE" --install-dir "$DOTNET_DIRECTORY" --version "8.0.416" --no-path
"$DOTNET_INSTALL_FILE" --install-dir "$DOTNET_DIRECTORY" --version "9.0.308" --no-path
"$DOTNET_INSTALL_FILE" --install-dir "$DOTNET_DIRECTORY" --version "10.0.100" --no-path
"$DOTNET_INSTALL_FILE" --install-dir "$DOTNET_DIRECTORY" --version "10.0.102" --no-path

# If global.json exists, load expected version
if [[ -f "$DOTNET_GLOBAL_FILE" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "10.0.100",
"version": "10.0.102",
Comment thread
glen-84 marked this conversation as resolved.
"rollForward": "latestMinor"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ public static void AddMcpServices(this IServiceCollection services, string schem
static (sp, name) => new McpRequestExecutorProxy(
sp.GetRequiredService<IRequestExecutorProvider>(),
sp.GetRequiredService<IRequestExecutorEvents>(),
#if NET10_0_OR_GREATER
(string)name))
#else
(string)name!))
#endif
.AddKeyedSingleton(
schemaName,
static (sp, name) => new StreamableHttpHandlerProxy(
Expand Down
Loading