Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
runtime, via MongoDBAgentSessionStore's resolved-assembly-version check, if a package outside this verified
range is ever loaded despite this constraint (e.g. a private feed override).
-->
<AgentFrameworkVersion Condition="'$(AgentFrameworkVersion)' == ''">[1.13.0,1.17.0)</AgentFrameworkVersion>
<AgentFrameworkVersion Condition="'$(AgentFrameworkVersion)' == ''">1.20.0</AgentFrameworkVersion>
</PropertyGroup>

<ItemGroup>
Expand All @@ -117,7 +117,7 @@
is ever loaded despite this constraint (e.g. a private feed override).
-->
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="$(AgentFrameworkVersion)" />
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="[10.7.0,11.0.0)" />
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="[10.10.0, 11.0.0)" />
<!--
Floor raised to 10.0.9 (from 10.0.0): Microsoft.Agents.AI.Workflows 1.13.0 transitively requires
Microsoft.Extensions.Logging.Abstractions >= 10.0.9, so pinning lower here caused an NU1605 package
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AgentFrameworkVersion Condition="'$(AgentFrameworkVersion)' == ''">[1.13.0,1.17.0)</AgentFrameworkVersion>
<AgentFrameworkVersion Condition="'$(AgentFrameworkVersion)' == ''">1.20.0</AgentFrameworkVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
pinned version as the main package under test, rather than leaving it independently resolved to the full
range.
-->
<AgentFrameworkVersion Condition="'$(AgentFrameworkVersion)' == ''">[1.13.0,1.17.0)</AgentFrameworkVersion>
<AgentFrameworkVersion Condition="'$(AgentFrameworkVersion)' == ''">1.20.0</AgentFrameworkVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading