main
proj 15 lines 595 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 Sdk="Microsoft.Build.NoTargets">
5 <PropertyGroup>
6 <TargetFramework>net472</TargetFramework>
7 </PropertyGroup>
8
9 <Target Name="ZipPdbs" BeforeTargets="AfterBuild">
10 <ZipDirectory
11 SourceDirectory="$(PdbsFolder)"
12 DestinationFile="$(ArtifactsFolder)\wix-pdbs.$(Version).zip"
13 Overwrite="true" />
14 </Target>
15 </Project>