1

I've got a solution with several different projects in it, some are pure class libraries and some are web app projects. If I want my default types to be available to all projects, where should I put the config file for the container?

Chris
  • 6,761
  • 6
  • 52
  • 67
Peter Evjan
  • 2,423
  • 3
  • 32
  • 50

1 Answers1

1

What I tend to do is to create it in the solution root directory. Then, for each project that needs it, I do :

  • right click->Add Existing
  • Browse to, and select file
  • Click on down arrow and select "Add as link"
  • Select the file in the project
  • Properties
  • Build Action -> Content
  • Copy To Output Directory -> Copy if newer

Then, when you initialise your Dependency Inject framework, you can use something like Server.MapPath("~/bin/filename.config").

kͩeͣmͮpͥ ͩ
  • 7,783
  • 26
  • 40