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

Add ILLink extension points #12116

Merged
merged 4 commits into from
Jun 24, 2020
Merged

Add ILLink extension points #12116

merged 4 commits into from
Jun 24, 2020

Conversation

sbomer
Copy link
Member

@sbomer sbomer commented Jun 19, 2020

This implements the proposal in #12035:

  • PrepareForILLink target
  • ManagedAssemblyToLink ItemGroup
  • TrimMode property and metadata

This also includes two other changes to improve extensibility:

  • Allow passing custom data via _TrimmerCustomData (Expose --custom-data in msbuild task linker#1134). This is private, like the other more advanced linker options, until we decide that they are ready to be made public.
  • Allow setting PublishTrimmed in a late import.targets. Blazor targets (which are imported after SDK targets) want to set PublishTrimmed after the conditional definition of some global properties in Microsoft.NET.ILLink.targets. By setting them even when PublishTrimmed != true, we ensure that they are available if PublishTrimmed is set later.

Items names have been made singular, per convention.

sbomer added 2 commits June 19, 2020 23:19
See dotnet#12035

- PrepareForILLink target
- ManagedAssemblyToLink ItemGroup
- TrimMode property and metadata
- private _TrimmerCustomData (dotnet/linker#1134)
- Allow setting `PublishTrimmed` in a late import.targets
<!-- Temporary workaround until the naming is finalized. Translate from TrimMode to Action metadata. -->
<ItemGroup>
<ManagedAssemblyToLink Condition=" '%(ManagedAssemblyToLink.TrimMode)' != '' ">
<Action>%(ManagedAssemblyToLink.TrimMode)</Action>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The task still looks for Action metadata. Once the naming is finalized, I'll update the task and remove the workaround.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I plan to merge this PR before dotnet/linker#1292, then update the SDK in the linker repo so that integration tests pass there, and then remove this workaround when the linker change is in.

@sbomer sbomer requested a review from marek-safar June 23, 2020 17:02
@sbomer sbomer requested a review from vitek-karas June 23, 2020 17:03
@sbomer sbomer self-assigned this Jun 23, 2020
@sbomer sbomer requested a review from eerhardt June 23, 2020 17:03
@sbomer sbomer assigned sbomer and unassigned sbomer and eerhardt Jun 23, 2020
@sbomer sbomer marked this pull request as ready for review June 23, 2020 19:36
Copy link
Member

@eerhardt eerhardt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@sbomer sbomer merged commit 2939a6f into dotnet:master Jun 24, 2020
Anipik pushed a commit that referenced this pull request Jun 30, 2020
* Add ILLink extension points

See #12035

- PrepareForILLink target
- ManagedAssemblyToLink ItemGroup
- TrimMode property and metadata
- private _TrimmerCustomData (dotnet/linker#1134)
- Allow setting `PublishTrimmed` in a late import.targets

* Add tests for extension points

* Set Action in _RunILLink

* Add notes about ManagedAssemblyToLink

Co-authored-by: Sven Boemer <sbomer@gmail.com>
ghost pushed a commit that referenced this pull request Jul 21, 2020
* Update dependencies from https://github.com/dotnet/templating build 20200622.1

Microsoft.TemplateEngine.Cli
 From Version 5.0.0-preview.8.20322.2 -> To Version 5.0.0-preview.7.20322.1

* Update dependencies from https://github.com/dotnet/runtime build 20200622.6

System.CodeDom , Microsoft.NET.HostModel , Microsoft.Extensions.DependencyModel , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver , Microsoft.NETCore.App.Ref , System.Text.Encoding.CodePages , System.Security.Cryptography.ProtectedData , System.Resources.Extensions
 From Version 5.0.0-preview.7.20322.7 -> To Version 5.0.0-preview.7.20322.6

* Update dependencies from https://github.com/microsoft/msbuild build 20200617.1 (#12147)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20310-07 -> To Version 16.7.0-preview-20317-01

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/runtime build 20200623.4

System.CodeDom , Microsoft.NET.HostModel , Microsoft.Extensions.DependencyModel , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver , Microsoft.NETCore.App.Ref , System.Text.Encoding.CodePages , System.Security.Cryptography.ProtectedData , System.Resources.Extensions
 From Version 5.0.0-preview.7.20322.7 -> To Version 5.0.0-preview.7.20323.4

* Update dependencies from https://github.com/dotnet/fsharp build 20200623.3 (#12155)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20322.7 -> To Version 10.10.0-beta.20323.3

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* [release/5.0.1xx-preview7] Update dependencies from nuget/nuget.client (#12148)

* Update dependencies from https://github.com/NuGet/NuGet.Client build 5.7.0.6668

NuGet.Build.Tasks
 From Version 5.7.0-preview.3.6653 -> To Version 5.7.0-rtm.6668

* Update dependencies from https://github.com/NuGet/NuGet.Client build 5.7.0.6670

NuGet.Build.Tasks
 From Version 5.7.0-preview.3.6653 -> To Version 5.7.0-rtm.6670

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/windowsdesktop build 20200623.6 (#12161)

Microsoft.WindowsDesktop.App
 From Version 5.0.0-preview.7.20311.4 -> To Version 5.0.0-preview.7.20323.6

Dependency coherency updates

Microsoft.NET.Sdk.WindowsDesktop
 From Version 5.0.0-preview.7.20311.4 -> To Version 5.0.0-preview.7.20323.3 (parent: Microsoft.WindowsDesktop.App

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/windowsdesktop build 20200623.9 (#12163)

Microsoft.WindowsDesktop.App
 From Version 5.0.0-preview.7.20323.6 -> To Version 5.0.0-preview.7.20323.9

Dependency coherency updates

Microsoft.NET.Sdk.WindowsDesktop
 From Version 5.0.0-preview.7.20323.3 -> To Version 5.0.0-preview.7.20323.5 (parent: Microsoft.WindowsDesktop.App

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/windowsdesktop build 20200624.1 (#12169)

Microsoft.WindowsDesktop.App
 From Version 5.0.0-preview.7.20323.9 -> To Version 5.0.0-preview.7.20324.1

Dependency coherency updates

Microsoft.NET.Sdk.WindowsDesktop
 From Version 5.0.0-preview.7.20323.5 -> To Version 5.0.0-preview.7.20323.9 (parent: Microsoft.WindowsDesktop.App

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200623.1 (#12150)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Api.Analyzers , Microsoft.AspNetCore.Mvc.Analyzers
 From Version 5.0.0-preview.7.20311.11 -> To Version 5.0.0-preview.7.20323.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* [release/5.0.1xx-preview7] Update dependencies from dotnet/aspnetcore (#12176)

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200623.3

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Api.Analyzers , Microsoft.AspNetCore.Mvc.Analyzers
 From Version 5.0.0-preview.7.20323.1 -> To Version 5.0.0-preview.7.20323.3

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200623.9

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20323.3 -> To Version 5.0.0-preview.7.20323.9

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/microsoft/msbuild build 20200623.1 (#12158)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20317-01 -> To Version 16.7.0-preview-20323-01

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Work around for runtime pack profiles with differing runtime IDs

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200625.9 (#12220)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20323.9 -> To Version 5.0.0-preview.7.20325.9

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/fsharp build 20200626.1 (#12219)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20323.3 -> To Version 10.10.0-beta.20326.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/runtime build 20200626.1 (#12221)

System.CodeDom , Microsoft.NET.HostModel , Microsoft.Extensions.DependencyModel , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver , Microsoft.NETCore.App.Ref , System.Text.Encoding.CodePages , System.Security.Cryptography.ProtectedData , System.Resources.Extensions
 From Version 5.0.0-preview.7.20323.4 -> To Version 5.0.0-preview.7.20326.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* [release/5.0.1xx-preview7] Update dependencies from microsoft/msbuild (#12218)

* Update dependencies from https://github.com/microsoft/msbuild build 20200626.1

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20323-01 -> To Version 16.7.0-preview-20326-01

* Update dependencies from https://github.com/microsoft/msbuild build 20200626.6

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20323-01 -> To Version 16.7.0-preview-20326-06

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* [release/5.0.1xx-preview7] Update dependencies from dotnet/aspnetcore (#12223)

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200626.3

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20325.9 -> To Version 5.0.0-preview.7.20326.3

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200626.5

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20325.9 -> To Version 5.0.0-preview.7.20326.5

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/fsharp build 20200626.3 (#12225)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20326.1 -> To Version 10.10.0-beta.20326.3

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/windowsdesktop build 20200626.3 (#12229)

Microsoft.WindowsDesktop.App
 From Version 5.0.0-preview.7.20324.1 -> To Version 5.0.0-preview.7.20326.3

Dependency coherency updates

Microsoft.NET.Sdk.WindowsDesktop
 From Version 5.0.0-preview.7.20323.9 -> To Version 5.0.0-preview.7.20326.3 (parent: Microsoft.WindowsDesktop.App

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* [release/5.0.1xx-preview7] Update dependencies from microsoft/msbuild (#12226)

* Update dependencies from https://github.com/microsoft/msbuild build 20200626.2

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20326-06 -> To Version 16.7.0-preview-20326-02

* Update dependencies from https://github.com/microsoft/msbuild build 20200626.3

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20326-02 -> To Version 16.7.0-preview-20326-03

* Update dependencies from https://github.com/microsoft/msbuild build 20200626.5

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20326-03 -> To Version 16.7.0-preview-20326-05

* Update dependencies from https://github.com/microsoft/msbuild build 20200626.4

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20326-05 -> To Version 16.7.0-preview-20326-04

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200626.10 (#12235)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20326.5 -> To Version 5.0.0-preview.7.20326.10

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* [release/5.0.1xx-preview7] Update dependencies from dotnet/aspnetcore (#12237)

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200626.12

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20326.10 -> To Version 5.0.0-preview.7.20326.12

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200626.13

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20326.10 -> To Version 5.0.0-preview.7.20326.13

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/fsharp build 20200627.5 (#12244)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20326.3 -> To Version 10.10.0-beta.20327.5

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/fsharp build 20200628.2 (#12250)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20327.5 -> To Version 10.10.0-beta.20328.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/fsharp build 20200628.3 (#12252)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20328.2 -> To Version 10.10.0-beta.20328.3

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/fsharp build 20200629.1 (#12258)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20328.3 -> To Version 10.10.0-beta.20329.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/microsoft/msbuild build 20200629.2 (#12263)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20326-04 -> To Version 16.7.0-preview-20329-02

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200629.4 (#12266)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20326.13 -> To Version 5.0.0-preview.7.20329.4

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/fsharp build 20200629.4 (#12268)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20329.1 -> To Version 10.10.0-beta.20329.4

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/fsharp build 20200629.5 (#12269)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20329.4 -> To Version 10.10.0-beta.20329.5

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/microsoft/msbuild build 20200630.1 (#12273)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20329-02 -> To Version 16.7.0-preview-20330-01

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Add ILLink extension points (#12116) (#12264)

* Add ILLink extension points

See #12035

- PrepareForILLink target
- ManagedAssemblyToLink ItemGroup
- TrimMode property and metadata
- private _TrimmerCustomData (dotnet/linker#1134)
- Allow setting `PublishTrimmed` in a late import.targets

* Add tests for extension points

* Set Action in _RunILLink

* Add notes about ManagedAssemblyToLink

Co-authored-by: Sven Boemer <sbomer@gmail.com>

* Update dependencies from https://github.com/microsoft/msbuild build 20200630.2 (#12275)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20330-01 -> To Version 16.7.0-preview-20330-02

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/NuGet/NuGet.Client build 5.7.0.6677 (#12284)

NuGet.Build.Tasks
 From Version 5.7.0-rtm.6670 -> To Version 5.7.0-rtm.6677

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/microsoft/msbuild build 20200630.6 (#12286)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20330-02 -> To Version 16.7.0-preview-20330-06

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200630.2 (#12290)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20329.4 -> To Version 5.0.0-preview.7.20330.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200630.5 (#12293)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20330.2 -> To Version 5.0.0-preview.7.20330.5

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/microsoft/msbuild build 20200630.7 (#12294)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20330-06 -> To Version 16.7.0-preview-20330-07

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200630.7 (#12299)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20330.5 -> To Version 5.0.0-preview.7.20330.7

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/microsoft/msbuild build 20200630.8 (#12300)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20330-07 -> To Version 16.7.0-preview-20330-08

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200630.10 (#12302)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20330.7 -> To Version 5.0.0-preview.7.20330.10

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Updating the web deploy reference to 4.0.4

* Suppress NU1603 warning for Web Deploy package

* Updating the version to 4.0.5

* [release/5.0.1xx-preview7] Update dependencies from dotnet/aspnetcore (#12369)

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200706.7

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20330.10 -> To Version 5.0.0-preview.7.20356.7

* Update stage 0

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Jason Zhai <AzureTest@vwuzhai002.redmond.corp.microsoft.com>

* Update dependencies from https://github.com/microsoft/msbuild build 20200706.3 (#12374)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20330-08 -> To Version 16.7.0-preview-20356-03

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/NuGet/NuGet.Client build 5.7.0.6686 (#12378)

NuGet.Build.Tasks
 From Version 5.7.0-rtm.6677 -> To Version 5.7.0-rtm.6686

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/microsoft/msbuild build 20200709.1 (#12390)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20356-03 -> To Version 16.7.0-preview-20359-01

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/fsharp build 20200709.2 (#12410)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20329.5 -> To Version 10.10.0-beta.20359.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/microsoft/msbuild build 20200710.3 (#12415)

Microsoft.Build.Localization , Microsoft.Build
 From Version 16.7.0-preview-20359-01 -> To Version 16.7.0-preview-20360-03

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200710.2 (#12417)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20356.7 -> To Version 5.0.0-preview.7.20360.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Reverting #12084 (#12418)

* Update dependencies from https://github.com/NuGet/NuGet.Client build 5.7.0.6702 (#12428)

NuGet.Build.Tasks
 From Version 5.7.0-rtm.6686 -> To Version 5.7.0-rtm.6702

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/fsharp build 20200711.3 (#12433)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20359.2 -> To Version 10.10.0-beta.20361.3

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/roslyn build 20200714.1 (#12453)

Microsoft.Net.Compilers.Toolset
 From Version 3.7.0-3.20312.3 -> To Version 3.7.0-4.20364.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/roslyn build 20200715.2 (#12469)

Microsoft.Net.Compilers.Toolset
 From Version 3.7.0-4.20364.1 -> To Version 3.7.0-5.20365.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200715.7 (#12497)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20360.2 -> To Version 5.0.0-preview.7.20365.7

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/roslyn build 20200716.1 (#12505)

Microsoft.Net.Compilers.Toolset
 From Version 3.7.0-5.20365.2 -> To Version 3.7.0-5.20366.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* [release/5.0.1xx-preview7] Update dependencies from dotnet/runtime (#12493)

* Update dependencies from https://github.com/dotnet/runtime build 20200714.6

System.CodeDom , Microsoft.NET.HostModel , Microsoft.Extensions.DependencyModel , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver , Microsoft.NETCore.App.Ref , System.Text.Encoding.CodePages , System.Security.Cryptography.ProtectedData , System.Resources.Extensions
 From Version 5.0.0-preview.7.20326.1 -> To Version 5.0.0-preview.7.20364.6

* Update dependencies from https://github.com/dotnet/runtime build 20200714.11

System.CodeDom , Microsoft.NET.HostModel , Microsoft.Extensions.DependencyModel , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.DotNetHostResolver , Microsoft.NETCore.App.Ref , System.Text.Encoding.CodePages , System.Security.Cryptography.ProtectedData , System.Resources.Extensions
 From Version 5.0.0-preview.7.20326.1 -> To Version 5.0.0-preview.7.20364.11

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200715.16 (#12509)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20365.7 -> To Version 5.0.0-preview.7.20365.16

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20200715.19 (#12511)

Microsoft.AspNetCore.Analyzers , Microsoft.NET.Sdk.Razor , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.DeveloperCertificates.XPlat , Microsoft.AspNetCore.Mvc.Analyzers , Microsoft.AspNetCore.Mvc.Api.Analyzers
 From Version 5.0.0-preview.7.20365.16 -> To Version 5.0.0-preview.7.20365.19

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/windowsdesktop build 20200716.1 (#12512)

Microsoft.WindowsDesktop.App
 From Version 5.0.0-preview.7.20326.3 -> To Version 5.0.0-preview.7.20366.1

Dependency coherency updates

Microsoft.NET.Sdk.WindowsDesktop
 From Version 5.0.0-preview.7.20326.3 -> To Version 5.0.0-preview.7.20365.12 (parent: Microsoft.WindowsDesktop.App

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/roslyn build 20200716.7 (#12523)

Microsoft.Net.Compilers.Toolset
 From Version 3.7.0-5.20366.1 -> To Version 3.7.0-5.20366.7

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/roslyn build 20200717.1 (#12531)

Microsoft.Net.Compilers.Toolset
 From Version 3.7.0-5.20366.7 -> To Version 3.7.0-5.20367.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: v-qizh10 <58835984+v-qizh10@users.noreply.github.com>
Co-authored-by: Lukas Lansky <lulansky@microsoft.com>
Co-authored-by: Eric Erhardt <eric.erhardt@microsoft.com>
Co-authored-by: Sven Boemer <sbomer@gmail.com>
Co-authored-by: Daniel Plaisted <daplaist@microsoft.com>
Co-authored-by: Daniel Plaisted <dsplaisted@gmail.com>
Co-authored-by: Vijay Ramakrishnan <vramak@microsoft.com>
Co-authored-by: Vijay Ramakrishnan <vijayrkn@users.noreply.github.com>
Co-authored-by: Jason Zhai <AzureTest@vwuzhai002.redmond.corp.microsoft.com>
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.

3 participants