I expected that this flag should be used together with dontcopy
- to make sure the files don't get copied anywhere except for GAC. But this combination is invalid as stated by the compiler. So, what's the best practice for gacinstall
? Actually copy these files to {app}
anyway?
Asked
Active
Viewed 1,735 times
1

Mikhail Orlov
- 2,789
- 2
- 28
- 38
2 Answers
2
The best practice is to not use the GAC. However, there are advantages to using the GAC.
As I see it, you have two valid options for installation.
- Install into {app} (But then why use the GAC)
- Install into {tmp}

GregC
- 7,737
- 2
- 53
- 67

Robert Love
- 12,447
- 2
- 48
- 80
0
I ended up copying files to a temporary folder - then installing them to gac with gacinstall
and ngening them from the [Run]
section.

Mikhail Orlov
- 2,789
- 2
- 28
- 38