qdr.app.qlbrc.console.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <RootNamespace>Quadarax.Application.QLiberace.Console</RootNamespace>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.9">
  11. <PrivateAssets>all</PrivateAssets>
  12. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  13. </PackageReference>
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\common\qdr.app.qlbrc.common\qdr.app.qlbrc.common.csproj" />
  17. <ProjectReference Include="..\Common\qdr.fnd.core.qconsole\qdr.fnd.core.qconsole.csproj" />
  18. <ProjectReference Include="..\Common\qdr.fnd.core\qdr.fnd.core.csproj" />
  19. <ProjectReference Include="..\Modules\qdr.app.qlbrc.base\qdr.app.qlbrc.base.csproj" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <None Update="qlbrc.json">
  23. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  24. </None>
  25. <None Update="readme.txt">
  26. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  27. </None>
  28. </ItemGroup>
  29. </Project>