27 lines
1002 B
XML
27 lines
1002 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<PackageId>LexWells.Infrastructure.Common</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Authors>Kenneth Wells</Authors>
|
|
<Company>LexWells</Company>
|
|
<Description>Shared infrastructure and caching logic for LexWells projects.</Description>
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageOutputPath>/home/drew/source/LocalNuGet</PackageOutputPath>
|
|
<PackageFormat>nupkg</PackageFormat>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.14" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.14" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.14" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|