mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-21 20:56:08 +03:00
24 lines
495 B
C#
24 lines
495 B
C#
using Microsoft.Extensions.Logging;
|
|
using MvvmCross.Platforms.Wpf.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProxySuper.WPF
|
|
{
|
|
public class Setup : MvxWpfSetup<Core.App>
|
|
{
|
|
protected override ILoggerProvider CreateLogProvider()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
protected override ILoggerFactory CreateLogFactory()
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|