-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLayeredCraft.StructuredLogging.csproj
More file actions
51 lines (45 loc) · 3.01 KB
/
Copy pathLayeredCraft.StructuredLogging.csproj
File metadata and controls
51 lines (45 loc) · 3.01 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
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFrameworks>net8.0;net9.0;netstandard2.1;netstandard2.0;net10.0</TargetFrameworks>
<LangVersion>default</LangVersion>
<!-- Package metadata -->
<PackageId>LayeredCraft.StructuredLogging</PackageId>
<Title>LayeredCraft Structured Logging</Title>
<Description>Simplified, structured logging for modern .NET apps — overloads, conditionals, and performance built-in. High-performance extension methods for ILogger with structured parameters, scope management, enrichment capabilities, performance monitoring, and comprehensive testing support.</Description>
<Summary>High-performance structured logging extensions for .NET with built-in level checks, scope management, enrichment, and testing support.</Summary>
<PackageTags>logging;structured-logging;dotnet;microsoft-extensions-logging;performance;testing;scopes;enrichment;serilog;nlog</PackageTags>
<Category>Logging</Category>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>Initial release of LayeredCraft.StructuredLogging with comprehensive logging extensions, scope management, enrichment capabilities, performance monitoring, and testing framework support.</PackageReleaseNotes>
<Copyright>Copyright © 2025 Nick Cipollina</Copyright>
<!-- NuGet.org specific -->
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<IsPackable>true</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Documentation -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0' or '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.3" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.11" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\icon.png" Pack="true" PackagePath="" Visible="False"/>
<None Include="..\..\README.md" Pack="true" PackagePath="" Visible="False"/>
</ItemGroup>
</Project>