Skip to content
Merged
1 change: 1 addition & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<clear />
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
<!-- Begin: Package sources from dotnet-dotnet -->
<add key="darc-pub-dotnet-dotnet-e8558e6" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-dotnet-e8558e63/nuget/v3/index.json" />
<!-- End: Package sources from dotnet-dotnet -->
<!-- Begin: Package sources from dotnet-runtime -->
<!-- End: Package sources from dotnet-runtime -->
Expand Down
4 changes: 2 additions & 2 deletions eng/Version.Details.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ This file should be imported by eng/Versions.props
<Project>
<PropertyGroup>
<!-- dotnet-dotnet dependencies -->
<MicrosoftDotNetArcadeSdkPackageVersion>10.0.0-beta.26310.111</MicrosoftDotNetArcadeSdkPackageVersion>
<SystemCommandLinePackageVersion>2.0.10</SystemCommandLinePackageVersion>
<MicrosoftBclAsyncInterfacesPackageVersion>10.0.8</MicrosoftBclAsyncInterfacesPackageVersion>
<MicrosoftDotNetArcadeSdkPackageVersion>10.0.0-beta.26310.101</MicrosoftDotNetArcadeSdkPackageVersion>
<MicrosoftExtensionsDependencyInjectionAbstractionsPackageVersion>10.0.8</MicrosoftExtensionsDependencyInjectionAbstractionsPackageVersion>
<MicrosoftExtensionsLoggingPackageVersion>10.0.8</MicrosoftExtensionsLoggingPackageVersion>
<MicrosoftExtensionsLoggingAbstractionsPackageVersion>10.0.8</MicrosoftExtensionsLoggingAbstractionsPackageVersion>
<MicrosoftExtensionsLoggingConsolePackageVersion>10.0.8</MicrosoftExtensionsLoggingConsolePackageVersion>
<SystemCommandLinePackageVersion>2.0.8</SystemCommandLinePackageVersion>
<SystemDiagnosticsDiagnosticSourcePackageVersion>10.0.8</SystemDiagnosticsDiagnosticSourcePackageVersion>
<SystemFormatsAsn1PackageVersion>10.0.8</SystemFormatsAsn1PackageVersion>
<SystemIOPipelinesPackageVersion>10.0.8</SystemIOPipelinesPackageVersion>
Expand Down
12 changes: 6 additions & 6 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<Dependencies>
<Source Uri="https://github.com/dotnet/dotnet" Mapping="templating" Sha="1411d0c2d987bb22e14603b108180819f5b54159" BarId="318143" />
<Source Uri="https://github.com/dotnet/dotnet" Mapping="templating" Sha="e8558e6339cd4fccd998b5cdecb76eeb6ec75363" BarId="318234" />
<ProductDependencies>
<Dependency Name="System.CommandLine" Version="2.0.8">
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet</Uri>
<Sha>94ea82652cdd4e0f8046b5bd5becbd11461482ca</Sha>
<Dependency Name="System.CommandLine" Version="2.0.10">
<Uri>https://github.com/dotnet/dotnet</Uri>
<Sha>e8558e6339cd4fccd998b5cdecb76eeb6ec75363</Sha>
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.26310.101">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.26310.111">
<Uri>https://github.com/dotnet/dotnet</Uri>
<Sha>1411d0c2d987bb22e14603b108180819f5b54159</Sha>
<Sha>e8558e6339cd4fccd998b5cdecb76eeb6ec75363</Sha>
</Dependency>
<!-- Dependencies required for source build. We'll still update manually -->
<Dependency Name="System.Formats.Asn1" Version="10.0.8">
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"dotnet": "10.0.300"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26310.101"
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26310.111"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,9 @@ await Task.WhenAll(
var finishedTask = await Task.WhenAny(tasks);
tasks.Remove(finishedTask);
(PackageSource foundSource, IEnumerable<IPackageSearchMetadata>? foundPackages) = await finishedTask;
_nugetLogger.LogDebug($"[NuGet Package Manager] Processed source {foundSource.Source}, found {foundPackages?.Count()} packages.");
_nugetLogger.LogDebug(foundPackages == null
? $"[NuGet Package Manager] Processed source {foundSource.Source}, no metadata found."
: $"[NuGet Package Manager] Processed source {foundSource.Source}, found {foundPackages.Count()} packages.");
if (foundPackages == null)
{
continue;
Expand Down