-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStructLog.csproj
More file actions
43 lines (37 loc) · 1.85 KB
/
StructLog.csproj
File metadata and controls
43 lines (37 loc) · 1.85 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>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<PackageId>StructLog</PackageId>
<Authors>Simone Marano</Authors>
<Description>A modern structured logging library for .NET with support for custom enrichers, JSON logging, and full Dependency Injection integration.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>logging;structured-logging;json-logging;enricher;aspnetcore;dotnet;dependency-injection;ilogger;eventcode;serilog-alternative</PackageTags>
<RepositoryUrl>https://github.com/simoneM93/StructLog</RepositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>See CHANGELOG.md for details on what's new in this release.</PackageReleaseNotes>
<Version>1.1.0</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="CHANGELOG.md" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="CHANGELOG.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="README.md" Pack="true" PackagePath="">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="10.0.3" />
</ItemGroup>
</Project>