| 1234567891011121314151617181920212223242526272829 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Dapper" Version="2.1.35" />
- <PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.27" />
- <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.27" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.27">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.27" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="6.0.27" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.27" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.27">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\ProductionLineMonitor.Core\ProductionLineMonitor.Core.csproj" />
- </ItemGroup>
- </Project>
|