|
3 | 3 | <PropertyGroup> |
4 | 4 | <TargetFramework>net8.0</TargetFramework> |
5 | 5 | <LangVersion>13</LangVersion> |
| 6 | + </PropertyGroup> |
| 7 | + |
| 8 | + <PropertyGroup> |
6 | 9 | <Title>KamiYomu Crawler Agent Core</Title> |
7 | 10 | <Description>A foundational library for building, extending, and integrating custom crawler agents within the KamiYomu ecosystem. Provides essential abstractions, utilities, and lifecycle hooks to streamline agent development and ensure seamless interoperability across the platform.</Description> |
8 | | - <Copyright>© KamiYomu. Licensed under GPL-3.0.</Copyright> |
9 | | - <PackageProjectUrl>https://github.com/KamiYomu/KamiYomu.CrawlerAgents.Core</PackageProjectUrl> |
10 | | - <PackageIcon>Resources/logo.png</PackageIcon> |
11 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
12 | 11 | <Authors>KamiYomu</Authors> |
| 12 | + <Owners>KamiYomu</Owners> |
| 13 | + <PackageProjectUrl>https://github.com/KamiYomu/KamiYomu.CrawlerAgents.Core</PackageProjectUrl> |
13 | 14 | <RepositoryUrl>https://github.com/KamiYomu/KamiYomu.CrawlerAgents.Core</RepositoryUrl> |
14 | 15 | <RepositoryType>git</RepositoryType> |
15 | | - <PackageTags>kamiyomu;crawler agents;manga download</PackageTags> |
| 16 | + <PackageTags>kamiyomu;crawler-core;manga-download</PackageTags> |
| 17 | + <PackageType>Analyzer;KamiYomuCrawlerCoreAgent</PackageType> |
| 18 | + <PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression> |
| 19 | + <Copyright>© KamiYomu. Licensed under GPL-3.0.</Copyright> |
| 20 | + <PackageIconUrl>https://raw.githubusercontent.com/KamiYomu/KamiYomu.CrawlerAgents.Core/main/src/KamiYomu.CrawlerAgents.Core/Resources/logo.png</PackageIconUrl> |
| 21 | + <PackageIcon>Resources/logo.png</PackageIcon> |
| 22 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
16 | 23 | </PropertyGroup> |
17 | | - |
| 24 | + |
18 | 25 | <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> |
19 | 26 | <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 27 | + <IncludeSymbols>True</IncludeSymbols> |
| 28 | + <IncludeSource>True</IncludeSource> |
| 29 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
20 | 30 | </PropertyGroup> |
21 | 31 |
|
22 | | - <ItemGroup> |
23 | | - <None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="" /> |
24 | | - </ItemGroup> |
25 | | - |
26 | 32 | <ItemGroup> |
27 | 33 | <PackageReference Include="HtmlAgilityPack" Version="1.12.4" /> |
28 | 34 | <PackageReference Include="PuppeteerSharp" Version="20.2.4" /> |
29 | 35 | </ItemGroup> |
30 | 36 |
|
31 | 37 | <ItemGroup> |
32 | | - <None Include="KamiYomu.CrawlerAgents.Core.Build.props" Pack="true" PackagePath="build/" /> |
33 | | - <None Include="Resources\logo.png" Pack="true" PackagePath="Resources/" /> |
| 38 | + <None Include="Resources\logo.png" Pack="true" PackagePath="Resources/" /> |
| 39 | + <None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="/" /> |
34 | 40 | </ItemGroup> |
| 41 | + |
35 | 42 | <Import Project="KamiYomu.CrawlerAgents.Core.props" /> |
36 | 43 | </Project> |
0 commit comments