Inno Setup provides variables for {dotnet35}
and {dotnet40}
, but I need to run the InstallUtil.exe
program from something like {dotnet45}
.
Is there a simple way to do this?
Inno Setup provides variables for {dotnet35}
and {dotnet40}
, but I need to run the InstallUtil.exe
program from something like {dotnet45}
.
Is there a simple way to do this?
There is no such constant like {dotnet45}
defined, however you can use the {dotnet40}
constant, since .NET 4.5 is just an inplace upgrade for .NET 4.0. So, .NET 4.5 is in the same directory as .NET 4.0.
Related questions: