Replies: 1 comment
-
It should work.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the documentaton there is no example of how to use this. I have tried
<ItemGroup> <ContainerAppCommandInstruction Include="DefaultArgs" /> </ItemGroup>
but it doesnt seem to work for the following code in the csproj file.<ItemGroup Label="ContainerAppCommand Assignment"> <!-- Set the entrypoint to the setup script --> <ContainerAppCommand Include="echo" /> </ItemGroup> <ItemGroup> <ContainerDefaultArgs Include="containersetupscript.sh" /> </ItemGroup> <ItemGroup> <ContainerAppCommandInstruction Include="DefaultArgs" /> </ItemGroup>
It doesnt work since it displays "dotnet dontetApp.dll containersetupscript.sh" instead of just "containersetupscript.sh". How to get rid of "dotnet dontetApp.dll" and just display "containersetupscript.sh"?
Beta Was this translation helpful? Give feedback.
All reactions