DeathwatchConsoleApp.csproj 531 B

1234567891011121314151617
  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. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\DataLayer\DataLayer.csproj" />
  10. <ProjectReference Include="..\Domain\Domain.csproj" />
  11. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
  12. <ProjectReference Include="..\Services\Services.csproj" />
  13. </ItemGroup>
  14. </Project>