S
samcov
Guest
I have a .net core project that I'm using in a linux container.
1. It compiles and debugs fine in visual studio, runs perfectly in the container, however,
2. If I just go to where the docker-compose.yml and run docker-compose up, it fails to find a reference assembly
warning MSB3245: Could not resolve this reference. Could not locate the assembly "IvcCoreDataLayer"
This assembly is not in the current directory, in fact it's on another disk entirely, but it's found by visual studio, but can't be located when I manually want to run things.
Is there something visual studio does to find this dependency that can't be done manually?
I already know that "docker-compose.override.yml" presents additional issues, but I can deal with those.
Continue reading...
1. It compiles and debugs fine in visual studio, runs perfectly in the container, however,
2. If I just go to where the docker-compose.yml and run docker-compose up, it fails to find a reference assembly
warning MSB3245: Could not resolve this reference. Could not locate the assembly "IvcCoreDataLayer"
This assembly is not in the current directory, in fact it's on another disk entirely, but it's found by visual studio, but can't be located when I manually want to run things.
Is there something visual studio does to find this dependency that can't be done manually?
I already know that "docker-compose.override.yml" presents additional issues, but I can deal with those.
Continue reading...