24 lines
913 B
XML
24 lines
913 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<PackageId>LexWells.Infrastructure.EntityFramework</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Authors>Kenneth Wells</Authors>
|
|
<Company>LexWells</Company>
|
|
<Description>Shared EF Core architecture and SQLite helpers for LexWells projects.</Description>
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageOutputPath>/home/drew/source/LocalNuGet</PackageOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.14" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.14" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.14" />
|
|
</ItemGroup>
|
|
|
|
</Project> |