-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLLTSharp.csproj
More file actions
32 lines (27 loc) · 1.08 KB
/
LLTSharp.csproj
File metadata and controls
32 lines (27 loc) · 1.08 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
<Nullable>annotations</Nullable>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<PropertyGroup>
<PackageId>LLTSharp</PackageId>
<Version>1.1.0</Version>
<Authors>Roman K.</Authors>
<Company>RomeCore</Company>
<Product>LLTSharp</Product>
<Description>A lightweight .NET template engine for LLM with messages and prompt templates support.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>template, llm, template-engine, language-models</PackageTags>
<RepositoryUrl>https://github.com/RomeCore/LLTSharp</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="9.10.0" />
<PackageReference Include="RCParsing" Version="4.7.1" />
</ItemGroup>
</Project>