mirror of
https://github.com/tribufu/tribufu-dotnet
synced 2025-06-15 18:04:18 +00:00
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<PackageId>Tribufu.Database</PackageId>
|
|
<Description>Tribufu Database Extensions</Description>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<IsPublishable>false</IsPublishable>
|
|
<Nullable>enable</Nullable>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Tribufu.Configuration\Tribufu.Configuration.csproj" />
|
|
<ProjectReference Include="..\Tribufu.Logging\Tribufu.Logging.csproj" />
|
|
<ProjectReference Include="..\Tribufu.Platform\Tribufu.Platform.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|