summaryrefslogtreecommitdiff
path: root/solenv/bin/modules
diff options
context:
space:
mode:
Diffstat (limited to 'solenv/bin/modules')
-rw-r--r--solenv/bin/modules/installer/windows/assembly.pm2
-rw-r--r--solenv/bin/modules/installer/windows/property.pm4
2 files changed, 1 insertions, 5 deletions
diff --git a/solenv/bin/modules/installer/windows/assembly.pm b/solenv/bin/modules/installer/windows/assembly.pm
index e639ee2a4989..a03c4de8fb76 100644
--- a/solenv/bin/modules/installer/windows/assembly.pm
+++ b/solenv/bin/modules/installer/windows/assembly.pm
@@ -283,7 +283,7 @@ sub add_assembly_condition_into_component_table
{
# setting the condition
- $condition = "DOTNET_SUFFICIENT=1";
+ $condition = "MsiNetAssemblySupport >= \"4.0.0.0\"";
$oneline = $component . "\t" . $componentid . "\t" . $directory . "\t" . $attributes . "\t" . $condition . "\t" . $keypath . "\n";
${$componenttable}[$j] = $oneline;
$changed = 1;
diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm
index f780a6dddd59..7cf568ea7f57 100644
--- a/solenv/bin/modules/installer/windows/property.pm
+++ b/solenv/bin/modules/installer/windows/property.pm
@@ -360,10 +360,6 @@ sub set_important_properties
push(@{$propertyfile}, $onepropertyline);
}
}
-
- # Setting .NET requirements
- push @{$propertyfile}, "REQUIRED_DOTNET_VERSION" . "\t" . "4.0.0.0" . "\n";
- push @{$propertyfile}, "DOTNET_SUFFICIENT" . "\t" . "1" . "\n"; # default value for found .NET
}
#######################################################