2021-04-25 03:50:14 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2021-04-25 03:55:32 +03:00
|
|
|
|
<Description>Caching extensions</Description>
|
|
|
|
|
<PackageProjectUrl>https://dev.azure.com/tstanciu94/NDB</PackageProjectUrl>
|
|
|
|
|
<RepositoryUrl>https://dev.azure.com/tstanciu94/NDB</RepositoryUrl>
|
|
|
|
|
<RepositoryType>Git</RepositoryType>
|
2023-01-12 01:07:04 +02:00
|
|
|
|
<PackageTags>Netmash Cache</PackageTags>
|
2021-06-29 10:05:43 +03:00
|
|
|
|
<Version>1.0.1</Version>
|
2021-04-25 03:50:14 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-06-29 10:05:43 +03:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2021-04-25 03:50:14 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|