File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 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>
You can’t perform that action at this time.
0 commit comments