You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,16 @@ A similar version exists for forcing 64-bit on arm.
66
66
67
67
If you only deploy 32-bit binaries and dependencies you can also instead just not define [ArchitecturesInstallIn64BitMode](https://jrsoftware.org/ishelp/index.php?topic=setup_architecturesinstallin64bitmode) in [Setup].
68
68
69
+
By default all added dependencies are installed for every user. You can tie them to one or more [components](https://jrsoftware.org/ishelp/index.php?topic=componentssection) so they are only downloaded and installed when the matching components are selected:
70
+
71
+
```iss
72
+
Dependency_Components := 'advanced'; // only install next dependencies if the 'advanced' component is selected
73
+
Dependency_AddDotNet100;
74
+
Dependency_Components := ''; // disable component gating again
75
+
```
76
+
77
+
`Dependency_Components` accepts the same expression syntax as Inno's [Components](https://jrsoftware.org/ishelp/index.php?topic=scriptfunctions) parameter (e.g. `'feature1 or feature2'`).
0 commit comments