-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAIDotNet.Toon.csproj
More file actions
41 lines (35 loc) · 1.77 KB
/
AIDotNet.Toon.csproj
File metadata and controls
41 lines (35 loc) · 1.77 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- NuGet 元数据 -->
<PackageId>AIDotNet.Toon</PackageId>
<Title>AIDotNet.Toon</Title>
<Description>Token-Oriented Object Notation (TOON) - a token-efficient JSON alternative for LLM prompts, .NET implementation with System.Text.Json-style API.</Description>
<PackageProjectUrl>https://token-ai.cn</PackageProjectUrl>
<RepositoryUrl>https://github.com/AIDotNet/Toon.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>TOON;JSON;Serialization;System.Text.Json;LLM;Prompt;Encoding;CSharp;DotNet</PackageTags>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<!-- 打包与可复现构建 -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Deterministic>true</Deterministic>
<RootNamespace>AIDotNet.Toon</RootNamespace>
</PropertyGroup>
<ItemGroup>
<!-- 将 README 打包进入 NuGet,并作为包级 Readme 显示 -->
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<!-- SourceLink 支持 -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
</ItemGroup>
</Project>