I cannot find any flag that will register them for you, for example. from the [Files] section, so I wrote this script, which should iterate over all * .dll files in the specified folder and for each command line call of the registration tool. Please note that I have not tested this script, and I'm not sure about using the command line with its parameters, but the main idea should be there:
[Code] function RegisterNetLibraries(const Folder: string): Integer; var RegTool: string; FindRec: TFindRec; ResultCode: Integer; begin // initialize result to 0 processed files Result := 0; // expand the path to the registration tool RegTool := ExpandConstant('{dotnet20}\RegAsm.exe'); // check if the registration tool exists; if not then exit... if not FileExists(RegTool) then begin MsgBox('RegAsm.exe not found!' +
source share