Files
sql-server-samples/samples/features/json/comments/dotnet-react-jquery-app/Program.cs
T
Jovan Popovic 043ed9609c ReactJS sample
Added ReactJS sample app with .Net core REST API
2016-09-06 16:53:36 +02:00

26 lines
582 B
C#

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