31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AssemblyOriginatorKeyFile>..\LiteCharms.snk</AssemblyOriginatorKeyFile>
|
|
<SignAssembly>True</SignAssembly>
|
|
</PropertyGroup>
|
|
|
|
<!-- Nuget Package Details -->
|
|
<PropertyGroup>
|
|
<PackageId>LiteCharms.Models</PackageId>
|
|
<Version>1.0.3</Version>
|
|
<Authors>Khwezi Mngoma</Authors>
|
|
<Company>Lite Charms (PTY) Ltd</Company>
|
|
<Description>Shared models 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>
|
|
</Project>
|