How can copy all files and folders in 'Folder' from 'ProjectB' to 'ProjectA'
Solution
 *ProjectA*
 *ProjectB*
       **Folder**
          SubFolder
             Files.extension
          SubFolder
          SubFolder
          Files.extension
In visual studio i have created two different project in same solution. I use AngularJS in both of projects, i have create some mine components for management data. Also i use AngularUI routing and i include all components as dependencies.
How can create a copy link for folder 'Folder' from 'ProjectB' that can include in 'ProjectA' ?
For now, i have duplicated all files, so if any change has been place in one project that include 'Folder', i must copy/paste folder 'Folder' to other project, so both projects have same files and code.
SOLUTION In windows you can create linked folder from command prompt with this command 'mklink /D target source'. So any change to one file will bind to other always