-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirs.proj
17 lines (16 loc) · 965 Bytes
/
dirs.proj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Project Sdk="Microsoft.Build.Traversal">
<PropertyGroup>
<TraversalGlobalProperties>SolutionDir=$(MSBuildThisFileDirectory);Configuration=$(Configuration);BuildProjectReferences=false</TraversalGlobalProperties>
<CustomBeforeTraversalProps>$(MSBuildThisFileDirectory)Directory.Build.props</CustomBeforeTraversalProps>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="MsiZapEx\MsiZapEx.csproj" Properties="Platform=Any CPU;GeneratePackageOnBuild=true" Targets="Build" BuildInParallel="false"/>
</ItemGroup>
<ItemGroup Condition="'$(BuildSample)' != '' And $(BuildSample)">
<ProjectReference Include="TestPackage\TestPackage.wixproj" Properties="Platform=x64" Targets="Build" BuildInParallel="false"/>
<ProjectReference Include="TestBundle\TestBundle.wixproj" Properties="Platform=x64" Targets="Build" BuildInParallel="false"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="TidyBuild" />
</ItemGroup>
</Project>