diff options
Diffstat (limited to 'src/Directory.vcxproj.targets')
-rw-r--r-- | src/Directory.vcxproj.targets | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/Directory.vcxproj.targets b/src/Directory.vcxproj.targets index 4f278fa6..528edd44 100644 --- a/src/Directory.vcxproj.targets +++ b/src/Directory.vcxproj.targets | |||
@@ -1,8 +1,6 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
1 | <!-- 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. --> | 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. --> |
2 | <!-- | 3 | |
3 | Do NOT modify this file. Update the canonical version in Home\repo-template\src\Directory.csproj.targets | ||
4 | then update all of the repos. | ||
5 | --> | ||
6 | <Project> | 4 | <Project> |
7 | <PropertyGroup> | 5 | <PropertyGroup> |
8 | <PrepareForBuildDependsOn> | 6 | <PrepareForBuildDependsOn> |
@@ -43,4 +41,16 @@ | |||
43 | </ResourceCompile> | 41 | </ResourceCompile> |
44 | </ItemGroup> | 42 | </ItemGroup> |
45 | </Target> | 43 | </Target> |
44 | |||
45 | <PropertyGroup> | ||
46 | <AfterLinkTargets> | ||
47 | $(AfterLinkTargets); | ||
48 | PublicizeNativePdb; | ||
49 | </AfterLinkTargets> | ||
50 | </PropertyGroup> | ||
51 | |||
52 | <Target Name="PublicizeNativePdb" | ||
53 | Condition=" '@(Link)' != '' and '$(IsWixTestProject)' != 'true' "> | ||
54 | <Copy SourceFiles="%(Link.ProgramDatabaseFile)" DestinationFolder="$(PdbsFolder)$(PlatformFolder)" /> | ||
55 | </Target> | ||
46 | </Project> | 56 | </Project> |