api diff for rc1 changes

This commit is contained in:
Anipik 2019-09-16 10:40:43 -07:00
parent 26ed5c4092
commit a913698160
3 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,7 @@
# API Difference aspnetcoreapp3.0-preview9 vs aspnetcoreapp3.0-rc1
API listing follows standard diff formatting. Lines preceded by a '+' are
additions and a '-' indicates removal.
* [Microsoft.AspNetCore.Components.RenderTree](3.0-rc1_Microsoft.AspNetCore.Components.RenderTree.md)

View file

@ -0,0 +1,20 @@
# Microsoft.AspNetCore.Components.RenderTree
``` diff
namespace Microsoft.AspNetCore.Components.RenderTree {
public readonly struct RenderTreeFrame {
- [System.Runtime.InteropServices.FieldOffsetAttribute(8)]
- public readonly int AttributeEventHandlerId;
+ [System.Runtime.InteropServices.FieldOffsetAttribute(32)]
+ public readonly object ComponentKey;
+ [System.Runtime.InteropServices.FieldOffsetAttribute(24)]
+ public readonly object ElementKey;
+ [System.Runtime.InteropServices.FieldOffsetAttribute(32)]
+ public readonly string AttributeEventUpdatesAttributeName;
+ [System.Runtime.InteropServices.FieldOffsetAttribute(8)]
+ public readonly ulong AttributeEventHandlerId;
}
}
```

View file

@ -0,0 +1,5 @@
# .NET Core 3.0 rc1 API Changes
The following API changes were made in .NET Core 3.0 rc1:
- [ASP.NET Core](./Asp.Net/3.0-rc1.md)