diff options
Diffstat (limited to 'src/internal/WixBuildFinalize/WixBuildFinalize.proj')
-rw-r--r-- | src/internal/WixBuildFinalize/WixBuildFinalize.proj | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/internal/WixBuildFinalize/WixBuildFinalize.proj b/src/internal/WixBuildFinalize/WixBuildFinalize.proj new file mode 100644 index 00000000..1e0a98d1 --- /dev/null +++ b/src/internal/WixBuildFinalize/WixBuildFinalize.proj | |||
@@ -0,0 +1,19 @@ | |||
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 Sdk="Microsoft.Build.NoTargets"> | ||
5 | <PropertyGroup> | ||
6 | <TargetFramework>net46</TargetFramework> | ||
7 | </PropertyGroup> | ||
8 | |||
9 | <ItemGroup> | ||
10 | <PackageReference Include="GitInfo" PrivateAssets="All" /> | ||
11 | </ItemGroup> | ||
12 | |||
13 | <Target Name="ZipPdbs" DependsOnTargets="__SetPropertiesFromGit" BeforeTargets="AfterBuild"> | ||
14 | <ZipDirectory | ||
15 | SourceDirectory="$(PdbsFolder)" | ||
16 | DestinationFile="$(ArtifactsFolder)\wix$(Version)-pdbs.zip" | ||
17 | Overwrite="true" /> | ||
18 | </Target> | ||
19 | </Project> | ||