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

parent fbffd0c2
...@@ -14,6 +14,11 @@ namespace JenkinsTestApp ...@@ -14,6 +14,11 @@ namespace JenkinsTestApp
public static void Main(string[] args) public static void Main(string[] args)
{ {
CreateHostBuilder(args).Build().Run(); CreateHostBuilder(args).Build().Run();
int i = 1;
while (true)
{
Console.WriteLine(i + 1);
}
} }
public static IHostBuilder CreateHostBuilder(string[] args) => public static IHostBuilder CreateHostBuilder(string[] args) =>
......
...@@ -31,7 +31,7 @@ namespace JenkinsTestApp ...@@ -31,7 +31,7 @@ namespace JenkinsTestApp
{ {
if (env.IsDevelopment()) if (env.IsDevelopment())
{ {
app.UseDeveloperExceptionPage() app.UseDeveloperExceptionPage();
} }
else 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