ProductionLineMonitor.WebAPI.csproj 749 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="HslCommunication" Version="12.1.0" />
  9. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\ProductionLineMonitor.Application\ProductionLineMonitor.Application.csproj" />
  13. <ProjectReference Include="..\ProductionLineMonitor.Core\ProductionLineMonitor.Core.csproj" />
  14. <ProjectReference Include="..\ProductionLineMonitor.EntityFramework\ProductionLineMonitor.EntityFramework.csproj" />
  15. </ItemGroup>
  16. </Project>