Replies: 2 comments
-
Yeah, I think you would have to set Folder containing csproj => |
Beta Was this translation helpful? Give feedback.
0 replies
-
Changing this over to a Discussion since it seems to fit |
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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Im developing a dotnet core application which is extensible through plugins. The application has it's own docker image and the application is located on /app while plugins can be mounted somewhere inside the /app folder so they can be loaded.
I am looking into plugin development and would like to use the applications docker image using the docker-run configuration but I'm running into some trouble because when I enable debugging in the docker-run configuration, the default logic for dotnet core mounts application (in my case a plugin) into /app overriding my application.
My docker-run configuration:
Would it be an option to make the debugging options configurable by specifying some target path where to put the build artefacts or is there a better way for solving this?
I guess one of the options would be to set the
enableDebugging
to false and manually mount the debugger into the image.Beta Was this translation helpful? Give feedback.
All reactions