forked from dotnetcore/DotnetSpider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.props
25 lines (22 loc) · 1.09 KB
/
package.props
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
<Project>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Version>5.1.2</Version>
<FileVersion>5.1.2</FileVersion>
<AssemblyVersion>5.1.2</AssemblyVersion>
<Authors>zlzforever@163.com;</Authors>
<Copyright>Copyright 2023 Lewis Zou</Copyright>
<Description>DotnetSpider, a .NET Standard web crawling library. It is lightweight, efficient and fast high-level web crawling & scraping framework</Description>
<PackageTags>DotnetSpider;crawler;dotnet core</PackageTags>
<PackageProjectUrl>https://github.com/dotnetcore/DotnetSpider</PackageProjectUrl>
<RepositoryUrl>https://github.com/dotnetcore/DotnetSpider</RepositoryUrl>
<LangVersion>latest</LangVersion>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="LICENSE.txt"/>
<None Include="..\..\images\icon.png" Pack="true" PackagePath="icon.png"/>
</ItemGroup>
</Project>