@@ -6,4 +6,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>
+ <ItemGroup>
+ <None Include="..\.editorconfig" Link=".editorconfig" />
+ </ItemGroup>
+
</Project>
@@ -7,6 +7,11 @@
<ItemGroup>
+ <PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.4" />
+ <ProjectReference Include="..\Electric.Core\Electric.Core.csproj" />
<ProjectReference Include="..\Electric.Domain.Shared\Electric.Domain.Shared.csproj" />
</ItemGroup>
@@ -25,7 +25,10 @@ namespace Electric.Domain.Entities.Identity
/// </summary>
public string Value { get; protected set; }
+#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
protected EleUserToken()
+#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
{
}
@@ -11,4 +11,8 @@
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
+ <ProjectReference Include="..\Electric.Domain\Electric.Domain.csproj" />