* refactored foreach

* use of switch insted of ifs
This commit is contained in:
Marvin Huber 2020-12-01 18:46:22 +01:00 коммит произвёл GitHub
Родитель 3c7befca6c
Коммит 0b043fcb35
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 30 добавлений и 20 удалений

Просмотреть файл

@ -2,6 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Linq;
using System.Threading.Tasks;
@ -47,30 +48,34 @@ namespace Microsoft.Tye.Extensions.Seq
seq.Volumes.Add(new VolumeBuilder(logPath, "seq-data", "/data"));
}
foreach (var s in context.Application.Services)
foreach (var serviceBuilder in context.Application.Services)
{
if (object.ReferenceEquals(s, seq))
if (ReferenceEquals(serviceBuilder, seq))
{
continue;
}
// make seq available as a dependency of everything.
if (!s.Dependencies.Contains(seq.Name))
if (!serviceBuilder.Dependencies.Contains(seq.Name))
{
s.Dependencies.Add(seq.Name);
serviceBuilder.Dependencies.Add(seq.Name);
}
}
}
if (context.Operation == ExtensionContext.OperationKind.LocalRun)
switch (context.Operation)
{
case ExtensionContext.OperationKind.LocalRun:
{
if (context.Options!.LoggingProvider is null)
{
// For local development we hardcode the port and hostname
context.Options.LoggingProvider = "seq=http://localhost:5341";
}
break;
}
else if (context.Operation == ExtensionContext.OperationKind.Deploy)
case ExtensionContext.OperationKind.Deploy:
{
foreach (var project in context.Application.Services.OfType<DotnetProjectServiceBuilder>())
{
@ -80,6 +85,11 @@ namespace Microsoft.Tye.Extensions.Seq
sidecar.Args.Add("--provider:seq=service:seq");
sidecar.Dependencies.Add("seq");
}
break;
}
default:
throw new ArgumentOutOfRangeException();
}
return Task.CompletedTask;