-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGenAI.Reference.Samples.csproj
More file actions
42 lines (38 loc) · 2.07 KB
/
Copy pathGenAI.Reference.Samples.csproj
File metadata and controls
42 lines (38 loc) · 2.07 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
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>45cc3dd1-99f1-43bf-8f57-e47416adb188</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.CognitiveServices.Search.WebSearch" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.0-rc.1.24431.7" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.0-rc.1.24431.7" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0-rc.1.24431.7" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.19.0" />
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.19.0" />
<PackageReference Include="Microsoft.SemanticKernel.Agents.Core" Version="1.19.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Markdown" Version="1.19.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Core" Version="1.19.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.19.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.PromptTemplates.Handlebars" Version="1.19.0" />
<PackageReference Include="Microsoft.SemanticKernel.Prompty" Version="1.19.0-alpha" />
<PackageReference Include="Spectre.Console" Version="0.49.2-preview.0.44" />
</ItemGroup>
<ItemGroup>
<None Update="Data\donation01.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SystemPrompts\WadeTheMeteorologist.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SystemPrompts\TaxImpactReviewer.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SystemPrompts\TaxImpactAnalyzer.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>