File tree Expand file tree Collapse file tree
tools/releaseBuild/azureDevOps Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ $dotnetMetadata = Get-Content $PSScriptRoot/DotnetRuntimeMetadata.json | Convert
2020$dotnetCLIChannel = $dotnetMetadata.Sdk.Channel
2121$dotnetCLIQuality = $dotnetMetadata.Sdk.Quality
2222# __DOTNET_RUNTIME_FEED and __DOTNET_RUNTIME_FEED_KEY are private variables used in release builds
23- $dotnetAzureFeed = if (-not $env: __DOTNET_RUNTIME_FEED ) { $dotnetMetadata.Sdk.azureFeed } else { $env: __DOTNET_RUNTIME_FEED }
23+ $dotnetAzureFeed = if ([ string ]::IsNullOrWhiteSpace( $env: __DOTNET_RUNTIME_FEED ) ) { $dotnetMetadata.Sdk.azureFeed } else { $env: __DOTNET_RUNTIME_FEED }
2424$dotnetAzureFeedSecret = $env: __DOTNET_RUNTIME_FEED_KEY
2525$dotnetSDKVersionOveride = $dotnetMetadata.Sdk.sdkImageOverride
2626$dotnetCLIRequiredVersion = $ (Get-Content $PSScriptRoot / global.json | ConvertFrom-Json ).Sdk.Version
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ parameters:
2323- name : InternalSDKBlobURL
2424 displayName : URL to the blob havibg internal .NET SDK
2525 type : string
26+ default : ' '
2627
2728variables :
2829 - name : DOTNET_CLI_TELEMETRY_OPTOUT
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ parameters:
2121 - name : InternalSDKBlobURL
2222 displayName : URL to the blob having internal .NET SDK
2323 type : string
24+ default : ' '
2425
2526resources :
2627 repositories :
You can’t perform that action at this time.
0 commit comments