FruityFoundation/FruityFoundation.DataAccess.Core/FruityFoundation.DataAccess.Core.csproj

28 lines
944 B
XML
Raw Normal View History

2024-06-23 22:46:18 -04:00
<Project Sdk="Microsoft.NET.Sdk">
2024-06-23 18:15:32 -04:00
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2024-06-23 22:27:05 -04:00
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Kyle Ratti</Authors>
<RepositoryUrl>https://github.com/kyleratti/FruityFoundation</RepositoryUrl>
2024-06-23 22:46:18 -04:00
<Version>1.10.0</Version>
2024-06-23 22:27:05 -04:00
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2024-06-23 22:29:43 -04:00
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2024-06-23 18:27:45 -04:00
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
2024-06-23 18:15:32 -04:00
</PropertyGroup>
2024-06-23 22:27:05 -04:00
<ItemGroup>
<None Include="..\LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
2024-06-23 18:15:32 -04:00
<ItemGroup>
<ProjectReference Include="..\FruityFoundation.DataAccess.Abstractions\FruityFoundation.DataAccess.Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.35" />
</ItemGroup>
</Project>