| 1234567891011121314151617181920212223242526272829303132333435 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <RootNamespace>Quadarax.Application.QLiberace.Console</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.10">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\common\qdr.app.qlbrc.common\qdr.app.qlbrc.common.csproj" />
- <ProjectReference Include="..\Common\qdr.fnd.core.qconsole\qdr.fnd.core.qconsole.csproj" />
- <ProjectReference Include="..\Common\qdr.fnd.core\qdr.fnd.core.csproj" />
- <ProjectReference Include="..\Modules\qdr.app.qlbrc.base\qdr.app.qlbrc.base.csproj" />
- <ProjectReference Include="..\Modules\qdr.app.qlbrc.customer\qdr.app.qlbrc.customer.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="qlbrc.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="readme.txt">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|