Skip to content

Commit 0ab741e

Browse files
committed
Add service.projects for Azure.AI.AgentServer.*
1 parent 8c2b023 commit 0ab741e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

sdk/agentserver/service.projects

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!--
2+
This file allows overrides and extensions to the build configuration defined
3+
by the central engineering system, and is considered during pipeline builds for
4+
CI, test runs, and package release.
5+
6+
Based on the SDKType variable (msbuild property or env variable) this will filter
7+
the set of projects to to match what type of SDK we are interested in building.
8+
9+
SDKType values
10+
- "all" will build all projects
11+
- "client" will build the track 2 client libraries
12+
- "functions" will build the functions libraries
13+
- "mgmtclient" will build the track 2 managment libraries
14+
-->
15+
16+
<Project>
17+
<ItemGroup Condition="'$(SDKType)' == 'client'">
18+
<ProjectsToIncludeBySDKType Include="$(MSBuildThisFileDirectory)Azure.AI.AgentServer.*\**\*.csproj" />
19+
</ItemGroup>
20+
</Project>

0 commit comments

Comments
 (0)