I’m guessing there’s a standard way to do this that I never learned… I have a VS solution with some folders in it, you know, Models, Views, Controllers, etc. I added a few custom ones like Styles, Scripts, and Images. Naturally, I started saving images for the site in the Images folder in Explorer that VS created. I was sad to learn, however, that these files don’t just show up in my solution, therefore they don’t get Web Deployed either. Bummer. What is the right thing to do here?
P.S. Some of you probably jumped when I said I made a Scripts folder. I know about the built in minification stuff, and I don’t want to use it at this point. Thanks.
Click
Show All Filesin the toolbar on top of Solution Explorer.You can then right-click a file or folder and click
Include in Project.You also need to make sure that the files’
Build Actionis set toContent, but that should happen automatically.