Files
sql-server-samples/samples/demos/ivs-people-register/Program.cs
T
Jovan Popovic 682c88cbc7 Added IVS demo app
Added IVS sample ap and corrected some spelling errors in readme file in
GeoJSON app.
2016-12-03 15:07:33 +01:00

21 lines
484 B
C#

using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using System.IO;
namespace Catalog
{
public class Program
{
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>()
.Build();
host.Run();
}
}
}