Specifying Framework version in Setup

Jerod

Newcomer
Joined
Mar 26, 2003
Messages
11
I have a VB.Net app written on the .Net Framework v1.0. I want to move to VS.Net 2003, which uses version 1.1 of the Framework. However, I am going to be distributing my apps to machines running ONLY v1.0 of the Framework. Upgrading the machines to which the app is distributed it not an option. I know how to specify the framework version for the application itself, but the setup project insists on checking for version 1.1 of the framework. How do I change this!? Thanks in advance.
 
Found the solution: change the SupportedRuntime value in the MsiNetAssemblySupport property of the Launch Conditions editor to a comma-delimited list of runtimes, ie 1.1.4322;1.0.3705, in order of preference.
 
Back
Top