Skip to content

Commit 775301a

Browse files
committed
Upgrade service to latest KM nugets
1 parent 7480758 commit 775301a

File tree

7 files changed

+21
-25
lines changed

7 files changed

+21
-25
lines changed

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<!-- Kernel Memory -->
4444
<ItemGroup>
4545
<PackageVersion Include="Microsoft.KernelMemory.Abstractions" Version="0.37.240423.2" />
46-
<PackageVersion Include="Microsoft.KernelMemory.Core" Version="0.37.240420.2" />
46+
<PackageVersion Include="Microsoft.KernelMemory.Core" Version="0.38.240423.1" />
4747
<PackageVersion Include="KernelMemory.MemoryStorage.SqlServer" Version="1.6.3" />
4848
<PackageVersion Include="FreeMindLabs.KernelMemory.Elasticsearch" Version="0.9.5" />
4949
</ItemGroup>

examples/002-dotnet-SemanticKernel-plugin/002-dotnet-SemanticKernel-plugin.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Microsoft.SemanticKernel" Version="1.8.0" />
13-
<PackageReference Include="Microsoft.KernelMemory.SemanticKernelPlugin" Version="0.37.240420.2" />
13+
<PackageReference Include="Microsoft.KernelMemory.SemanticKernelPlugin" Version="0.38.240423.1" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

examples/203-dotnet-using-core-nuget/203-dotnet-using-core-nuget.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.37.240420.2" />
11+
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.38.240423.1" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

service/Service/ConfigurationBuilderExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System.IO;
55
using System.Reflection;
66
using Microsoft.Extensions.Configuration;
7-
using Microsoft.KernelMemory.Configuration;
87

98
namespace Microsoft.KernelMemory.Service;
109

service/Service/Service.csproj

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,34 +12,32 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Microsoft.KernelMemory.Service.AspNetCore" Version="0.37.240420.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'"/>
16-
<ProjectReference Include="..\Service.AspNetCore\Service.AspNetCore.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>
15+
<!-- Microsoft.KernelMemory.Core is imported via Microsoft.KernelMemory.Service.AspNetCore.
16+
Microsoft.KernelMemory.Core includes also extensions without external dependencies, e.g. all Azure extensions -->
1717

18-
<!-- Microsoft.KernelMemory.Core includes also extensions without external dependencies, e.g. all Azure extensions -->
19-
20-
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.37.240420.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
21-
<ProjectReference Include="..\Core\Core.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>
18+
<PackageReference Include="Microsoft.KernelMemory.Service.AspNetCore" Version="0.38.240423.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
19+
<ProjectReference Include="..\Service.AspNetCore\Service.AspNetCore.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'" />
2220

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

25-
<PackageReference Include="Microsoft.KernelMemory.AI.LlamaSharp" Version="0.37.240420.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
26-
<ProjectReference Include="..\..\extensions\LlamaSharp\LlamaSharp\LlamaSharp.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>
23+
<PackageReference Include="Microsoft.KernelMemory.AI.LlamaSharp" Version="0.38.240423.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
24+
<ProjectReference Include="..\..\extensions\LlamaSharp\LlamaSharp\LlamaSharp.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'" />
2725

28-
<PackageReference Include="Microsoft.KernelMemory.MongoDbAtlas" Version="0.37.240420.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'"/>
29-
<ProjectReference Include="..\..\extensions\MongoDbAtlas\MongoDbAtlas\MongoDbAtlas.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>
26+
<PackageReference Include="Microsoft.KernelMemory.MongoDbAtlas" Version="0.38.240423.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
27+
<ProjectReference Include="..\..\extensions\MongoDbAtlas\MongoDbAtlas\MongoDbAtlas.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'" />
3028

31-
<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Postgres" Version="0.37.240420.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
32-
<ProjectReference Include="..\..\extensions\Postgres\Postgres\Postgres.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>
29+
<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Postgres" Version="0.38.240423.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
30+
<ProjectReference Include="..\..\extensions\Postgres\Postgres\Postgres.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'" />
3331

34-
<PackageReference Include="Microsoft.KernelMemory.Orchestration.RabbitMQ" Version="0.37.240420.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'"/>
35-
<ProjectReference Include="..\..\extensions\RabbitMQ\RabbitMQ.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>
32+
<PackageReference Include="Microsoft.KernelMemory.Orchestration.RabbitMQ" Version="0.38.240423.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
33+
<ProjectReference Include="..\..\extensions\RabbitMQ\RabbitMQ.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'" />
3634

37-
<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Redis" Version="0.37.240420.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
38-
<ProjectReference Include="..\..\extensions\Redis\Redis\Redis.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>
35+
<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Redis" Version="0.38.240423.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
36+
<ProjectReference Include="..\..\extensions\Redis\Redis\Redis.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'" />
3937
</ItemGroup>
4038

4139
<ItemGroup>
42-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0"/>
40+
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
4341
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
4442
</ItemGroup>
4543

@@ -58,7 +56,7 @@
5856
}
5957
-->
6058
<ItemGroup>
61-
<ProjectReference Include="..\..\tools\InteractiveSetup\InteractiveSetup.csproj"/>
59+
<ProjectReference Include="..\..\tools\InteractiveSetup\InteractiveSetup.csproj" />
6260
</ItemGroup>
6361

6462
<!-- Code Analysis -->
@@ -90,7 +88,7 @@
9088
</ItemGroup>
9189

9290
<ItemGroup>
93-
<None Remove="setup.sh"/>
91+
<None Remove="setup.sh" />
9492
<Content Include="setup.sh">
9593
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
9694
</Content>

service/Service/ServiceConfiguration.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using Microsoft.Extensions.Configuration;
66
using Microsoft.Extensions.DependencyInjection;
77
using Microsoft.KernelMemory.AI;
8-
using Microsoft.KernelMemory.Configuration;
98
using Microsoft.KernelMemory.ContentStorage.DevTools;
109
using Microsoft.KernelMemory.MemoryStorage;
1110
using Microsoft.KernelMemory.MemoryStorage.DevTools;

tools/InteractiveSetup/InteractiveSetup.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.37.240420.2" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
12+
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.38.240423.1" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
1313
<ProjectReference Include="..\..\service\Core\Core.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'" />
1414
</ItemGroup>
1515

0 commit comments

Comments
 (0)