Skip to content

Commit cd7cf5f

Browse files
committed
Release v2.7.5
- Addressing #1825 (related to #1430, PRs #1432 & 1433)
1 parent 415ff1b commit cd7cf5f

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

Source/src/NET-Core/WixSharp.Core/WixSharp.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</PropertyGroup>
1919

2020
<PropertyGroup>
21-
<PackageVersion>2.7.4</PackageVersion>
21+
<PackageVersion>2.7.5</PackageVersion>
2222
<Title>WixSharp (.NET Core)</Title>
2323
<Description>.NET Core edition of WixSharp package</Description>
2424
<Copyright>Oleg Shilo</Copyright>

Source/src/NET-Core/WixSharp.Msi.Core/WixSharp.Msi.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</PropertyGroup>
2525

2626
<PropertyGroup>
27-
<PackageVersion>2.7.4</PackageVersion>
27+
<PackageVersion>2.7.5</PackageVersion>
2828
<Title>WixSharp (.NET Core)</Title>
2929
<Description>.NET Core edition of WixSharp.Msi package</Description>
3030
<Copyright>Oleg Shilo</Copyright>

Source/src/WixSharp.UI/ManagedUI/Forms/FeatureItem.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,11 @@ public FeatureItem(Session session, string name)
133133
if (session.IsInstalling()
134134
&& conditionRow?["Condition"] != null
135135
&& session.EvaluateCondition(conditionRow["Condition"].ToString()) // If condition is true...
136-
&& Convert.ToInt32(conditionRow["Level"]) <= installLevel) // ...set state according to condition level.
137136
{
138-
defaultState = InstallState.Local;
137+
// ...set state according to condition level.
138+
defaultState = (Convert.ToInt32(conditionRow["Level"]) <= installLevel)
139+
? InstallState.Local
140+
: InstallState.Absent;
139141
}
140142

141143
CurrentState = DetectFeatureState(session, name);

Source/src/WixSharp/Properties/AssemblyInfo.version.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
// Build Number
88
// Revision
99
//
10-
[assembly: AssemblyVersion("2.7.4.0")]
11-
[assembly: AssemblyFileVersion("2.7.4.0")]
10+
[assembly: AssemblyVersion("2.7.5.0")]
11+
[assembly: AssemblyFileVersion("2.7.5.0")]

0 commit comments

Comments
 (0)