Initial commit
This commit is contained in:
31
GerstITS.Examples.WebClient.Console/Program.cs
Normal file
31
GerstITS.Examples.WebClient.Console/Program.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using GerstITS.IoC.DotNetCore;
|
||||
|
||||
namespace GerstITS.Examples.WebClient.Console
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
#region Fields
|
||||
|
||||
private static readonly DotNetCoreApplicationBootstrapper _bootstrapper;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
|
||||
static Program()
|
||||
{
|
||||
_bootstrapper = new DotNetCoreApplicationBootstrapper();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Methods
|
||||
|
||||
private static void Main(string[] args)
|
||||
{
|
||||
_bootstrapper.Run();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user