13 lines
400 B
C#
13 lines
400 B
C#
using Microsoft.Extensions.Hosting;
|
|
namespace DataModel;
|
|
|
|
public static class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("This app is intended for the EF tooling. You cannot start this data project, though.");
|
|
Environment.Exit(0);
|
|
}
|
|
|
|
public static IHostBuilder CreateHostBuilder(string[] args) => Setup.Setup4EFTooling(args);
|
|
} |