-
Notifications
You must be signed in to change notification settings - Fork 710
/
Copy pathProgram.cs
41 lines (35 loc) · 1.22 KB
/
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
41
namespace ApiVersioning.Examples;
using Microsoft.Owin.Hosting;
using System.Diagnostics;
/// <summary>
/// Represents the current application.
/// </summary>
public class Program
{
private const string Url = "http://localhost:9008/";
private const string LaunchUrl = Url + "swagger";
private static readonly ManualResetEvent resetEvent = new( false );
/// <summary>
/// The main entry point to the application.
/// </summary>
/// <param name="args">The arguments provided at start-up, if any.</param>
public static void Main( string[] args )
{
Console.CancelKeyPress += OnCancel;
using ( WebApp.Start<Startup>( Url ) )
{
Console.WriteLine( "Content root path: " + Startup.ContentRootPath );
Console.WriteLine( "Now listening on: " + Url );
Console.WriteLine( "Application started. Press Ctrl+C to shut down." );
Process.Start( LaunchUrl );
resetEvent.WaitOne();
}
Console.CancelKeyPress -= OnCancel;
}
private static void OnCancel( object sender, ConsoleCancelEventArgs e )
{
Console.Write( "Application is shutting down..." );
e.Cancel = true;
resetEvent.Set();
}
}