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

API listing tracker #10051

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Avalonia.sln
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ControlCatalog.NetCore", "s
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Props", "Props", "{F3AC8BC1-27F5-4255-9AFC-04ABFD11683A}"
ProjectSection(SolutionItems) = preProject
build\ApiDiff.props = build\ApiDiff.props
build\ApiListing.props = build\ApiListing.props
build\AvaloniaPublicKey.props = build\AvaloniaPublicKey.props
build\Base.props = build\Base.props
build\Binding.props = build\Binding.props
Expand Down
2 changes: 1 addition & 1 deletion NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<packageSources>
<clear />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet-eng" value="https://nuget.avaloniaui.net/repository/avalonia-devdeps/index.json" protocolVersion="3" />
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" protocolVersion="3" />
<add key="skiasharp" value="https://aka.ms/skiasharp-eap/index.json" />
</packageSources>
</configuration>
1,868 changes: 1,868 additions & 0 deletions api/Avalonia.Android.net6.0-android.cs

Large diffs are not rendered by default.

9,113 changes: 9,113 additions & 0 deletions api/Avalonia.Base.net6.0.cs

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions api/Avalonia.Browser.Blazor.net7.0.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// GenAPI Version: 7.0.8.6004
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Avalonia.Browser.Blazor
{
public partial class AvaloniaView : Microsoft.AspNetCore.Components.ComponentBase
{
public AvaloniaView() { }
protected override void BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder builder) { }
protected override void OnAfterRender(bool firstRender) { }
protected override void OnInitialized() { }
}
public static partial class BlazorAppBuilder
{
public static System.Threading.Tasks.Task StartBlazorAppAsync(this Avalonia.AppBuilder builder, Avalonia.Browser.BrowserPlatformOptions? options = null) { throw null; }
}
}
46 changes: 46 additions & 0 deletions api/Avalonia.Browser.net7.0.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// GenAPI Version: 7.0.8.6004
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Avalonia.Browser
{
public partial class AvaloniaView : Avalonia.Input.TextInput.ITextInputMethodImpl
{
public AvaloniaView(System.Runtime.InteropServices.JavaScript.JSObject host) { }
public AvaloniaView(string divId) { }
public Avalonia.Controls.Control? Content { get { throw null; } set { } }
public bool IsComposing { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } }
void Avalonia.Input.TextInput.ITextInputMethodImpl.Reset() { }
void Avalonia.Input.TextInput.ITextInputMethodImpl.SetClient(Avalonia.Input.TextInput.ITextInputMethodClient? client) { }
void Avalonia.Input.TextInput.ITextInputMethodImpl.SetCursorRect(Avalonia.Rect rect) { }
void Avalonia.Input.TextInput.ITextInputMethodImpl.SetOptions(Avalonia.Input.TextInput.TextInputOptions options) { }
public bool OnDragEvent(System.Runtime.InteropServices.JavaScript.JSObject args) { throw null; }
}
public static partial class BrowserAppBuilder
{
public static System.Threading.Tasks.Task SetupBrowserAppAsync(this Avalonia.AppBuilder builder, Avalonia.Browser.BrowserPlatformOptions? options = null) { throw null; }
public static System.Threading.Tasks.Task StartBrowserAppAsync(this Avalonia.AppBuilder builder, string mainDivId, Avalonia.Browser.BrowserPlatformOptions? options = null) { throw null; }
public static Avalonia.AppBuilder UseBrowser(this Avalonia.AppBuilder builder) { throw null; }
}
public partial class BrowserPlatformOptions
{
public BrowserPlatformOptions() { }
public string? AvaloniaServiceWorkerScope { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute] set { } }
public System.Func<string, string>? FrameworkAssetPathResolver { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute] set { } }
public bool PreferFileDialogPolyfill { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute] set { } }
public bool RegisterAvaloniaServiceWorker { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute] set { } }
}
public partial class JSObjectControlHandle : Avalonia.Controls.Platform.INativeControlHostDestroyableControlHandle, Avalonia.Platform.IPlatformHandle
{
public JSObjectControlHandle(System.Runtime.InteropServices.JavaScript.JSObject reference) { }
public System.IntPtr Handle { get { throw null; } }
public string? HandleDescriptor { get { throw null; } }
public System.Runtime.InteropServices.JavaScript.JSObject Object { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } }
public void Destroy() { }
}
}
Loading