-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
40 lines (30 loc) · 965 Bytes
/
Program.cs
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
37
38
39
40
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
/* Instructions
dotnet new webapi -n SimpleAPI
dotnet new xunit -n SimpleAPI.Tests
dotnet sln SimpleAPI.sln add ./SimpleAPI/SimpleAPI.csproj ./SimpleAPI.Tests/SimpleAPI.Tests.csproj
dotnet add ./SimpleAPI.Tests/SimpleAPI.Tests.csproj reference ./SimpleAPI/SimpleAPI.csproj
https://dotnetplaybook.com/build-test-and-deploy-a-rest-api-with-azure-devops/
*/
namespace SimpleAPI
{
public class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
}
public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>()
.Build();
}
}