-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathEssentialCSharp.Chat.csproj
More file actions
37 lines (31 loc) · 1.27 KB
/
EssentialCSharp.Chat.csproj
File metadata and controls
37 lines (31 loc) · 1.27 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Version>0.0.1</Version>
</PropertyGroup>
<!--
For packaging as a dotnet global tool
https://learn.microsoft.com/dotnet/core/tools/global-tools-how-to-create
-->
<PropertyGroup>
<PackageId>EssentialCSharp.Chat</PackageId>
<PackAsTool>true</PackAsTool>
<ToolCommandName>essentialcsharpchat</ToolCommandName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" />
<PackageReference Include="Microsoft.SemanticKernel" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.PgVector" />
<PackageReference Include="ModelContextProtocol" />
<PackageReference Include="IntelliTect.Multitool" />
<PackageReference Include="System.CommandLine" />
<PackageReference Include="Microsoft.SourceLink.GitHub">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EssentialCSharp.Chat.Shared\EssentialCSharp.Chat.Common.csproj" />
</ItemGroup>
</Project>