DBHelper.csproj 657 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. </PropertyGroup>
  5. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  6. <OutputPath>D:\Source\WCS\DLL\</OutputPath>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.4" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.4" />
  11. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.4" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\Logs\Logs.csproj" />
  15. </ItemGroup>
  16. </Project>