-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathXiaoFeng.csproj
65 lines (64 loc) · 3.09 KB
/
XiaoFeng.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0;net9.0;</TargetFrameworks>
<OutputType>Library</OutputType>
<Title>XiaoFeng</Title>
<Authors>Jacky</Authors>
<Product>基础类库 数据库中间件</Product>
<Description>
基础类库、数据库中间件、网络通讯中间件、Redis、Socket、HttpHelper、IQueryableX、Cache、FTP、JSON、XML、IO、配置、各种加密码算法、作业调度、正则、通用数据库操作,支持10多种数据库</Description>
<Copyright>CopyRight © 2008-2025 魔法精灵(www.eelf.cn) QQ:7092734 Email:jacky@eelf.cn</Copyright>
<Company>魔法精灵</Company>
<VersionPrefix>5.2</VersionPrefix>
<VersionSuffix>9</VersionSuffix>
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<ProductVersion>$(VersionPrefix)</ProductVersion>
<Deterministic>false</Deterministic>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>XiaoFeng.snk</AssemblyOriginatorKeyFile>
<EnableNETAnalyzers>False</EnableNETAnalyzers>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<RepositoryUrl>https://github.com/zhuovi/XiaoFeng</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://www.eelf.cn</PackageProjectUrl>
<PackageIconUrl>https://www.eelf.cn/x.png</PackageIconUrl>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<AssemblyOriginatorKeyFile>XiaoFeng.snk</AssemblyOriginatorKeyFile>
<PackageIcon>x.png</PackageIcon>
<PackageTags>XiaoFeng;FAYELF;ELF;DataHelper;HttpHelper;Redis;Socket;WebSocket;Ftp;JSON;XML;</PackageTags>
<PackageReleaseNotes>LogHelper增加Logger调试日志,日志文件可指定;增加控制台进度条功能;</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<DelaySign>False</DelaySign>
<IsPackable>true</IsPackable>
</PropertyGroup>
<PropertyGroup>
<DefineConstants Condition="'$(TargetFramework)'=='netstandard2.0'">
$(DefineConstants);NETCORE;</DefineConstants>
<DefineConstants Condition="'$(TargetFramework)'=='netstandard2.1'">
$(DefineConstants);NETCORE;</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="FastSql\**" />
<EmbeddedResource Remove="FastSql\**" />
<None Remove="FastSql\**" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE" Pack="true" PackagePath="\" />
<None Include="x.png" Pack="true" PackagePath="\" />
<None Include="XiaoFeng.snk" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Config\ConfigurationHelper.cs" />
<Compile Remove="Data\DataMapping.cs" />
<Compile Remove="Json\JsonWriterX.cs" />
<Compile Remove="Json\XValue.cs" />
<Compile Remove="Xml\XmlParser.cs" />
<Compile Remove="Xml\XmlValueX.cs" />
</ItemGroup>
</Project>