Exclude sample PDBs from the zip.
Sean Hall committed
Feb 18, 2022 at 17:22 UTC
f351cd9fd00f23b30ce9a5e452ea2d5b9b828e17
2 files changed
+2
-1
src/Directory.vcxproj.targets
+1
-1
@@ -50,7 +50,7 @@
50
</PropertyGroup>
51
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)" />
55
</Target>
56
</Project>
src/ext/Bal/Samples/bafunctions/bafunctions.vcxproj
+1
@@ -35,6 +35,7 @@
35
<CharacterSet>Unicode</CharacterSet>
36
<TargetName>BAFunctions</TargetName>
37
<ProjectModuleDefinitionFile>bafunctions.def</ProjectModuleDefinitionFile>
38
+ <IsWixSampleProject>true</IsWixSampleProject>
39
</PropertyGroup>
40
41
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />