How to add assembly link programmatically

Here is my scenario: we plan to automate the deltabuild process, that is, I need to create a tool to facilitate this deltabuild process.

I need to do to compile only those files that have changes. How can I programmatically add a link to a link to link to another dll, so I don't need to compile this other DLL? Any help would be appreciated.

+3
source share
1 answer

You can view the project file and add or remove links to the project based on the code files that have changed. This assumes, of course, that those code files that have been changed are independent of the links you delete. If you need to reference other assemblies because your code files depend on them, you will need links for the assembly.

0
source

Source: https://habr.com/ru/post/1772542/


All Articles