Skip to content

Commit e7efc6e

Browse files
Entrypoint args to CreateNewImage are now arrays (#101)
Fixes #98.
1 parent 1ff87ec commit e7efc6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Microsoft.NET.Build.Containers/build/Microsoft.NET.Build.Containers.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
ImageTag="$(ContainerImageTag)"
7272
PublishDirectory="$(PublishDir)"
7373
WorkingDirectory="$(ContainerWorkingDirectory)"
74-
Entrypoint="$(ContainerEntrypoint)"
75-
EntrypointArgs="$(ContainerEntrypointArgs)"/>
74+
Entrypoint="@(ContainerEntrypoint)"
75+
EntrypointArgs="@(ContainerEntrypointArgs)"/>
7676
</Target>
7777
</Project>

0 commit comments

Comments
 (0)