From c2b365428686b326bbd0f594e9da1d43fa3420d3 Mon Sep 17 00:00:00 2001
From: Rob Mensching <rob@firegiant.com>
Date: Wed, 23 Feb 2022 13:28:40 -0800
Subject: Remove redundant assignment of WixTargetsPath in .targets

The WixTargetsPath is correctly assigned in the WixToolset.Sdk.props
file. Doing so again in the WixToolset.Sdk.targets file is redundant.
---
 src/wix/WixToolset.Sdk/build/WixToolset.Sdk.targets | 4 ----
 1 file changed, 4 deletions(-)

(limited to 'src')

diff --git a/src/wix/WixToolset.Sdk/build/WixToolset.Sdk.targets b/src/wix/WixToolset.Sdk/build/WixToolset.Sdk.targets
index ca722959..3940d6d5 100644
--- a/src/wix/WixToolset.Sdk/build/WixToolset.Sdk.targets
+++ b/src/wix/WixToolset.Sdk/build/WixToolset.Sdk.targets
@@ -2,9 +2,5 @@
 <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
 
 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-  <PropertyGroup>
-    <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$([MSBuild]::NormalizePath($(MSBuildThisFileDirectory), '..\tools\wix.targets'))</WixTargetsPath>
-  </PropertyGroup>
-
   <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' and Exists('$(WixTargetsPath)')" />
 </Project>
-- 
cgit v1.2.3-55-g6feb