@@ -105,8 +105,11 @@ $DocFxConfigFileInfos = Find-FilesByPattern -Path (Get-Path -Paths @("$ConfigRoo
105105
106106# Enable github specific nuget sources.
107107$GitHubPackagesUser = " eigenverft"
108- $GitHubSourceName = " githubeigenverft "
108+ $GitHubSourceName = " github "
109109$GitHubSourceUri = " https://nuget.pkg.github.com/$GitHubPackagesUser /index.json"
110+ $NuGetTestSourceUri = " https://apiint.nugettest.org/v3/index.json"
111+ $NuGetOrgSourceUri = " https://api.nuget.org/v3/index.json"
112+ Unregister-LocalNuGetDotNetPackageSource - SourceName " $GitHubSourceName "
110113Invoke-Exec - Executable " dotnet" - Arguments @ (" nuget" , " add" , " source" , " --username" , " $GitHubPackagesUser " , " --password" , " $NUGET_GITHUB_PUSH " , " --store-password-in-clear-text" , " --name" , " $GitHubSourceName " , " $GitHubSourceUri " ) - CaptureOutput $false - CaptureOutputDump $false - HideValues @ ($NUGET_GITHUB_PUSH )
111114
112115# Enable the .NET tools specified in the manifest file
@@ -135,7 +138,7 @@ $SolutionFileInfos = Find-FilesByPattern -Path "$GitRepositoryRoot\source" -Patt
135138$SolutionProjectPaths = @ ()
136139foreach ($solutionFile in $SolutionFileInfos ) {
137140 # all ready sorted by the bbdist
138- $CurrentProjectPaths = Invoke-Exec - Executable " bbdist " - Arguments @ ( " sln" , " --file " , " $ ( $solutionFile.FullName ) " ) - ReturnType ' Strings '
141+ $CurrentProjectPaths = Invoke-ProcessTyped - Executable " drydock.exe " - Arguments @ ( " sln" , " --location " , " $ ( $solutionFile.FullName ) " ) - ReturnType ' Objects '
139142 $SolutionProjectPaths += [pscustomobject ]@ { Sln = $solutionFile ; Prj = ($CurrentProjectPaths | ForEach-Object { Get-Item $_ }) };
140143}
141144
@@ -339,11 +342,7 @@ foreach ($SolutionProjectPaths in $SolutionProjectPaths) {
339342
340343# Resolving deployment information for the current branch
341344$DeploymentChannel = $BranchDeploymentConfig.Channel.Value
342- $GitHubPackagesUser = " eigenverft"
343- $GitHubSourceName = " github"
344- $GitHubSourceUri = " https://nuget.pkg.github.com/$GitHubPackagesUser /index.json"
345- $NuGetTestSourceUri = " https://apiint.nugettest.org/v3/index.json"
346- $NuGetOrgSourceUri = " https://api.nuget.org/v3/index.json"
345+
347346
348347$BinaryDropRootPath = " C:\temp\$GitRepositoryName -drops"
349348
0 commit comments