My framework project contains validation JavaScript that I want to incorporate into my regular website.
Within the framework folder, I define core functionality and validation using attributes.
The issue arises because the framework project also includes client-side validation JavaScript files. I am looking for the proper way to reference these files in my main project. How should I approach this correctly?
I have heard about setting the build action to place the file in the bin folder and then referencing it from there. However, I've read that this might not be the best practice. My development environment is Visual Studio 2012 with an MVC 4.5 project.