-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.targets
More file actions
27 lines (23 loc) · 1.3 KB
/
Copy pathDirectory.Build.targets
File metadata and controls
27 lines (23 loc) · 1.3 KB
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
26
27
<Project>
<!-- See also: Directory.Build.props for AgentNet package versions. -->
<!-- ========================================================= -->
<!-- Microsoft Agents Framework (MAF) -->
<!-- These packages must always be version-aligned. -->
<!-- ========================================================= -->
<ItemGroup>
<PackageReference Update="Microsoft.Agents.AI" Version="1.10.0" />
<PackageReference Update="Microsoft.Agents.AI.OpenAI" Version="1.10.0" />
<PackageReference Update="Microsoft.Agents.AI.Workflows" Version="1.10.0" />
</ItemGroup>
<!-- ========================================================= -->
<!-- Microsoft.Extensions.AI (the foundation MAF sits on) -->
<!-- These MUST match the version MAF was compiled against. -->
<!-- MAF 1.10.0 depends on Microsoft.Extensions.AI 10.6.0. -->
<!-- ========================================================= -->
<ItemGroup>
<PackageReference Update="Microsoft.Extensions.AI" Version="10.6.0" />
<PackageReference Update="Microsoft.Extensions.AI.Core" Version="10.6.0" />
<PackageReference Update="Microsoft.Extensions.AI.OpenAI" Version="10.6.0" />
<PackageReference Update="Microsoft.Extensions.AI.Abstractions" Version="10.6.0" />
</ItemGroup>
</Project>