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