forked from zhuovi/XiaoFeng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXiaoFeng.csproj
39 lines (37 loc) · 1.79 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;</TargetFrameworks>
<OutputType>Library</OutputType>
<Authors>Jacky</Authors>
<Product>基础类库 数据库中间件</Product>
<Description>基础类库,数据库中间件,网络通讯中间件</Description>
<Copyright>CopyRight @ 2008-2023 魔法精灵(www.fayelf.com) QQ:7092734 Email:[email protected]</Copyright>
<PackageIconUrl>http://nuget.fayelf.com/x.png</PackageIconUrl>
<Company>河南魔法精灵软件科技有限公司</Company>
<VersionPrefix>2.7</VersionPrefix>
<VersionSuffix>$([System.DateTime]::Now.ToString("yyyy.MMdd"))</VersionSuffix>
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<ProductVersion>$(VersionPrefix)</ProductVersion>
<Deterministic>false</Deterministic>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<PackageTags>FAYELF</PackageTags>
<PackageReleaseNotes>www.fayelf.com</PackageReleaseNotes>
<SignAssembly>False</SignAssembly>
<EnableNETAnalyzers>False</EnableNETAnalyzers>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<DefineConstants Condition="'$(TargetFramework)'=='netstandard2.0'">$(DefineConstants);NETCORE;</DefineConstants>
<DefineConstants Condition="'$(TargetFramework)'=='netstandard2.1'">$(DefineConstants);NETCORE;</DefineConstants>
<DelaySign>False</DelaySign>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Cache\MemoryCacheManage.cs" />
<Compile Remove="Cache\MemoryCacheManager.cs" />
<Compile Remove="Common\UserSession.cs" />
<Compile Remove="Data\DataMapping.cs" />
</ItemGroup>
</Project>