-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZaiets.PromptBuilder.csproj
More file actions
36 lines (31 loc) · 1.48 KB
/
Copy pathZaiets.PromptBuilder.csproj
File metadata and controls
36 lines (31 loc) · 1.48 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>12</LangVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- NuGet metadata -->
<PackageId>Zaiets.PromptBuilder</PackageId>
<Version>1.0.0</Version>
<Authors>Vladyslav Zaiets</Authors>
<Description>Fluent prompt builder for LLM APIs - templates, variables, chat history, token counting</Description>
<PackageTags>llm prompt ai template builder tokens</PackageTags>
<PackageProjectUrl>https://sarmkadan.com</PackageProjectUrl>
<RepositoryUrl>https://github.com/Sarmkadan/Zaiets.PromptBuilder</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Copyright (c) 2025 Vladyslav Zaiets</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>Initial release with fluent prompt building, template rendering, chat history management, and token estimation.</PackageReleaseNotes>
<Title>Zaiets.PromptBuilder</Title>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
</ItemGroup>
</Project>