Skip to content

Commit

Permalink
Upgrade Service to latest KM dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dluc committed Apr 16, 2024
1 parent 2f51779 commit babedc0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel" Version="1.7.1" />
<PackageReference Include="Microsoft.KernelMemory.SemanticKernelPlugin" Version="0.35.240412.2" />
<PackageReference Include="Microsoft.KernelMemory.SemanticKernelPlugin" Version="0.36.240415.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.35.240412.2" />
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.36.240415.2" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions service/Service/Service.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@
<ItemGroup>
<!-- Microsoft.KernelMemory.Core includes also extensions without external dependencies, e.g. all Azure extensions -->

<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.35.240321.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.36.240415.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<ProjectReference Include="..\Core\Core.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>

<!-- These extensions are used by ServiceConfiguration to support third party dependencies -->

<PackageReference Include="Microsoft.KernelMemory.AI.LlamaSharp" Version="0.35.240321.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<PackageReference Include="Microsoft.KernelMemory.AI.LlamaSharp" Version="0.36.240415.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<ProjectReference Include="..\..\extensions\LlamaSharp\LlamaSharp\LlamaSharp.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>

<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Postgres" Version="0.35.240321.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Postgres" Version="0.36.240415.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<ProjectReference Include="..\..\extensions\Postgres\Postgres\Postgres.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>

<PackageReference Include="Microsoft.KernelMemory.Orchestration.RabbitMQ" Version="0.35.240321.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<PackageReference Include="Microsoft.KernelMemory.Orchestration.RabbitMQ" Version="0.36.240415.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<ProjectReference Include="..\..\extensions\RabbitMQ\RabbitMQ.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>

<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Redis" Version="0.35.240321.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Redis" Version="0.36.240415.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<ProjectReference Include="..\..\extensions\Redis\Redis\Redis.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion tools/InteractiveSetup/InteractiveSetup.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.35.240321.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.36.240415.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<ProjectReference Include="..\..\service\Core\Core.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>
</ItemGroup>

Expand Down

0 comments on commit babedc0

Please sign in to comment.