dll - MSBuild: Is it possible to specify projects build dependencies in actual project file? -
I have several different MFC language processing files in an MSBuild system, and I try to create different DLLs from each I am here. I have a project file for each of the same directories.
What I want to do is specify in other project files of the resources to be specified in the main project file.
If I
& lt; Use imported project = "lang_de-DE.xml" /> Construction will be code from imported projects (according to MSDN MSBILD documentation) in the main DLL.
I do not want to use
> & lt; Include CreateItem = ... /> Build either, I put them in the same directory.
I have lang_main.xml, lang_en-GB.xml, lang_fi-FI.xml etc. The .rc files are in a separate directory for the directory, and for them.
What do I do? I create others in lang_main.xml project file first, and then create their own, and at the end of the same number of DLS is it possible to solve it?
Thanks
solution
The directory for all languages was created at the same level along with the main language, and everything that I did was put the project file into this directory for each of them.
Then, I place all the resource files in the main language directory, and reference my RC file with the respective relative path in different project files.
Then I used other language "module" in my language, as a dependency in the main language module.
Comments
Post a Comment