-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
29 lines (25 loc) · 891 Bytes
/
Program.cs
File metadata and controls
29 lines (25 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using DbUpTutorial.Core;
using DbUpTutorial.Infrastructure;
using Microsoft.Extensions.Configuration;
namespace DbUpTutorial
{
class Program
{
static int Main()
{
// configure app settings
var builder = new ConfigurationBuilder()
// get connection string from config file
.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
// get connection strings from environment variables
.AddEnvironmentVariables();
var config = builder.Build();
// configure typed app settings
var settings = new AppSettings();
config.GetSection("App").Bind(settings);
// upgrade database
var upgrader = new Upgrader(config, settings);
return upgrader.Upgrade() ? 0 : -1;
}
}
}