aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2022-02-18 17:22:34 -0600
committerSean Hall <r.sean.hall@gmail.com>2022-02-18 17:05:47 -0700
commitf351cd9fd00f23b30ce9a5e452ea2d5b9b828e17 (patch)
tree21b450e23a3907cd2c77e435c03b5c08ee45936d
parent62224cf5c909c6b9ea09eeb0bcf29021091e7665 (diff)
downloadwix-f351cd9fd00f23b30ce9a5e452ea2d5b9b828e17.tar.gz
wix-f351cd9fd00f23b30ce9a5e452ea2d5b9b828e17.tar.bz2
wix-f351cd9fd00f23b30ce9a5e452ea2d5b9b828e17.zip
Exclude sample PDBs from the zip.
-rw-r--r--src/Directory.vcxproj.targets2
-rw-r--r--src/ext/Bal/Samples/bafunctions/bafunctions.vcxproj1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/Directory.vcxproj.targets b/src/Directory.vcxproj.targets
index 528edd44..041db031 100644
--- a/src/Directory.vcxproj.targets
+++ b/src/Directory.vcxproj.targets
@@ -50,7 +50,7 @@
50 </PropertyGroup> 50 </PropertyGroup>
51 51
52 <Target Name="PublicizeNativePdb" 52 <Target Name="PublicizeNativePdb"
53 Condition=" '@(Link)' != '' and '$(IsWixTestProject)' != 'true' "> 53 Condition=" '@(Link)' != '' and '$(IsWixTestProject)' != 'true' and '$(IsWixSampleProject)' != 'true' ">
54 <Copy SourceFiles="%(Link.ProgramDatabaseFile)" DestinationFolder="$(PdbsFolder)$(PlatformFolder)" /> 54 <Copy SourceFiles="%(Link.ProgramDatabaseFile)" DestinationFolder="$(PdbsFolder)$(PlatformFolder)" />
55 </Target> 55 </Target>
56</Project> 56</Project>
diff --git a/src/ext/Bal/Samples/bafunctions/bafunctions.vcxproj b/src/ext/Bal/Samples/bafunctions/bafunctions.vcxproj
index 6d6f78c8..9ed8eb2b 100644
--- a/src/ext/Bal/Samples/bafunctions/bafunctions.vcxproj
+++ b/src/ext/Bal/Samples/bafunctions/bafunctions.vcxproj
@@ -35,6 +35,7 @@
35 <CharacterSet>Unicode</CharacterSet> 35 <CharacterSet>Unicode</CharacterSet>
36 <TargetName>BAFunctions</TargetName> 36 <TargetName>BAFunctions</TargetName>
37 <ProjectModuleDefinitionFile>bafunctions.def</ProjectModuleDefinitionFile> 37 <ProjectModuleDefinitionFile>bafunctions.def</ProjectModuleDefinitionFile>
38 <IsWixSampleProject>true</IsWixSampleProject>
38 </PropertyGroup> 39 </PropertyGroup>
39 40
40 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 41 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />