Skip to content

Commit

Permalink
Complete support for .NET 3.5 (CLR 2.0)
Browse files Browse the repository at this point in the history
Fixes #34
  • Loading branch information
heaths committed Nov 20, 2018
1 parent edb976d commit bcb58b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion inc/Common.props
Expand Up @@ -5,7 +5,7 @@
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<AssemblyName>Microsoft.Tools.WindowsInstaller.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>Microsoft.Tools.WindowsInstaller</RootNamespace>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<AppDesignerFolder>Properties</AppDesignerFolder>
<FileAlignment>512</FileAlignment>
<RestorePackages>true</RestorePackages>
Expand Down
Expand Up @@ -55,8 +55,8 @@ public void MeasureProductOnSystemDrive()
}
else
{
Assert.IsTrue(0 == drive.GetPropertyValue<int>("MSISpaceRequired"));
Assert.IsTrue(0 == drive.GetPropertyValue<int>("MSITemporarySpaceRequired"));
Assert.AreEqual(0, drive.GetPropertyValue<int>("MSISpaceRequired"));
Assert.AreEqual(0, drive.GetPropertyValue<int>("MSITemporarySpaceRequired"));
}
}
}
Expand Down Expand Up @@ -91,8 +91,8 @@ public void MeasureProductOnOtherDrive()
}
else
{
Assert.IsTrue(0 == drive.GetPropertyValue<int>("MSISpaceRequired"));
Assert.IsTrue(0 == drive.GetPropertyValue<int>("MSITemporarySpaceRequired"));
Assert.AreEqual(0, drive.GetPropertyValue<int>("MSISpaceRequired"));
Assert.AreEqual(0, drive.GetPropertyValue<int>("MSITemporarySpaceRequired"));
}
}
}
Expand Down

0 comments on commit bcb58b0

Please sign in to comment.