!cosmetic

This commit is contained in:
Jamie 2018-02-20 08:23:18 +00:00
commit cd2026f297
2 changed files with 18 additions and 22 deletions

View file

@ -72,7 +72,7 @@ namespace Ombi.Updater
Arguments = $"/C net start \"{options.WindowsServiceName}\""
};
using (var process = new Process{StartInfo = startInfo})
using (var process = new Process { StartInfo = startInfo })
{
process.Start();
}

View file

@ -1,14 +1,10 @@
using System;
using System.Diagnostics;
using System.IO;
using System.Linq;
using CommandLine;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Serilog;
using Serilog.Events;
using ILogger = Serilog.ILogger;
namespace Ombi.Updater
{