Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[main] Update dependencies from dotnet/installer #7217

Merged
merged 18 commits into from
Aug 8, 2022

Commits on Jul 28, 2022

  1. Update dependencies from https://github.com/dotnet/installer build 20…

    …220728.5
    
    Microsoft.Dotnet.Sdk.Internal
     From Version 7.0.100-rc.1.22374.1 -> To Version 7.0.100-rc.1.22378.5
    
    Dependency coherency updates
    
    Microsoft.NET.ILLink.Tasks,Microsoft.NETCore.App.Ref,Microsoft.NET.Workload.Emscripten.Manifest-7.0.100
     From Version 7.0.100-1.22368.1 -> To Version 7.0.100-1.22377.1 (parent: Microsoft.Dotnet.Sdk.Internal
    dotnet-maestro[bot] committed Jul 28, 2022
    Configuration menu
    Copy the full SHA
    57565bd View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2022

  1. Update dependencies from https://github.com/dotnet/installer build 20…

    …220729.2
    
    Microsoft.Dotnet.Sdk.Internal
     From Version 7.0.100-rc.1.22374.1 -> To Version 7.0.100-rc.1.22379.2
    
    Dependency coherency updates
    
    Microsoft.NET.ILLink.Tasks,Microsoft.NETCore.App.Ref,Microsoft.NET.Workload.Emscripten.Manifest-7.0.100
     From Version 7.0.100-1.22368.1 -> To Version 7.0.100-1.22377.1 (parent: Microsoft.Dotnet.Sdk.Internal
    dotnet-maestro[bot] committed Jul 29, 2022
    Configuration menu
    Copy the full SHA
    ed992df View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2022

  1. Update dependencies from https://github.com/dotnet/installer build 20…

    …220731.2
    
    Microsoft.Dotnet.Sdk.Internal
     From Version 7.0.100-rc.1.22374.1 -> To Version 7.0.100-rc.1.22381.2
    
    Dependency coherency updates
    
    Microsoft.NET.ILLink.Tasks,Microsoft.NETCore.App.Ref,Microsoft.NET.Workload.Emscripten.Manifest-7.0.100
     From Version 7.0.100-1.22368.1 -> To Version 7.0.100-1.22377.1 (parent: Microsoft.Dotnet.Sdk.Internal
    dotnet-maestro[bot] committed Aug 1, 2022
    Configuration menu
    Copy the full SHA
    b555ded View commit details
    Browse the repository at this point in the history
  2. Remove leading/trailing spaces from response file

    Context: dotnet/sdk#26627
    
    This is triggering a bug in the dotnet/sdk.
    jonathanpeppers committed Aug 1, 2022
    Configuration menu
    Copy the full SHA
    00d3766 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9b533a3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9e5deba View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2022

  1. Revert "Update Step_CopyExtraResultFilesForCI.cs"

    This reverts commit 9e5deba.
    jonathanpeppers committed Aug 2, 2022
    Configuration menu
    Copy the full SHA
    1b0465d View commit details
    Browse the repository at this point in the history
  2. Revert "Include *.g.cs file in artifacts"

    This reverts commit 9b533a3.
    jonathanpeppers committed Aug 2, 2022
    Configuration menu
    Copy the full SHA
    6d020f8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    239aac3 View commit details
    Browse the repository at this point in the history
  4. Update dependencies from https://github.com/dotnet/installer build 20…

    …220802.10
    
    Microsoft.Dotnet.Sdk.Internal
     From Version 7.0.100-rc.1.22374.1 -> To Version 7.0.100-rc.1.22402.10
    
    Dependency coherency updates
    
    Microsoft.NET.ILLink.Tasks,Microsoft.NETCore.App.Ref,Microsoft.NET.Workload.Emscripten.Manifest-7.0.100
     From Version 7.0.100-1.22368.1 -> To Version 7.0.100-1.22377.1 (parent: Microsoft.Dotnet.Sdk.Internal
    dotnet-maestro[bot] committed Aug 2, 2022
    Configuration menu
    Copy the full SHA
    900f6d9 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

  1. Remove -v:n?

    jonathanpeppers committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    17bc865 View commit details
    Browse the repository at this point in the history
  2. Revert "Remove -v:n?"

    This reverts commit 17bc865.
    jonathanpeppers committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    9b536ce View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eefe470 View commit details
    Browse the repository at this point in the history
  4. Pass along BinaryFormatter warning to BinarySerializableConstraint

    Context: https://github.com/dotnet/runtime/blob/197ae4c596553f7e6acb327ca2e31cc00c794c4d/src/libraries/System.Runtime.Serialization.Formatters/src/System/Runtime/Serialization/Formatters/Binary/BinaryFormatter.Core.cs#L11
    
    Our build was failing with:
    
        src-ThirdParty/NUnitLite/Constraints/BinarySerializableConstraint.cs(57,17):
        error SYSLIB0011: 'BinaryFormatter.Serialize(Stream, object)' is obsolete: 'BinaryFormatter serialization is obsolete and should not be used. See https://aka.ms/binaryformatter for more information.'
        src-ThirdParty/NUnitLite/Constraints/BinarySerializableConstraint.cs(61,32):
        error SYSLIB0011: 'BinaryFormatter.Deserialize(Stream)' is obsolete: 'BinaryFormatter serialization is obsolete and should not be used. See https://aka.ms/binaryformatter for more information.'
    
    I can add the same `[Obsolete]` messages on
    `NUnit.Framework.Constraints.BinarySerializableConstraint` to solve
    this error.
    jonathanpeppers committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    ada59e3 View commit details
    Browse the repository at this point in the history
  5. Only mark BinarySerializableConstraint obsolete in .NET

    Not Xamarin.Android
    jonathanpeppers committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    e4ee93a View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2022

  1. Configuration menu
    Copy the full SHA
    6e780fc View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2022

  1. Configuration menu
    Copy the full SHA
    3f3c9c0 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2022

  1. Update dependencies from https://github.com/dotnet/installer build 20…

    …220807.1
    
    Microsoft.Dotnet.Sdk.Internal
     From Version 7.0.100-rc.1.22374.1 -> To Version 7.0.100-rc.1.22407.1
    
    Dependency coherency updates
    
    Microsoft.NET.ILLink.Tasks,Microsoft.NETCore.App.Ref,Microsoft.NET.Workload.Emscripten.Manifest-7.0.100
     From Version 7.0.100-1.22368.1 -> To Version 7.0.100-1.22377.1 (parent: Microsoft.Dotnet.Sdk.Internal
    dotnet-maestro[bot] committed Aug 8, 2022
    Configuration menu
    Copy the full SHA
    6cf1ac6 View commit details
    Browse the repository at this point in the history