Solucionado (ver solução)
Solucionado
(ver solução)
3
respostas

dotnet.exe (process 9544) exited with code 0

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();
    }
}
3 respostas

Rafael, vc sabe qual versão está usando do .NET?

Oi, segue: dotnet --version 2.1.801

solução!

Olá Rafael!

Isso não é um erro. No Visual Studio 2019 você não precisa mais colocar o Console.ReadLine() para o terminal não fechar automaticamente. Exit code 0 quer dizer que a aplicação rodou sem problemas.

Como na mensagem mesmo diz, você pode desabilitar essa mensagem no seguinte caminho: Tools->Options->Debugging->Automatically close the console when debugging stops. (em inglês) ou Ferramentas->Opções->Depuração->Fechar automaticamente o console quando a depuração parar. (em português)

Bons estudos!