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

Port ControlDesigner #681

Merged
merged 13 commits into from
Apr 12, 2019
Merged

Port ControlDesigner #681

merged 13 commits into from
Apr 12, 2019

Conversation

JuditRose
Copy link
Contributor

@JuditRose JuditRose commented Apr 5, 2019

Fixes #653
Related issues: #585, #221

Components copied from framework.

My dear reviewers: I am terribly sorry in advance for the number of lines...

@JuditRose JuditRose requested a review from a team as a code owner April 5, 2019 00:40
@Tanya-Solyanik
Copy link
Member

BitmapSelector is a VS/Blend feature, I would remove it. It required special resource dlls to work, I don't see devexpress using it... This could be a follow up issue. Invocation of this class should follow the path that loads resources from this dll, instead of redirecting to a dll with the same name and a special suffix.

@Tanya-Solyanik
Copy link
Member

remove?


Refers to: src/Common/src/CompModSwitches.cs:13 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

    public const string ExternDllUser32 = "user32.dll";

Don't we have a common file for these? ExternalDlls.cs?


Refers to: src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPanel.cs:27 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

#endif

this can be removed, we are not setting this macro anywhere


Refers to: src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPanel.cs:72 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

#endif

remove?


Refers to: src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPanel.cs:243 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

                form.Activated -= new EventHandler(OnFormActivated);

New eventNandler is not needed: form.Activated-=OnFormActivated;
The same applies across the file


Refers to: src/System.Windows.Forms.Design/src/System/ComponentModel/Design/DesignerActionPanel.cs:519 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

Tanya-Solyanik commented Apr 5, 2019

            TypeDescriptor.Refreshed -= new RefreshEventHandler(OnComponentRefresh);

newEventHandle can be removed across the file


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs:871 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

    /// <para>

para could be removed


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs:996 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

This code does not look right. I wonder what it does when built for retail....
This is what ILSPY shows:
protected override void Dispose(bool disposing)
{
ISite site;
IComponentChangeService componentChangeService;
if (disposing)
{
site = component.Site;
if (site != null)
{
componentChangeService = (IComponentChangeService)site.GetService(typeof(IComponentChangeService));
if (!System.ComponentModel.CompModSwitches.CommonDesignerServices.Enabled)
{
goto IL_0048;
}
goto IL_0048;
}
}
goto IL_00b0;
IL_00b0:
base.Dispose(disposing);
return;
IL_008e:
IDictionaryService dictionaryService;
dictionaryService?.SetValue(typeof(TrayControl), null);
goto IL_00b0;
IL_0048:
if (componentChangeService != null)
{
componentChangeService.ComponentRename -= OnComponentRename;
}
dictionaryService = (IDictionaryService)site.GetService(typeof(IDictionaryService));
if (!System.ComponentModel.CompModSwitches.CommonDesignerServices.Enabled)
{
goto IL_008e;
}
goto IL_008e;
}

Indeed in retail build this executes like this:
if (CompModSwitches.CommonDesignerServices.Enabled)
{
if (cs != null)
{
cs.ComponentRename -= new ComponentRenameEventHandler(OnComponentRename);
}
}

because Debug class is conditionally compiled only in CHK build (/debug flag) I don't think this is a leak because this even is not static and will be disposed with this class. This:
if (CompModSwitches.CommonDesignerServices.Enabled) Debug.Assert(cs != null, "IComponentChangeService not found");
should be replaced with
Debug.Assert(!CompModSwitches.CommonDesignerServices.Enabled || (cs != null), "IComponentChangeService not found");
or something along these lines. And the same


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs:2056 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

Tanya-Solyanik commented Apr 5, 2019

                        Debug.Assert(ds != null, "IDictionaryService not found");

and the same here, though this might be a leak... I opened a bug for VS.


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs:2059 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

                    Debug.Assert(ds != null, "IDictionaryService not found");

same here


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs:2085 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

                            Debug.Assert(sel != null, "ISelectionService not found");

oops


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs:2196 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

                Debug.Assert(eps != null, "IEventBindingService not found");

oops


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ComponentTray.cs:2503 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

            rc.DragDrop += new DragEventHandler(OnDragDrop);

new eventHandler could be removed across the file


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs:625 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

            // HACK HACK HACK

please remove


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/ControlDesigner.cs:1323 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

            throw new ArgumentNullException("component");

nameof


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerActionService.cs:169 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

            throw new ArgumentNullException("component");

nameof


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerActionService.cs:192 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

            throw new ArgumentNullException("actionLists");

nameof


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerActionService.cs:197 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

            throw new ArgumentNullException("actionLists");

nameof


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerActionService.cs:301 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

            throw new ArgumentNullException("actionList");

nameof


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerActionService.cs:362 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

@Tanya-Solyanik
Copy link
Member

            throw new ArgumentNullException("actionList");

nameof


Refers to: src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/DesignerActionService.cs:387 in cd651fe. [](commit_id = cd651fe, deletion_comment = False)

Copy link
Member

@Tanya-Solyanik Tanya-Solyanik left a comment

Choose a reason for hiding this comment

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

🕐

@codecov
Copy link

codecov bot commented Apr 8, 2019

Codecov Report

Merging #681 into master will decrease coverage by 1.37247%.
The diff coverage is 0.13193%.

@@                 Coverage Diff                 @@
##              master        #681         +/-   ##
===================================================
- Coverage   25.91177%   24.53929%   -1.37248%     
===================================================
  Files            981        1026         +45     
  Lines         268488      284124      +15636     
  Branches       35935       38434       +2499     
===================================================
+ Hits           69570       69722        +152     
- Misses        195054      210499      +15445     
- Partials        3864        3903         +39
Flag Coverage Δ
#Debug 24.53929% <0.13193%> (-1.37248%) ⬇️
#production 16.79516% <0.13193%> (-1.02244%) ⬇️
#test 98.55089% <ø> (-0.13552%) ⬇️

@JuditRose
Copy link
Contributor Author

JuditRose commented Apr 9, 2019

All comments addressed, BitMapSelector is removed.
Thanks for the review! :)

Copy link
Member

@Tanya-Solyanik Tanya-Solyanik left a comment

Choose a reason for hiding this comment

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

:shipit:

@JuditRose JuditRose merged commit dc1cf51 into master Apr 12, 2019
@zsd4yr zsd4yr deleted the WFI-585-port-ControlDesigner branch April 16, 2019 20:07
zsd4yr added a commit that referenced this pull request Apr 22, 2019
* change master branding to preview 5

* Implement and cleanup System.Windows.Forms.Design event args (#703)

* Cleanup event args in System.Windows.Forms.Design

* Implement missing event args, fix NRE bug and add tests

* Update dependencies from https://github.com/dotnet/arcade build 20190409.1 (#712)

- Microsoft.DotNet.XUnitExtensions - 2.4.0-beta.19209.1
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19209.1
- Microsoft.DotNet.GenFacades - 1.0.0-beta.19209.1
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19209.1

* Use nameof in ArgumentNullException (#685)

* [master] Update dependencies from dotnet/core-setup (#707)

* Update dependencies from https://github.com/dotnet/core-setup build 20190408.06

- Microsoft.NETCore.App - 3.0.0-preview5-27608-06

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190408.07

- Microsoft.NETCore.App - 3.0.0-preview5-27608-07

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19208.3 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190408.13

- Microsoft.NETCore.App - 3.0.0-preview5-27608-13

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190408.14

- Microsoft.NETCore.App - 3.0.0-preview5-27608-14

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190408.16

- Microsoft.NETCore.App - 3.0.0-preview5-27608-16

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190409.01

- Microsoft.NETCore.App - 3.0.0-preview5-27609-01

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview4-27604-73 (parent: Microsoft.NETCore.App)

* rev sdk version to resolve system colors move to the sdk

* Update dependencies from https://github.com/dotnet/arcade build 20190409.2 (#735)

- Microsoft.DotNet.XUnitExtensions - 2.4.0-beta.19209.2
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19209.2
- Microsoft.DotNet.GenFacades - 1.0.0-beta.19209.2
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19209.2

* [master] Update dependencies from dotnet/core-setup (#728)

* Update dependencies from https://github.com/dotnet/core-setup build 20190409.09

- Microsoft.NETCore.App - 3.0.0-preview5-27609-09

* Update dependencies from https://github.com/dotnet/core-setup build 20190409.11

- Microsoft.NETCore.App - 3.0.0-preview5-27609-11

* Update dependencies from https://github.com/dotnet/core-setup build 20190409.13

- Microsoft.NETCore.App - 3.0.0-preview5-27609-13

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19209.10 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190409.14

- Microsoft.NETCore.App - 3.0.0-preview5-27609-14

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19209.10 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19209.10 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190409.17

- Microsoft.NETCore.App - 3.0.0-preview5-27609-17

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19209.12 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190410.01

- Microsoft.NETCore.App - 3.0.0-preview5-27610-01

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19209.12 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19209.12 (parent: Microsoft.NETCore.App)

* [master] Update dependencies from dotnet/core-setup (#738)

* Update dependencies from https://github.com/dotnet/core-setup build 20190410.03

- Microsoft.NETCore.App - 3.0.0-preview5-27610-03

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19210.1 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190410.04

- Microsoft.NETCore.App - 3.0.0-preview5-27610-04

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19210.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19210.1 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190410.05 (#739)

- Microsoft.NETCore.App - 3.0.0-preview5-27610-05

* remove unused vars (#741)

* remove unused vars

* switch to Windows.10.Amd64.ClientRS5 for Helix tests

* [master] Update dependencies from dotnet/core-setup (#743)

* Update dependencies from https://github.com/dotnet/core-setup build 20190410.07

- Microsoft.NETCore.App - 3.0.0-preview5-27610-07

* Update dependencies from https://github.com/dotnet/core-setup build 20190410.08

- Microsoft.NETCore.App - 3.0.0-preview5-27610-08

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19210.5 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19210.5 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19210.5 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19210.5 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19210.5 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19210.5 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19210.5 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19210.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19210.5 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/arcade build 20190410.7 (#748)

- Microsoft.DotNet.XUnitExtensions - 2.4.0-beta.19210.7
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19210.7
- Microsoft.DotNet.GenFacades - 1.0.0-beta.19210.7
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19210.7

* Add Visual Basic template (#713)

* Add Visual Basic template

* Template identity & move templates to content

* [master] Update dependencies from dotnet/core-setup (#745)

* Update dependencies from https://github.com/dotnet/core-setup build 20190410.11

- Microsoft.NETCore.App - 3.0.0-preview5-27610-11

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19210.8 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19210.8 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19210.8 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19210.8 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19210.8 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19210.8 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19210.8 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19210.8 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19210.8 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.03

- Microsoft.NETCore.App - 3.0.0-preview5-27611-03

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.1 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.1 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.1 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.1 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.1 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.1 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.1 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.1 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27610-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27610-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.05

- Microsoft.NETCore.App - 3.0.0-preview5-27611-05

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27610-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27610-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.04

- Microsoft.NETCore.App - 3.0.0-preview5-27611-04

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.2 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27610-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27610-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.07

- Microsoft.NETCore.App - 3.0.0-preview5-27611-07

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.7 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.7 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.7 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.7 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.7 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.7 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.7 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.7 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.7 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27610-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27610-72 (parent: Microsoft.NETCore.App)

* supress creation of content directory in nuget package resulting in template packaging (#750)

* Onboard on async publishing (#732)

* Onboard with async publishing

* fix syntax

* Make C# Project template for WinForms identical to the .NET Framework version of the corresponding template (#688)

* make form1.cs and form1.designer.cs like Framework template

* fix spacing

* Port ControlDesigner (#681)

* port ControlDesigner

* port ControlDesigner

* rebuild resources

* PR comments

* PR comments, replace winbar to ToolStrip in all files

* update tests for control designer

* update tests

* remove bitmap selector

* replace \n\r occurences in resx files to new line

* rename ControlDesignerMock to TestControlDesigner

* Update dependencies from https://github.com/dotnet/arcade build 20190411.2 (#753)

- Microsoft.DotNet.XUnitExtensions - 2.4.0-beta.19211.2
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19211.2
- Microsoft.DotNet.GenFacades - 1.0.0-beta.19211.2
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19211.2

* [master] Update dependencies from dotnet/core-setup (#752)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.09

- Microsoft.NETCore.App - 3.0.0-preview5-27611-09

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.8 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.10

- Microsoft.NETCore.App - 3.0.0-preview5-27611-10

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.8 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.8 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.12

- Microsoft.NETCore.App - 3.0.0-preview5-27611-12

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27611-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27611-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.13

- Microsoft.NETCore.App - 3.0.0-preview5-27611-13

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27611-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27611-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.14

- Microsoft.NETCore.App - 3.0.0-preview5-27611-14

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.20 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.20 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.20 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.20 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.20 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.20 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.20 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.20 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.20 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27611-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27611-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.16

- Microsoft.NETCore.App - 3.0.0-preview5-27611-16

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27611-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27611-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.17

- Microsoft.NETCore.App - 3.0.0-preview5-27611-17

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.21 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27611-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27611-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190411.18

- Microsoft.NETCore.App - 3.0.0-preview5-27611-18

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27611-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27611-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190412.02

- Microsoft.NETCore.App - 3.0.0-preview5-27612-02

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27612-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27612-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190412.03

- Microsoft.NETCore.App - 3.0.0-preview5-27612-03

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19211.22 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27612-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27612-71 (parent: Microsoft.NETCore.App)

* [master] Update dependencies from dotnet/core-setup (#756)

* Update dependencies from https://github.com/dotnet/core-setup build 20190412.04

- Microsoft.NETCore.App - 3.0.0-preview5-27612-04

* Update dependencies from https://github.com/dotnet/core-setup build 20190412.06

- Microsoft.NETCore.App - 3.0.0-preview5-27612-06

*  Cleanup PropertyStore code (#668)

* Cleanup PropertyStore code

* Rename fields to match coding guidelines

* Remove ListViewItem/ColumnHeader dead code (#666)

* Cleanup DataGridViewBand (#665)

* Cleanip DataGridViewBand and update param names

* Rename parameters and fix some more param names

* Address PR feedback across winforms

* PR feedback

* Cleanup ListControl (#674)

* Cleanup ListControl

* Rename variables

* Cleanup Form.IsRestrictedWindow (#695)

* Add BindingContext tests (#755)

* Cleanup BindingConext

* Add tests and fix validation

*  Add System.Windows.Forms.Design tests and fix bugs/debug asserts (#737)

* Cleanup System.Windows.Forms.Design code

* Add System.Windows.Forms.Design tests and fix bugs/debugs

* PR feedback

* Add ToolboxItem tests and fix bugs (#726)

* Fix ToolboxItem bugs

* Add ToolboxItem tests

* Add FileNameEditor tests, fix bugs and Debug Asserts (#765)

* Cleanup FileNameEditor

* Fix FileEditor Debug Asserts and bug

* Add FileNameEditor tests

* Cleanup WinFormsUtils (#773)

* Add FeatureSupport/OSFeature tests and fix bug (#781)

* Add FeatureSupport/OSFeature tests and fix bug

* Cleanup FeatureSupport/OSFeature

* Fix coverlet report generation (#702)

* Fix coverlet warning

* Additional exclusions

* Add HelpProvider tests and perform associated cleanup (#779)

* Add HelpProvider tests and fix a NullReferenceException

* Cleanup HelpProvider

* Remove some show help dead code

* Accessibility: fixing DataGridView BoundingRectangle property for row, data cells and header cells (#711)

* Fixed accessibility object rectangle bounds for cells and rows

* Fixed right to left case

* Fixed scrollbar accessible names

* Fixed row headers acc bounds. Refactoring done

* Fixed calculation of data grid view borders for rows rectangle bounds. Fixed tests for data grid view accessible rows and cells

* Removed unused managed define

* Port TypeCodeDomSerializer (#757)

* port TypeCodeDomSerializer

* fix namespace and release build tests

* remove test cases that fail only on release build

*  Add Link/LinkConverter tests (#785)

* Add Link/LinkConverter tests

* Cleanup Link/LinkConverter

* Add DataGridCell tests (#786)

* Add DataGridCell tests

* Cleanup DataGridCell

* Cleanup Padding and add PropertyDescriptor tests (#788)

* [master] Update dependencies from dotnet/core-setup (#759)

* Update dependencies from https://github.com/dotnet/core-setup build 20190412.10

- Microsoft.NETCore.App - 3.0.0-preview5-27612-10

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190412.11

- Microsoft.NETCore.App - 3.0.0-preview5-27612-11

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.1 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190412.12

- Microsoft.NETCore.App - 3.0.0-preview5-27612-12

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190413.01

- Microsoft.NETCore.App - 3.0.0-preview5-27613-01

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190413.02

- Microsoft.NETCore.App - 3.0.0-preview5-27613-02

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190413.03

- Microsoft.NETCore.App - 3.0.0-preview5-27613-03

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27612-73 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190413.04

- Microsoft.NETCore.App - 3.0.0-preview5-27613-04

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27613-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27613-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190413.05

- Microsoft.NETCore.App - 3.0.0-preview5-27613-05

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27613-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27613-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190413.06

- Microsoft.NETCore.App - 3.0.0-preview5-27613-06

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27613-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27613-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190413.08

- Microsoft.NETCore.App - 3.0.0-preview5-27613-08

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27613-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27613-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190413.09

- Microsoft.NETCore.App - 3.0.0-preview5-27613-09

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27613-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27613-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190413.10

- Microsoft.NETCore.App - 3.0.0-preview5-27613-10

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27613-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27613-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190413.11

- Microsoft.NETCore.App - 3.0.0-preview5-27613-11

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27613-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27613-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190414.01

- Microsoft.NETCore.App - 3.0.0-preview5-27614-01

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27613-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27613-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190414.03

- Microsoft.NETCore.App - 3.0.0-preview5-27614-03

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27614-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27614-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190414.04

- Microsoft.NETCore.App - 3.0.0-preview5-27614-04

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27614-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27614-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190414.05

- Microsoft.NETCore.App - 3.0.0-preview5-27614-05

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19214.8 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27614-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27614-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190414.06

- Microsoft.NETCore.App - 3.0.0-preview5-27614-06

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27614-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27614-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190414.07

- Microsoft.NETCore.App - 3.0.0-preview5-27614-07

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19214.10 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27614-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27614-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190414.09

- Microsoft.NETCore.App - 3.0.0-preview5-27614-09

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19214.15 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19214.15 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19214.15 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19214.15 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19214.15 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19214.15 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19214.15 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19214.15 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19214.15 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27614-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27614-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190414.10

- Microsoft.NETCore.App - 3.0.0-preview5-27614-10

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27614-72 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27614-72 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190415.01

- Microsoft.NETCore.App - 3.0.0-preview5-27615-01

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27615-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27615-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190415.02

- Microsoft.NETCore.App - 3.0.0-preview5-27615-02

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27615-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27615-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190415.03

- Microsoft.NETCore.App - 3.0.0-preview5-27615-03

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27615-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27615-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190415.04

- Microsoft.NETCore.App - 3.0.0-preview5-27615-04

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- System.Windows.Extensions - 4.6.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19214.16 (parent: Microsoft.NETCore.App)
- Microsoft.NET.Sdk.IL - 3.0.0-preview5-27615-71 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.ILAsm - 3.0.0-preview5-27615-71 (parent: Microsoft.NETCore.App)

* Update dependencies from https://github.com/dotnet/core-setup build 20190415.07

- Microsoft.NETCore.App - 3.0.0-preview5-27615-07

Dependency coherency updates

- Microsoft.Win32.Registry - 4.6.0-preview5.19215.11 (parent: Microsoft.NETCore.App)
- System.Configuration.ConfigurationManager - 4.6.0-preview5.19215.11 (parent: Microsoft.NETCore.App)
- System.Drawing.Common - 4.6.0-preview5.19215.11 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.SystemEvents - 4.6.0-preview5.19215.11 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19215.11 (parent: Microsoft.NETCore.App)
- System.CodeDom - 4.6.0-preview5.19215.11 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview5.19215.11 (parent: Microsoft.NETCore.App)
- System.Windows.…
@RussKie RussKie mentioned this pull request Apr 29, 2021
29 tasks
@ghost ghost locked as resolved and limited conversation to collaborators Feb 7, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Port System.Windows.Forms.Design.ControlDesigner
2 participants