41 lines
1.4 KiB
XML
41 lines
1.4 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.Abstractions</PackageId>
|
|
<Version>1.0.19</Version>
|
|
<Authors>Khwezi Mngoma</Authors>
|
|
<Company>Lite Charms (PTY) Ltd</Company>
|
|
<Description>Shared abstractions 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>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentResults" Version="4.0.0" />
|
|
<PackageReference Include="Mediator.Abstractions" Version="3.0.2" />
|
|
|
|
<Using Include="Mediator" />
|
|
<Using Include="FluentResults" />
|
|
<Using Include="System.Threading.Channels" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|