Hi !
According to https://forums.indigorose.com/forum/...project-folder
it's not possible to configure project specific themes - in theory it's possible to alter
%APPDATA%\IndigoRose\Setup Factory\9.0\Preferences.xml
AdditionalThemesFolder can configure theme folders, but if you have two or more builder on same machine they start to fight over %APPDATA%\IndigoRose\Setup Factory\9.0\Preferences.xml - who have access to that file.
I have found that it's possible to use relative paths instead of absolute, then theme folders will be local to built project, also you need to update Preferences.xml file only once.
Just if anyone needs this information.
According to https://forums.indigorose.com/forum/...project-folder
it's not possible to configure project specific themes - in theory it's possible to alter
%APPDATA%\IndigoRose\Setup Factory\9.0\Preferences.xml
Code:
<Preferences> <AddingFiles> <CreateSCExtensions>exe;hlp;chm;bat;com</CreateSCExtensions> <RegisterTTF>1</RegisterTTF> <ScanDLL>0</ScanDLL> <DropFolderMode>2</DropFolderMode> <FileDestinationOption>2</FileDestinationOption> <VersionFileExtensions>exe,dll,ocx</VersionFileExtensions> <SaveFileTimeStatInfo>0</SaveFileTimeStatInfo> <SaveFileVersionInfo>0</SaveFileVersionInfo> <IgnoreDLLs>msvcp80d.dll;msvcm80d.dll;msvcr80d.dll</IgnoreDLLs> </AddingFiles> <Folders> <TempFilesFolder>C:\Users\PikarTa1\AppData\Local\Temp</TempFilesFolder> <OutputFolder>C:\Users\PikarTa1\Documents\Setup Factory 9\Output</OutputFolder> <ProjectsFolder>C:\Users\PikarTa1\Documents\Setup Factory 9\Projects</ProjectsFolder> <PreferencesXMLLocation>C:\Users\PikarTa1\AppData\Roaming\IndigoRose\Setup Factory\9.0</PreferencesXMLLocation> <AdditionalThemesFolder>theme folders....</AdditionalThemesFolder> </Folders> ...
I have found that it's possible to use relative paths instead of absolute, then theme folders will be local to built project, also you need to update Preferences.xml file only once.
Just if anyone needs this information.