Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit eec5591

Browse files
authored
Move to .NET 10 preview 7 SDK to prepare for .NET tool (#1023)
* Move to .NET 10 preview 7 to preview for .NET tool * Revert unnecessary change
1 parent b8a8507 commit eec5591

35 files changed

+73
-8
lines changed

‎CHANGELOG.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ The Azure MCP Server updates automatically by default whenever a new release com
2626
- Enhanced `BaseAzureService` with `EscapeKqlString` method for safe KQL query construction across all Azure services. [[#938](https://github.com/Azure/azure-mcp/pull/938)]
2727
- Fixed KQL string escaping in Workbooks service queries.
2828
- Standardized Azure Storage command descriptions, option names, and parameter names for consistency across all storage commands. Updated JSON serialization context to remove unused model types and improve organization. [[#1015](https://github.com/Azure/azure-mcp/pull/1015)]
29+
- Update to .NET 10 SDK to prepare for .NET tool packing.
2930

3031
## 0.5.7 (2025-08-19)
3132

‎Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the runtime image
2-
FROM mcr.microsoft.com/dotnet/aspnet:9.0.5-bookworm-slim AS runtime
2+
FROM mcr.microsoft.com/dotnet/aspnet:9.0.8-bookworm-slim AS runtime
33

44
# Add build argument for publish directory
55
ARG PUBLISH_DIR

‎areas/bicepschema/src/AzureMcp.BicepSchema/Services/ResourceProperties/Entities/UniqueResourceType.cs‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using AzureMcp.BicepSchema.Services.ResourceProperties.Helpers;
66

77
namespace AzureMcp.BicepSchema.Services.ResourceProperties.Entities;
8+
89
public record UniqueResourceType
910
{
1011
public UniqueResourceType(string resourceType)

‎areas/bicepschema/src/AzureMcp.BicepSchema/Services/ResourceProperties/Helpers/ApiVersionComparer.cs‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Licensed under the MIT License.
33

44
namespace AzureMcp.BicepSchema.Services.ResourceProperties.Helpers;
5+
56
public class ApiVersionComparer : IComparer<string>
67
{
78
/// <summary>

‎areas/bicepschema/src/AzureMcp.BicepSchema/Services/ResourceProperties/Helpers/GuidHelper.cs‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using System.Text;
66

77
namespace AzureMcp.BicepSchema.Services.ResourceProperties.Helpers;
8+
89
public static class GuidHelper
910
{
1011
public static Guid GenerateDeterministicGuid(params string[] strings)

‎areas/bicepschema/src/AzureMcp.BicepSchema/Services/SchemaGenerator.cs‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using Microsoft.Extensions.DependencyInjection;
1010

1111
namespace AzureMcp.BicepSchema.Services;
12+
1213
public static class SchemaGenerator
1314
{
1415
public static List<ComplexType> GetResponse(TypesDefinitionResult typesDefinitionResult)

‎areas/loadtesting/src/AzureMcp.LoadTesting/Commands/LoadTest/TestCreateCommand.cs‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using Microsoft.Extensions.Logging;
1010

1111
namespace AzureMcp.LoadTesting.Commands.LoadTest;
12+
1213
public sealed class TestCreateCommand(ILogger<TestCreateCommand> logger)
1314
: BaseLoadTestingCommand<TestCreateOptions>
1415
{

‎areas/loadtesting/src/AzureMcp.LoadTesting/Commands/LoadTest/TestGetCommand.cs‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using Microsoft.Extensions.Logging;
99

1010
namespace AzureMcp.LoadTesting.Commands.LoadTest;
11+
1112
public sealed class TestGetCommand(ILogger<TestGetCommand> logger)
1213
: BaseLoadTestingCommand<TestGetOptions>
1314
{

‎areas/loadtesting/src/AzureMcp.LoadTesting/Commands/LoadTestResource/TestResourceCreateCommand.cs‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using Microsoft.Extensions.Logging;
99

1010
namespace AzureMcp.LoadTesting.Commands.LoadTestResource;
11+
1112
public sealed class TestResourceCreateCommand(ILogger<TestResourceCreateCommand> logger)
1213
: BaseLoadTestingCommand<TestResourceCreateOptions>
1314
{

‎areas/loadtesting/src/AzureMcp.LoadTesting/Commands/LoadTestResource/TestResourceListCommand.cs‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using Microsoft.Extensions.Logging;
99

1010
namespace AzureMcp.LoadTesting.Commands.LoadTestResource;
11+
1112
public sealed class TestResourceListCommand(ILogger<TestResourceListCommand> logger)
1213
: BaseLoadTestingCommand<TestResourceListOptions>
1314
{

0 commit comments

Comments
 (0)