Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test/AWS.Deploy.DockerImageUploader/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using System.Threading.Tasks;
using System.IO;
using System.Linq;
using AWS.Deploy.CLI.Extensions;
using AWS.Deploy.CLI.Utilities;
using AWS.Deploy.Common.Recipes;
using AWS.Deploy.Orchestration;
Expand Down Expand Up @@ -64,6 +65,7 @@ private async Task CreateImageAndPushToECR(string projectPath)
var configFilePath = Path.Combine(projectPath, "DockerImageUploaderConfigFile.json");
var deployArgs = new[] { "deploy", "--project-path", projectPath, "--diagnostics", "--apply", configFilePath, "--silent" };
var serviceCollection = new ServiceCollection();
serviceCollection.AddCustomServices();

var registrar = new TypeRegistrar(serviceCollection);

Expand Down
Loading