diff --git a/source/Calamari.Tests/Calamari.Tests.csproj b/source/Calamari.Tests/Calamari.Tests.csproj index bf02c2b9..abc24054 100644 --- a/source/Calamari.Tests/Calamari.Tests.csproj +++ b/source/Calamari.Tests/Calamari.Tests.csproj @@ -19,9 +19,9 @@ - + - + diff --git a/source/Calamari/Calamari.csproj b/source/Calamari/Calamari.csproj index 73e51e93..b3248118 100644 --- a/source/Calamari/Calamari.csproj +++ b/source/Calamari/Calamari.csproj @@ -16,7 +16,7 @@ netcoreapp3.1 - + diff --git a/source/Sashimi.Tests/Sashimi.Tests.csproj b/source/Sashimi.Tests/Sashimi.Tests.csproj index 574b795c..2cbf73fc 100644 --- a/source/Sashimi.Tests/Sashimi.Tests.csproj +++ b/source/Sashimi.Tests/Sashimi.Tests.csproj @@ -11,11 +11,11 @@ - + - - + + diff --git a/source/Sashimi/AzureAppServiceActionHandler.cs b/source/Sashimi/AzureAppServiceActionHandler.cs index 9493d6a4..37e90406 100644 --- a/source/Sashimi/AzureAppServiceActionHandler.cs +++ b/source/Sashimi/AzureAppServiceActionHandler.cs @@ -1,4 +1,5 @@ using Octopus.CoreUtilities; +using Octopus.Server.Extensibility.HostServices.Diagnostics; using Sashimi.AzureScripting; using Sashimi.Server.Contracts.ActionHandlers; @@ -25,7 +26,7 @@ class AzureAppServiceActionHandler : IActionHandler public ActionHandlerCategory[] Categories => new[] {ActionHandlerCategory.BuiltInStep, AzureConstants.AzureActionHandlerCategory}; - public IActionHandlerResult Execute(IActionHandlerContext context) + public IActionHandlerResult Execute(IActionHandlerContext context, ITaskLog taskLog) { if (context.DeploymentTargetType.Some()) { @@ -34,8 +35,8 @@ public IActionHandlerResult Execute(IActionHandlerContext context) $"The machine {context.DeploymentTargetName.SomeOr("")} will not be deployed to because it is not an Azure Web Application deployment target"); } - return context.CalamariCommand(AzureConstants.CalamariAzure, "deploy-azure-app-service").WithAzureTools(context) - .WithStagedPackageArgument().Execute(); + return context.CalamariCommand(AzureConstants.CalamariAzure, "deploy-azure-app-service").WithAzureTools(context, taskLog) + .WithStagedPackageArgument().Execute(taskLog); } } } diff --git a/source/Sashimi/Sashimi.csproj b/source/Sashimi/Sashimi.csproj index 9e2957c5..0e6b2ee6 100644 --- a/source/Sashimi/Sashimi.csproj +++ b/source/Sashimi/Sashimi.csproj @@ -22,10 +22,11 @@ - - - - + + + + +