wabbajack/Wabbajack/App.xaml.cs

31 lines
774 B
C#
Raw Normal View History

using System;
using System.Runtime.InteropServices;
using System.Windows;
using Wabbajack.Common;
using Wabbajack.Updater;
2019-07-22 22:17:46 +00:00
namespace Wabbajack
{
/// <summary>
2019-09-14 04:35:42 +00:00
/// Interaction logic for App.xaml
2019-07-22 22:17:46 +00:00
/// </summary>
public partial class App : Application
{
public App()
{
var args = Environment.GetCommandLineArgs();
if (args.Length > 1)
{
Utils.SetLoggerFn(f => {});
WorkQueue.Init((a, b, c) => {}, (a, b) => {});
var updater = new CheckForUpdates(args[1]);
if (updater.FindOutdatedMods())
{
Environment.Exit(0);
}
Environment.Exit(1);
}
}
2019-07-22 22:17:46 +00:00
}
2019-09-14 04:35:42 +00:00
}