Some checks are pending
Publish Platform NuGet Packages / build (push) Waiting to run
- 在 GwDestination 实体添加 TenantCode 属性,用于区分租户专属目标 - null 或空字符串表示默认目标(所有租户共享) - 有值表示该目标专属于指定租户 - 更新 Fengling.Platform.Domain 版本号从 1.0.0 到 1.0.1
20 lines
696 B
XML
20 lines
696 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
|
<Version>1.0.1</Version>
|
|
<PackageVersion>1.0.1</PackageVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
<PackageReference Include="NetCorePal.Extensions.Domain.Abstractions" />
|
|
<PackageReference Include="NetCorePal.Extensions.Primitives" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|