In my MVC app I have several folders currently user the Content folder where I put thing like brand logos / promotional images etc.
I want to allow others to add images to these folders (at the production end) as it will be a constant task creating new images etc.
When I am publishing my code obviously I am stamping all over anything they may have done and replacing it with what I have locally on my copy of the app. What's the best way to allow this scenario of allowing other people to maintain the contents of these folders?
- At the production end have folders completely outside of my app and use something like virtual dirs?
- Just exclude the folders from my publish somehow - if so how to stop the whole folder at the production end getting wiped off when I publish?
What is best practice?
Thanks