We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34eb706 commit 65ba85aCopy full SHA for 65ba85a
packages/http-client-csharp/eng/scripts/Generate.ps1
@@ -185,5 +185,5 @@ if ($null -eq $filter) {
185
# Write the launch settings to the launchSettings.json file
186
$launchSettingsPath = Join-Path $solutionDir "Microsoft.Generator.CSharp" "src" "Properties" "launchSettings.json"
187
# Write the settings to JSON and normalize line endings to Unix style (LF)
188
- $sortedLaunchSettings | ConvertTo-Json | ForEach-Object { $_ -replace "`r`n", "`n" } | Set-Content $launchSettingsPath
+ $sortedLaunchSettings | ConvertTo-Json | ForEach-Object { ($_ -replace "`r`n", "`n") + "`n" } | Set-Content -NoNewLine $launchSettingsPath
189
}
0 commit comments