27 lines
979 B
XML
27 lines
979 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net45;net461;net8.0;net9.0</TargetFrameworks>
|
|
<Company>新生命开发团队</Company>
|
|
<Copyright>©2002-2025 新生命开发团队</Copyright>
|
|
<VersionPrefix>1.0</VersionPrefix>
|
|
<VersionSuffix>$([System.DateTime]::Now.ToString(`yyyy.MMdd`))</VersionSuffix>
|
|
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
|
|
<FileVersion>$(Version)</FileVersion>
|
|
<AssemblyVersion>$(VersionPrefix).$([System.DateTime]::Now.ToString(`yyyy.MMdd`))</AssemblyVersion>
|
|
<OutputPath>..\Bin\Test</OutputPath>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NewLife.Core" Version="11.5.2025.629-beta0325" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NewLife.Redis\NewLife.Redis.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|