-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathservice.projects
25 lines (21 loc) · 1023 Bytes
/
service.projects
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!--
This file allows overrides and extensions to the build configuration defined
by the central engineering system, and is considered during pipeline builds for
CI, test runs, and package release.
Based on the SDKType variable (msbuild property or env variable) this will filter
the set of projects to match what type of SDK we are interested in building.
SDKType values
- "all" will build all projects
- "client" will build the new track 2 client/data libraries
- "mgmtclient" will build the new track 2 mgmt libraries
- "data" will build the track 1 data plane libraries
- "mgmt" will build the track 1 mgmt libraries
-->
<Project>
<ItemGroup Condition="'$(SDKType)' == 'client'">
<ProjectsToIncludeBySDKType Include="$(MSBuildThisFileDirectory)Azure.Verticals.*\**\*.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(SDKType)' == 'mgmtclient'">
<ProjectsToIncludeBySDKType Include="$(MSBuildThisFileDirectory)Azure.ResourceManager.*\**\*.csproj" />
</ItemGroup>
</Project>