-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathSharpShellAPI.cs
More file actions
36 lines (32 loc) · 1.08 KB
/
Copy pathSharpShellAPI.cs
File metadata and controls
36 lines (32 loc) · 1.08 KB
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
30
31
32
33
34
35
36
// Author: Ryan Cobb (@cobbr_io)
// Project: SharpShell (https://github.com/cobbr/SharpShell)
// License: BSD 3-Clause
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using SharpShell.API.Models;
namespace SharpShell.API
{
public class SharpShellAPI
{
public static void Main(string[] args)
{
var host = CreateWebHostBuilder(args).Build();
using (var scope = host.Services.CreateScope())
{
var services = scope.ServiceProvider;
var context = services.GetRequiredService<SharpShellContext>();
var configuration = services.GetRequiredService<IConfiguration>();
}
host.Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
new WebHostBuilder()
.UseKestrel(options =>
{
options.ListenAnyIP(5000);
})
.UseStartup<Startup>();
}
}