Ejemplo n.º 1
0
        /// <summary>
        /// Constructor for application
        /// Sets up logging and other services as configured
        /// </summary>
        public App()
        {
            try
            {
                var serviceCollection = new ServiceCollection();
                ConfigureServices(serviceCollection);
                _serviceProvider = serviceCollection.BuildServiceProvider();

                Log.Information("Application starting up");

                if (!Directory.Exists(StaticGlobals.GetAppDirectory()))
                {
                    Directory.CreateDirectory(StaticGlobals.GetAppDirectory());
                    Log.Information("Created app directory");
                }

                // Ensure database exists
                using (DataContext context = new DataContext())
                {
                    context.Database.EnsureCreated();
                }
            }
            catch (Exception Ex)
            {
                Log.Error($"Error setting up application: {Ex.Message}");
                Log.Error($"Stack Trace: {Ex.StackTrace}");
                Log.Error($"Inner Exception: {Ex.InnerException}");
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Configures services for Dependency Injection, set logging level here
 /// </summary>
 /// <param name="services">IServiceCollection of Services</param>
 internal void ConfigureServices(IServiceCollection services)
 {
     services.AddSingleton <MainWindow>();
     services.AddLogging(loggingBuilder => loggingBuilder.AddSerilog(dispose: true));
     services.AddDbContext <DataContext>();
     Log.Logger = new LoggerConfiguration()
                  .WriteTo.Console()
                  .WriteTo.RollingFile(Path.Combine(StaticGlobals.GetAppDirectory(), "VibesSwap-{Date}.log"), fileSizeLimitBytes: 5242880, retainedFileCountLimit: 5)
                  .MinimumLevel.Information()
                  .CreateLogger();
 }