-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOproto.FluentDynamoDb.Logging.Extensions.csproj
More file actions
43 lines (37 loc) · 1.81 KB
/
Oproto.FluentDynamoDb.Logging.Extensions.csproj
File metadata and controls
43 lines (37 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsTrimmable>true</IsTrimmable>
<IsAotCompatible>true</IsAotCompatible>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<IsPackable>true</IsPackable>
<StripSymbols>false</StripSymbols>
<LangVersion>12.0</LangVersion>
<!-- Package metadata -->
<PackageId>Oproto.FluentDynamoDb.Logging.Extensions</PackageId>
<Title>Oproto.FluentDynamoDb.Logging.Extensions</Title>
<Description>Microsoft.Extensions.Logging adapter for Oproto.FluentDynamoDb providing seamless integration with the standard .NET logging infrastructure.</Description>
<Authors>Oproto</Authors>
<PackageTags>dynamodb;aws;logging;microsoft-extensions-logging;aot</PackageTags>
<PackageProjectUrl>https://fluentdynamodb.dev/</PackageProjectUrl>
<RepositoryUrl>https://github.com/oproto/fluent-dynamodb</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<!-- Include README in package -->
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Oproto.FluentDynamoDb\Oproto.FluentDynamoDb.csproj" />
</ItemGroup>
</Project>