diff --git a/eng/packages/http-client-csharp/ci.yml b/eng/packages/http-client-csharp/ci.yml index 26d51fe314b09..b4a6773e383f2 100644 --- a/eng/packages/http-client-csharp/ci.yml +++ b/eng/packages/http-client-csharp/ci.yml @@ -22,15 +22,15 @@ parameters: - name: ShouldPublish displayName: 'Publish packages' type: boolean - default: true + default: false - name: PublishPublic displayName: 'Publish to npmjs.org' type: boolean default: false - - name: ShouldRegenrate + - name: ShouldRegenerate displayName: 'Regenerate clients' type: boolean - default: true + default: false variables: - template: /eng/pipelines/templates/variables/image.yml @@ -45,7 +45,7 @@ extends: PublishPublic: ${{ parameters.PublishPublic }} PublishDependsOnTest: ${{ parameters.PublishPublic }} - ShouldRegenrate: ${{ parameters.ShouldRegenrate }} + ShouldRegenerate: ${{ parameters.ShouldRegenerate }} RegenerationJobCount: 5 MinimumPerJob: 10 OnlyGenerateTypespec: true diff --git a/eng/scripts/typespec/Build-Emitter.ps1 b/eng/scripts/typespec/Build-Emitter.ps1 index 247fc134cf10f..3caeec09c6d11 100644 --- a/eng/scripts/typespec/Build-Emitter.ps1 +++ b/eng/scripts/typespec/Build-Emitter.ps1 @@ -12,7 +12,7 @@ Set-StrictMode -Version 3.0 . "$PSScriptRoot/../../common/scripts/common.ps1" Set-ConsoleEncoding -$packageRoot = Resolve-Path "$RepoRooot/eng/packages/http-client-csharp" +$packageRoot = Resolve-Path "$RepoRoot/eng/packages/http-client-csharp" $outputPath = $OutputDirectory ? $OutputDirectory : (Join-Path $packageRoot "artifacts" "build") Push-Location $packageRoot diff --git a/eng/scripts/typespec/Generate-Code.ps1 b/eng/scripts/typespec/Generate-Code.ps1 index bdf154b1a5fc1..fd87c760daa17 100644 --- a/eng/scripts/typespec/Generate-Code.ps1 +++ b/eng/scripts/typespec/Generate-Code.ps1 @@ -5,7 +5,7 @@ Set-StrictMode -Version 3.0 . "$PSScriptRoot/../../common/scripts/common.ps1" Set-ConsoleEncoding -$packageRoot = Resolve-Path "$RepoRooot/eng/packages/http-client-csharp" +$packageRoot = Resolve-Path "$RepoRoot/eng/packages/http-client-csharp" function Get-TspCommand { param ( diff --git a/eng/scripts/typespec/Initialize-WorkingDirectory.ps1 b/eng/scripts/typespec/Initialize-WorkingDirectory.ps1 index d89e23a24a2d6..1688bc24f657b 100644 --- a/eng/scripts/typespec/Initialize-WorkingDirectory.ps1 +++ b/eng/scripts/typespec/Initialize-WorkingDirectory.ps1 @@ -15,7 +15,7 @@ if ($UseTypeSpecNext) { Write-Host "##vso[build.addbuildtag]typespec_next" } -$packageRoot = Resolve-Path "$RepoRooot/eng/packages/http-client-csharp" +$packageRoot = Resolve-Path "$RepoRoot/eng/packages/http-client-csharp" Push-Location $packageRoot try { if (Test-Path "./node_modules") { diff --git a/eng/scripts/typespec/Test-Emitter.ps1 b/eng/scripts/typespec/Test-Emitter.ps1 index 9e886cb2063f2..2ff6f24322666 100644 --- a/eng/scripts/typespec/Test-Emitter.ps1 +++ b/eng/scripts/typespec/Test-Emitter.ps1 @@ -12,7 +12,7 @@ Set-StrictMode -Version 3.0 . "$PSScriptRoot/../../common/scripts/common.ps1" Set-ConsoleEncoding -$packageRoot = Resolve-Path "$RepoRooot/eng/packages/http-client-csharp" +$packageRoot = Resolve-Path "$RepoRoot/eng/packages/http-client-csharp" $testResultsPath = $OutputDirectory ? $OutputDirectory : (Join-Path $packageRoot "artifacts" "test") $errors = @() Push-Location $packageRoot