поправил сборку

parent fbffd0c2
......@@ -14,6 +14,11 @@ namespace JenkinsTestApp
public static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
int i = 1;
while (true)
{
Console.WriteLine(i + 1);
}
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
......
......@@ -31,7 +31,7 @@ namespace JenkinsTestApp
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage()
app.UseDeveloperExceptionPage();
}
else
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment