Last change
on this file since fad8134 was 30a465f, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
691 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Threading.Tasks;
|
---|
5 | using Microsoft.AspNetCore.Hosting;
|
---|
6 | using Microsoft.Extensions.Configuration;
|
---|
7 | using Microsoft.Extensions.Hosting;
|
---|
8 | using Microsoft.Extensions.Logging;
|
---|
9 |
|
---|
10 | namespace Farmatiko
|
---|
11 | {
|
---|
12 | public class Program
|
---|
13 | {
|
---|
14 | public static void Main(string[] args)
|
---|
15 | {
|
---|
16 | CreateHostBuilder(args).Build().Run();
|
---|
17 | }
|
---|
18 |
|
---|
19 | public static IHostBuilder CreateHostBuilder(string[] args) =>
|
---|
20 | Host.CreateDefaultBuilder(args)
|
---|
21 | .ConfigureWebHostDefaults(webBuilder =>
|
---|
22 | {
|
---|
23 | webBuilder.UseStartup<Startup>();
|
---|
24 | });
|
---|
25 | }
|
---|
26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.