-
Notifications
You must be signed in to change notification settings - Fork 0
/
RainbowPineapple.csproj
40 lines (35 loc) · 1.78 KB
/
RainbowPineapple.csproj
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
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<UserSecretsId>37daa3f4-9bf8-4026-a75a-488f6adac177</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.14.1" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.0.13" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.10.0" />
<PackageReference Include="Microsoft.SemanticKernel" Version="0.13.442.1-preview" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.AI.OpenAI" Version="0.13.442.1-preview" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Memory.Qdrant" Version="0.13.442.1-preview" />
<PackageReference Include="Microsoft.SemanticKernel.Planning.SequentialPlanner" Version="0.13.442.1-preview" />
<PackageReference Include="Octokit" Version="5.1.0" />
<PackageReference Include="Octokit.Webhooks.AzureFunctions" Version="1.5.1" />
</ItemGroup>
<ItemGroup>
<None Update="$(SolutionDir)semantics\**" CopyToOutputDirectory="PreserveNewest" LinkBase="semantics\" />
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" />
</ItemGroup>
</Project>