/addmodule (C# Compiler Options)
This option adds a module that was created with the target:module switch to the current compilation.
/addmodule:file[;file2]
All modules added with /addmodule must be in the same directory as the output file at run time. That is, you can specify a module in any directory at compile time but the module must be in the application directory at run time. If the module is not in the application directory at run time, you will get a TypeLoadException.
file cannot contain an assembly. For example, if the output file was created with /target:module, its metadata can be imported with /addmodule.
If the output file was created with a /target option other than /target:module, its metadata cannot be imported with /addmodule but can be imported with /reference.
This compiler option is unavailable in Visual Studio; a project cannot reference a module. In addition, this compiler option cannot be changed programmatically.