-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.targets
More file actions
35 lines (30 loc) · 1.69 KB
/
Directory.Build.targets
File metadata and controls
35 lines (30 loc) · 1.69 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
28
29
30
31
32
33
34
35
<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.0.0-rc4" />
<PackageReference Update="Microsoft.Agents.AI.OpenAI" Version="1.0.0-rc4" />
<PackageReference Update="Microsoft.Agents.AI.Workflows" Version="1.0.0-rc4" />
</ItemGroup>
<!-- ========================================================= -->
<!-- Microsoft.Extensions.AI (the foundation MAF sits on) -->
<!-- These MUST match the version MAF was compiled against. -->
<!-- ========================================================= -->
<ItemGroup>
<PackageReference Update="Microsoft.Extensions.AI" Version="10.4.0" />
<PackageReference Update="Microsoft.Extensions.AI.Core" Version="10.4.0" />
<PackageReference Update="Microsoft.Extensions.AI.OpenAI" Version="10.4.0" />
<PackageReference Update="Microsoft.Extensions.AI.Abstractions" Version="10.4.0" />
</ItemGroup>
<!-- ========================================================= -->
<!-- Durable Task Framework -->
<!-- Used by AgentNet.Durable and Azure Functions workflows. -->
<!-- These must be aligned to avoid runtime type mismatches. -->
<!-- ========================================================= -->
<ItemGroup>
<PackageReference Update="Microsoft.DurableTask.Abstractions" Version="1.22.0" />
</ItemGroup>
</Project>