main
targets 16 lines 709 Bytes
Raw
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 <AfterLinkTargets>
7 $(AfterLinkTargets);
8 PublicizeNativePdb;
9 </AfterLinkTargets>
10 </PropertyGroup>
11
12 <Target Name="PublicizeNativePdb"
13 Condition=" '@(Link)' != '' and '$(IsWixTestSupportProject)' != 'true' and '$(IsWixTestProject)' != 'true' and '$(IsWixSampleProject)' != 'true' ">
14 <Copy SourceFiles="%(Link.ProgramDatabaseFile)" DestinationFolder="$(PdbsFolder)$(PlatformFolder)" />
15 </Target>
16 </Project>