46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>..\LiteCharms.snk</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
|
|
<!-- Nuget Package Details -->
|
|
<PropertyGroup>
|
|
<PackageId>LiteCharms.Entities</PackageId>
|
|
<Version>1.0.17</Version>
|
|
<Authors>Khwezi Mngoma</Authors>
|
|
<Company>Lite Charms (PTY) Ltd</Company>
|
|
<Description>Shared entities for Lite Charms applications.</Description>
|
|
<PackageProjectUrl>https://gitea.khongisa.co.za/litecharms/components</PackageProjectUrl>
|
|
<RepositoryUrl>https://gitea.khongisa.co.za/litecharms/components.git</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
<PackageTags>utility;dotnet</PackageTags>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE" Pack="true" PackagePath="\"/>
|
|
<None Include="..\icon.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<!-- Database -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.7" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.7" />
|
|
|
|
<!-- Global Usings -->
|
|
<Using Include="Microsoft.EntityFrameworkCore" />
|
|
<Using Include="Microsoft.EntityFrameworkCore.Metadata.Builders" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LiteCharms.Models\LiteCharms.Models.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|