1234567891011121314151617181920 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="HslCommunication" Version="12.1.0" />
- <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\ProductionLineMonitor.Application\ProductionLineMonitor.Application.csproj" />
- <ProjectReference Include="..\ProductionLineMonitor.Core\ProductionLineMonitor.Core.csproj" />
- <ProjectReference Include="..\ProductionLineMonitor.EntityFramework\ProductionLineMonitor.EntityFramework.csproj" />
- </ItemGroup>
- </Project>
|