I am trying to copy folder from referenced assembly to same level as bin directory in calling mvc application:
MyDLL1
  Shared
     image.png(Build action = content, Copy Always)
MyMvcApp(references MyDLL1)
  Images
  Content
  etc...
  bin
  (shared should be copied here)
So if I set up ../ As output path in MyDLL1 setting I am able to get shared folder created in bin directory of MyMvcApp after build,but if I put ../../, folder doesn't appear anywhere within MyMvcApp directory. Is it possible to get that folder created at same level as bin folder in MyMvcApp?