Skip to content

Commit

Permalink
culture invariant change (#2344)
Browse files Browse the repository at this point in the history
Co-authored-by: ROSHAN SAHU <roshansahu@microsoft.com>
  • Loading branch information
sahuroshan and ROSHAN SAHU authored Mar 18, 2024
1 parent ee8f96e commit 271d0f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.SqlTools.Migration/MigrationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ internal async Task HandleGetArmTemplateRequest(
string jsonOutput = JsonConvert.SerializeObject(
template,
Formatting.Indented,
new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }
new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore, Culture = CultureInfo.InvariantCulture }
);

await requestContext.SendResult(jsonOutput);
Expand Down

0 comments on commit 271d0f4

Please sign in to comment.