Skip to content

Commit

Permalink
.NET 4.5.1 check
Browse files Browse the repository at this point in the history
  • Loading branch information
raspi committed Jul 24, 2017
1 parent d5815b2 commit 5e2a793
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion WinLLDPService/build/installer.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
<?endif ?>

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
<?include $(sys.CURRENTDIR)version.wxi ?>
<Product Name="$(var.ProductShortName) $(var.VersionNumber) ($(sys.BUILDARCH))" Manufacturer="$(var.Manufacturer)" Version="$(var.VersionNumber)" Language="1033" Codepage="1252" Id="408ea9f0-8118-4f0e-b618-62dd6b7dedb5" UpgradeCode="$(var.UpgradeCode)">

Expand Down
10 changes: 5 additions & 5 deletions WinLLDPService/build/requirements.wxi
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version='1.0' encoding='utf-8' ?>
<Include xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Include xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">

<!-- Admin privileges required -->
<Condition Message="!(loc.Error1925)">
<![CDATA[Privileged]]>
</Condition>

<!-- Ensure .Net 4.0 is installed -->
<PropertyRef Id="NETFRAMEWORK40FULL" />
<Condition Message="This setup requires the .NET Framework 4.0 to be installed.">
<![CDATA[ Installed OR NETFRAMEWORK40FULL ]]>
<!-- Ensure .Net 4.5.1 is installed -->
<PropertyRef Id="WIX_IS_NETFRAMEWORK_451_OR_LATER_INSTALLED" />
<Condition Message="This setup requires the .NET Framework 4.5.1 to be installed.">
<![CDATA[ Installed OR WIX_IS_NETFRAMEWORK_451_OR_LATER_INSTALLED ]]>
</Condition>

<!-- Check WinPCap -->
Expand Down

0 comments on commit 5e2a793

Please sign in to comment.