-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXiaoFeng.Ftp.csproj
36 lines (36 loc) · 1.69 KB
/
XiaoFeng.Ftp.csproj
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>
<TargetFrameworks>netstandard2.0;netstandard2.1;</TargetFrameworks>
<OutputType>Library</OutputType>
<Authors>Jacky</Authors>
<Product>XiaoFeng.Ftp,FTP客户端</Product>
<Description>XiaoFeng.Ftp网络库,用两种方式实现了FTP客户端功能,FptRequest及Socket实现。</Description>
<Copyright>CopyRight © 2008-2024 魔法精灵(www.fayelf.com) QQ:7092734 Email:jacky@fayelf.com</Copyright>
<Company>魔法精灵</Company>
<VersionPrefix>2.0</VersionPrefix>
<VersionSuffix>0</VersionSuffix>
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<ProductVersion>$(VersionPrefix)</ProductVersion>
<Deterministic>false</Deterministic>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<SignAssembly>False</SignAssembly>
<EnableNETAnalyzers>False</EnableNETAnalyzers>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<RepositoryUrl>https://github.com/zhuovi/XiaoFeng.Ftp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIconUrl>http://nuget.fayelf.com/x.png</PackageIconUrl>
<PackageTags>XiaoFeng;FAYELF;Ftp;</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>打包基础版本</PackageReleaseNotes>
<DelaySign>False</DelaySign>
<IsPackable>true</IsPackable>
<PackageProjectUrl>https://github.com/zhuovi/XiaoFeng.Ftp</PackageProjectUrl>
<Title>XiaoFeng.Ftp</Title>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="XiaoFeng.Core" Version="2.0.1" />
</ItemGroup>
</Project>