I have several license files (.lic) that are required for different third-party components, each of which requires a license file in the bin folder.
Since I lowered my bin folder from the source control, the links and license files hosted in bin are not controlled by the source. According to this answer, I moved my precompiled links to another place, which is covered by the source control and refers to them in my project by a relative path. When I create these DLL files are correctly included in my bin folder.
As far as I know, I cannot use the same method for my license files. They should be stored in my Visual Studio project. In Visual Studio, how can I store license files in the location covered by the version control and publish them to my bin folder during build?
version-control reference visual-studio visual-studio-2012
Chad levy
source share