You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.6 KiB
43 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.1</TargetFrameworks>
|
|
<AssemblyName>GitCandy.Data</AssemblyName>
|
|
<RootNamespace>GitCandy.Data</RootNamespace>
|
|
<AssemblyTitle>数据层</AssemblyTitle>
|
|
<Description></Description>
|
|
<Company>新生命开发团队</Company>
|
|
<Copyright>©2002-2025 NewLife</Copyright>
|
|
<VersionPrefix>2.0</VersionPrefix>
|
|
<VersionSuffix>$([System.DateTime]::Now.ToString(`yyyy.MMdd`))</VersionSuffix>
|
|
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
|
|
<FileVersion>$(Version)</FileVersion>
|
|
<AssemblyVersion>$(VersionPrefix).*</AssemblyVersion>
|
|
<Deterministic>false</Deterministic>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Configuration\**" />
|
|
<Compile Remove="Security\**" />
|
|
<EmbeddedResource Remove="Configuration\**" />
|
|
<EmbeddedResource Remove="Security\**" />
|
|
<None Remove="Configuration\**" />
|
|
<None Remove="Security\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Base\Profiler.cs" />
|
|
<Compile Remove="Entity\Entity\SSH密钥.Biz.cs" />
|
|
<Compile Remove="Entity\Entity\SSH密钥.cs" />
|
|
<Compile Remove="Entity\Entity\认证日志.Biz.cs" />
|
|
<Compile Remove="Entity\Entity\认证日志.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NewLife.Core" Version="11.3.2025.101" />
|
|
<PackageReference Include="NewLife.Stardust" Version="3.2.2024.1211" />
|
|
<PackageReference Include="NewLife.XCode" Version="11.16.2024.1202" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|