xamarin-macios/tools/dotnet-linker/Steps/ConfigurationAwareMarkHandl...

21 строка
433 B
C#

using System;
using System.Collections.Generic;
using Xamarin.Bundler;
#nullable enable
namespace Xamarin.Linker {
public abstract class ConfigurationAwareMarkHandler : ExceptionalMarkHandler {
protected override void Report (Exception exception)
{
LinkerConfiguration.Report (Context, exception);
}
protected void Report (List<Exception> exceptions)
{
LinkerConfiguration.Report (Context, exceptions);
}
}
}