qdr.app.qlbrc.console.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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.10">
  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. <ProjectReference Include="..\Modules\qdr.app.qlbrc.customer\qdr.app.qlbrc.customer.csproj" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <None Update="qlbrc.json">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </None>
  26. <None Update="readme.txt">
  27. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  28. </None>
  29. </ItemGroup>
  30. </Project>