Hi all,
1. My application with launch condition checking the client PC has .net
framework 1.1.4322, but i have tried that if there are .net 2.0 installed
it seems not work well as expected. I still prompt and require 1.1 framework
to be installed. How to solve it so that my version could pass the launch
condition when framework 2.0 is installed as well as 1.1
2. how should i setup the dependency on a deployment project so that .net
framework will also included inside my setup file.
Thanks a lot.
Rena.
Phil Wilson - 30 Nov 2004 05:55 GMT
1. This is what the SupportedRuntimes property is for in the launch
condition:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsintro7/html/v
xgrfSupportedRuntimesProperty.asp
2. You can't install the .NET framework from within your setup project
because you can't nest an MSI install (the .NET install) inside another MSI
install (your setup). See:
http://www.msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy.asp?fra
me=true
and look at the bootstrapper, or use something like this:
http://www.codeproject.com/dotnet/dotNetInstaller.asp

Signature
Phil Wilson
[Microsoft MVP-Windows Installer]
Definitive Guide to Windows installer
http://apress.com/book/bookDisplay.html?bID=280
> Hi all,
>
[quoted text clipped - 11 lines]
> Thanks a lot.
> Rena.