-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathOllamaApiConsole.csproj
More file actions
28 lines (23 loc) · 927 Bytes
/
OllamaApiConsole.csproj
File metadata and controls
28 lines (23 loc) · 927 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.AI" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="SixLabors.ImageSharp" />
<PackageReference Include="Spectre.Console" />
<PackageReference Include="Spectre.Console.ImageSharp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\OllamaSharp\OllamaSharp.csproj" />
<ProjectReference Include="..\src\SourceGenerators\OllamaSharp.SourceGenerators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup>
<None Update="server_config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>