Staging
v0.5.1
https://github.com/python/cpython
Revision 5666a55da89491bae717e67ad098ac31e310a8e1 authored by Miss Islington (bot) on 25 March 2018, 13:27:50 UTC, committed by GitHub on 25 March 2018, 13:27:50 UTC
(cherry picked from commit 51c9ab42ab84643081d75c83a586afa45d910383)

Co-authored-by: Eric V. Smith <ericvsmith@users.noreply.github.com>
1 parent 2dd885e
Raw File
Tip revision: 5666a55da89491bae717e67ad098ac31e310a8e1 authored by Miss Islington (bot) on 25 March 2018, 13:27:50 UTC
Trivial improvements to dataclasses tests. (GH-6234)
Tip revision: 5666a55
wix.props
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="..\..\PCbuild\python.props" />
  
  <PropertyGroup>
    <WixInstallPath Condition="'$(WixInstallPath)' == '' and Exists('$(MSBuildThisFileDirectory)\Wix')">$(MSBuildThisFileDirectory)\Wix\</WixInstallPath>
    <WixInstallPath Condition="'$(WixInstallPath)' == '' and Exists('$(ExternalsDir)\windows-installer\wix')">$(ExternalsDir)\windows-installer\wix\</WixInstallPath>
    <WixInstallPath Condition="'$(WixInstallPath)' == ''">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Installer XML\3.10@InstallRoot)</WixInstallPath>
    <WixInstallPath Condition="'$(WixInstallPath)' == ''">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows Installer XML\3.10@InstallRoot)</WixInstallPath>
    <WixTargetsPath>$(WixInstallPath)\Wix.targets</WixTargetsPath>
  </PropertyGroup>
</Project>
back to top