Move WiX .wixpdbs to pdbs folder so they are included in archives
Rob Mensching committed
Aug 24, 2022 at 14:57 UTC
52ca00ae5e3671d965d1703e3aa369a4414be2c2
2 files changed
+6
-10
src/Directory.wixproj.props
deleted
-10
@@ -1,10 +0,0 @@
1
-<?xml version="1.0" encoding="utf-8"?>
2
-<!-- 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. -->
3
-
4
-<Project>
5
- <PropertyGroup>
6
- <!-- TODO: changing the .wixpdb folder does not actually work until issue #6857 is resolved
7
- <PdbOutputDir>$(PdbsFolder)</PdbOutputDir>
8
- -->
9
- </PropertyGroup>
10
-</Project>
src/setup/Directory.Build.props
+6
@@ -7,4 +7,10 @@
7
</PropertyGroup>
8
9
<Import Project="..\Directory.Build.props" />
10
+
11
+ <PropertyGroup>
12
+ <PlatformFolder Condition=" '$(Platform)' == 'AnyCPU' ">x86</PlatformFolder>
13
+ <PlatformFolder Condition=" '$(PlatformFolder)' == '' ">$(Platform)</PlatformFolder>
14
+ <PdbOutputDir>$(PdbsFolder)$(PlatformFolder)\</PdbOutputDir>
15
+ </PropertyGroup>
16
</Project>