-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathBuild.props
More file actions
19 lines (15 loc) · 956 Bytes
/
Build.props
File metadata and controls
19 lines (15 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project>
<ItemGroup Condition="'$(GeneratePackageSource)' == 'true'">
<ProjectToBuild Include="$(RepoRoot)src\packageSourceGenerator\PackageSourceGenerator.proj" />
</ItemGroup>
<ItemGroup Condition="'$(GeneratePackageSource)' != 'true'">
<!-- The ordering ensures the correct dependency order between package types. -->
<ProjectToBuild Include="$(RepoRoot)src\targetPacks\targetPacks.proj" BuildInParallel="false" />
<ProjectToBuild Include="$(RepoRoot)src\textOnlyPackages\textOnlyPackages.proj" BuildInParallel="false" />
<ProjectToBuild Include="$(RepoRoot)src\referencePackages\referencePackages.proj" BuildInParallel="false" />
<ProjectToBuild Include="$(RepoRoot)src\externalPackages\externalPackages.proj" BuildInParallel="false" />
</ItemGroup>
<ItemGroup Condition="'$(Test)' == 'true'">
<ProjectToBuild Include="$(RepoRoot)tests\SbrpTests\Sbrp.Tests.csproj" Test="$(Test)" />
</ItemGroup>
</Project>