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

Adding support for Kiota #2509

Merged
merged 15 commits into from
Jan 30, 2025
Prev Previous commit
Next Next commit
chore: fix test
Kunal22shah committed Jan 28, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 36f3de4ea44281d4f6121610e268ff943ed56bfd
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ public async Task When_KiotaClient_Registered()
{
InitTestSection(TestSections.Http_Kiota);

App.WaitThenTap("ShowAppButton");
App.WaitThenTap("ShowKiotaPageButton");

App.WaitElement("KiotaHomeNavigationBar");


Unchanged files with check annotations Beta

namespace Uno.Extensions;
public class AsyncAutoResetEvent : IDisposable

Check warning on line 7 in src/Uno.Extensions.Core/AsyncAutoResetEvent.cs

GitHub Actions / Build and Deploy Job

Missing XML comment for publicly visible type or member 'AsyncAutoResetEvent'
{
private readonly AutoResetEvent _event;
private bool isDisposed;
public AsyncAutoResetEvent(bool initialState)

Check warning on line 12 in src/Uno.Extensions.Core/AsyncAutoResetEvent.cs

GitHub Actions / Build and Deploy Job

Missing XML comment for publicly visible type or member 'AsyncAutoResetEvent.AsyncAutoResetEvent(bool)'
{
_event = new AutoResetEvent(initialState);
}
public Task<bool> Wait(TimeSpan? timeout = null)

Check warning on line 17 in src/Uno.Extensions.Core/AsyncAutoResetEvent.cs

GitHub Actions / Build and Deploy Job

Missing XML comment for publicly visible type or member 'AsyncAutoResetEvent.Wait(TimeSpan?)'
{
return Task.Run(() =>
{
});
}
public void Set()

Check warning on line 29 in src/Uno.Extensions.Core/AsyncAutoResetEvent.cs

GitHub Actions / Build and Deploy Job

Missing XML comment for publicly visible type or member 'AsyncAutoResetEvent.Set()'
{
_event.Set();
}
public void Dispose()

Check warning on line 34 in src/Uno.Extensions.Core/AsyncAutoResetEvent.cs

GitHub Actions / Build and Deploy Job

Missing XML comment for publicly visible type or member 'AsyncAutoResetEvent.Dispose()'
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)

Check warning on line 40 in src/Uno.Extensions.Core/AsyncAutoResetEvent.cs

GitHub Actions / Build and Deploy Job

Missing XML comment for publicly visible type or member 'AsyncAutoResetEvent.Dispose(bool)'
{
if (isDisposed)
{
namespace Uno.Extensions;
public static class HostBuilderContextExtensions

Check warning on line 3 in src/Uno.Extensions.Core/DependencyInjection/HostBuilderContextExtensions.cs

GitHub Actions / Build and Deploy Job

Missing XML comment for publicly visible type or member 'HostBuilderContextExtensions'
{
public static bool IsRegistered(this HostBuilderContext context, string registeredKey, bool newIsRegistered = true)

Check warning on line 5 in src/Uno.Extensions.Core/DependencyInjection/HostBuilderContextExtensions.cs

GitHub Actions / Build and Deploy Job

Missing XML comment for publicly visible type or member 'HostBuilderContextExtensions.IsRegistered(HostBuilderContext, string, bool)'
{
return context.Properties.IsRegistered(registeredKey, newIsRegistered);
}
namespace Uno.Extensions;
public static class HostBuilderExtensions

Check warning on line 3 in src/Uno.Extensions.Core/DependencyInjection/HostBuilderExtensions.cs

GitHub Actions / Build and Deploy Job

Missing XML comment for publicly visible type or member 'HostBuilderExtensions'
{
public static bool IsRegistered(this IHostBuilder builder, string registeredKey, bool newIsRegistered = true)

Check warning on line 5 in src/Uno.Extensions.Core/DependencyInjection/HostBuilderExtensions.cs

GitHub Actions / Build and Deploy Job

Missing XML comment for publicly visible type or member 'HostBuilderExtensions.IsRegistered(IHostBuilder, string, bool)'
{
return builder.Properties.IsRegistered(registeredKey, newIsRegistered);
}