Browse Source

程序集忽略null

ECL142 11 months ago
parent
commit
75fce85797

+ 4 - 0
src/Electric/Electric.Application.Contracts/Electric.Application.Contracts.csproj

@@ -6,4 +6,8 @@
     <Nullable>enable</Nullable>
   </PropertyGroup>
 
+  <ItemGroup>
+    <None Include="..\.editorconfig" Link=".editorconfig" />
+  </ItemGroup>
+
 </Project>

+ 5 - 0
src/Electric/Electric.Domain/Electric.Domain.csproj

@@ -7,6 +7,11 @@
   </PropertyGroup>
 
   <ItemGroup>
+    <PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.4" />
+  </ItemGroup>
+
+  <ItemGroup>
+    <ProjectReference Include="..\Electric.Core\Electric.Core.csproj" />
     <ProjectReference Include="..\Electric.Domain.Shared\Electric.Domain.Shared.csproj" />
   </ItemGroup>
 

+ 3 - 0
src/Electric/Electric.Domain/Entities/Identity/EleUserToken.cs

@@ -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。
         {
         }
 

+ 4 - 0
src/Electric/Electric.WebAPI/Electric.WebAPI.csproj

@@ -11,4 +11,8 @@
     <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
   </ItemGroup>
 
+  <ItemGroup>
+    <ProjectReference Include="..\Electric.Domain\Electric.Domain.csproj" />
+  </ItemGroup>
+
 </Project>