A continuation of this older thread. Remember the dependency chain issues I was having? Well, I found a workaround. It's not ideal, but it does work.
Let's say you have 3 projects:
Workaround: Add Project C as a direct dependency of Project A (even though it really isn't), and everything will work as expected.
Let's say you have 3 projects:
- Project A, the main project (dependent on project B)
- Project B, a class library (dependent on Project C)
- Project C, a resource library for Project B
Workaround: Add Project C as a direct dependency of Project A (even though it really isn't), and everything will work as expected.