Boa tarde, ao tentar subir o server, estou recebendo essa mensagem no console:
C:\Program Files\dotnet\dotnet.exe (process 9544) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .
Poderiam auxiliar?
Segue meu código:
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security;
using System.Text;
using System.Threading.Tasks;
using Microsoft.VisualBasic;
using Microsoft.AspNetCore.Hosting;
static class Program
{
private static IWebHost wH;
public static void Main(string[] args)
{
wH = new WebHostBuilder().UseKestrel().UseStartup<Startup>.Build();
}
}