Skip to content

Add async compression benchmarks (CompressAsync/DecompressAsync)#5138

Draft
Copilot wants to merge 2 commits intomainfrom
copilot/add-compression-benchmark-async
Draft

Add async compression benchmarks (CompressAsync/DecompressAsync)#5138
Copilot wants to merge 2 commits intomainfrom
copilot/add-compression-benchmark-async

Conversation

Copy link
Contributor

Copilot AI commented Mar 4, 2026

Adds CompressAsync and DecompressAsync benchmark methods to CompressionStreamPerfTestBase, mirroring the existing sync Compress/Decompress benchmarks using WriteAsync/ReadAsync.

Defined in the base class, so automatically available for all derived benchmarks: Gzip, Deflate, ZLib, Brotli, and Zstandard.

[Benchmark]
public async Task CompressAsync()
{
    CompressedFile.CompressedDataStream.Position = 0;
    using var compressor = CreateStream(CompressedFile.CompressedDataStream, level);
    await compressor.WriteAsync(CompressedFile.UncompressedData, 0, CompressedFile.UncompressedData.Length);
}

[Benchmark]
public async Task<int> DecompressAsync()
{
    CompressedFile.CompressedDataStream.Position = 0;
    using var compressor = CreateStream(CompressedFile.CompressedDataStream, CompressionMode.Decompress);
    byte[] buffer = CompressedFile.UncompressedData;
    int totalRead = 0;
    while (totalRead < buffer.Length)
    {
        int bytesRead = await compressor.ReadAsync(buffer, totalRead, buffer.Length - totalRead);
        if (bytesRead == 0) break;
        totalRead += bytesRead;
    }
    return totalRead;
}

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • 0t3vsblobprodcus362.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/micro-fsharp/MicrobenchmarksFSharp.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ScenarioMeasurement/ScenarioMeasurement.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/CertHelper/CertHelper.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true ibraries/System.IO.Compression (dns block)
  • 11vvsblobprodcus336.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 1javsblobprodcus364.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/PerfLabGenericEventSourceForwarder/PerfLabGenericEventSourceForwarder.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 1k9vsblobprodcus379.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 1oavsblobprodcus350.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 1p7vsblobprodcus324.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 1s1vsblobprodcus386.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/real-world/RealWorldBenchmarks.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 2kmvsblobprodcus39.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 2zrvsblobprodcus388.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/PerfLabGenericEventSourceForwarder/PerfLabGenericEventSourceForwarder.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 37bvsblobprodcus311.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ScenarioMeasurement/ScenarioMeasurement.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/CertHelper/CertHelper.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true ibraries/System.IO.Compression (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 37cvsblobprodcus359.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 4m6vsblobprodcus384.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ScenarioMeasurement/ScenarioMeasurement.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 4vyvsblobprodcus361.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 4zjvsblobprodcus390.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 5dkvsblobprodcus355.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 5rqvsblobprodcus385.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/real-world/RealWorldBenchmarks.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 6s7vsblobprodcus313.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 7devsblobprodcus323.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/real-world/RealWorldBenchmarks.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 7k6vsblobprodcus337.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 7tjvsblobprodcus341.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/micro-fsharp/MicrobenchmarksFSharp.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ScenarioMeasurement/ScenarioMeasurement.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 80zvsblobprodcus35.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ResultsComparer/ResultsComparer.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • 96bvsblobprodcus338.vsblob.vsassets.io
    • Triggering command: /usr/bin/dotnet dotnet build src/benchmarks/micro/MicroBenchmarks.csproj --no-restore (dns block)
    • Triggering command: /usr/bin/dotnet dotnet build src/benchmarks/micro/MicroBenchmarks.csproj (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/micro-fsharp/MicrobenchmarksFSharp.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • bcnvsblobprodcus378.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/CertHelper/CertHelper.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true ibraries/System.IO.Compression (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • c78vsblobprodcus322.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ScenarioMeasurement/ScenarioMeasurement.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • ckzvsblobprodcus347.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • d0svsblobprodcus381.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • dlbvsblobprodcus316.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • e7bvsblobprodcus348.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ResultsComparer/ResultsComparer.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • fdpvsblobprodcus345.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • frdvsblobprodcus327.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • gervsblobprodcus329.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ScenarioMeasurement/ScenarioMeasurement.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • ibzvsblobprodcus369.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/real-world/RealWorldBenchmarks.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • jd4vsblobprodcus366.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • josvsblobprodcus372.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • jrqvsblobprodcus343.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/real-world/RealWorldBenchmarks.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • k0ivsblobprodcus356.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ScenarioMeasurement/ScenarioMeasurement.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • k4kvsblobprodcus344.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • kgfvsblobprodcus314.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/PerfLabGenericEventSourceForwarder/PerfLabGenericEventSourceForwarder.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • kh4vsblobprodcus325.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/CertHelper/CertHelper.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true ibraries/System.IO.Compression (dns block)
  • kmuvsblobprodcus389.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/real-world/RealWorldBenchmarks.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • l49vsblobprodcus358.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • l7avsblobprodcus319.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • ljcvsblobprodcus317.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • lylvsblobprodcus31.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • m16vsblobprodcus374.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • m6xvsblobprodcus342.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • m8dvsblobprodcus37.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • mfjvsblobprodcus373.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • n3kvsblobprodcus335.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/micro-fsharp/MicrobenchmarksFSharp.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ScenarioMeasurement/ScenarioMeasurement.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ResultsComparer/ResultsComparer.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • o3svsblobprodcus318.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • ofvvsblobprodcus315.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/real-world/RealWorldBenchmarks.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • p2ovsblobprodcus312.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • pdfvsblobprodcus380.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • pe3vsblobprodcus354.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • pe4vsblobprodcus351.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/CertHelper/CertHelper.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true ibraries/System.IO.Compression (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • rcxvsblobprodcus328.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ResultsComparer/ResultsComparer.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • s8mvsblobprodcus38.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • sc4vsblobprodcus331.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • securitytools.pkgs.visualstudio.com
    • Triggering command: /opt/hostedtoolcache/CodeQL/2.24.2/x64/codeql/csharp/tools/linux64/Semmle.Autobuild.CSharp /opt/hostedtoolcache/CodeQL/2.24.2/x64/codeql/csharp/tools/linux64/Semmle.Autobuild.CSharp (dns block)
  • sqdvsblobprodcus333.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • st8vsblobprodcus339.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • u3hvsblobprodcus371.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • u6ovsblobprodcus377.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • uy6vsblobprodcus34.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/micro-fsharp/MicrobenchmarksFSharp.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/CertHelper/CertHelper.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true ibraries/System.IO.Compression (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • v53vsblobprodcus320.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ResultsComparer/ResultsComparer.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • vb4vsblobprodcus33.vsblob.vsassets.io
    • Triggering command: /usr/bin/dotnet dotnet build src/benchmarks/micro/MicroBenchmarks.csproj --no-restore (dns block)
    • Triggering command: /usr/bin/dotnet dotnet build src/benchmarks/micro/MicroBenchmarks.csproj (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ResultsComparer/ResultsComparer.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • vwvvsblobprodcus334.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/ScenarioMeasurement/ScenarioMeasurement.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/gc/GC.Infrastructure/GC.Analysis.API.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • x3yvsblobprodcus370.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/tools/CertHelper/CertHelper.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true ibraries/System.IO.Compression (dns block)
  • yluvsblobprodcus367.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/benchmarks/micro-fsharp/MicrobenchmarksFSharp.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • yttvsblobprodcus357.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)
  • ytvvsblobprodcus310.vsblob.vsassets.io
    • Triggering command: /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/.dotnet/dotnet restore --no-dependencies /home/REDACTED/work/performance/performance/src/scenarios/weblarge3.0/src/mvc.sln --packages /tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/packages /p:DisableImplicitNuGetFallbackFolder=true --verbosity normal /p:TargetFrameworkRootPath=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:NetCoreTargetingPackRoot=/tmp/codeql-scratch-2e72f8e31edb0597/dbs/csharp/working/emptyFakeDotnetRoot /p:AllowMissingPrunePackageData=true /p:EnableWindowsTargeting=true (dns block)

If you need me to access, download, or install something from one of these locations, you can either:


🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.

…ompressionStreamPerfTestBase

Co-authored-by: agocke <515774+agocke@users.noreply.github.com>
Copilot AI changed the title [WIP] Add benchmark for async compression in System.IO.Compression Add async compression benchmarks (CompressAsync/DecompressAsync) Mar 4, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants