-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntility.Logging.AspNetCore.csproj
More file actions
52 lines (43 loc) · 2.11 KB
/
Intility.Logging.AspNetCore.csproj
File metadata and controls
52 lines (43 loc) · 2.11 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
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Intility.Logging.AspNetCore</PackageId>
<PackageTags>intility;logging;aspnet;aspnetcore</PackageTags>
<Description>
This package enables common logging infrastructure to any aspnet
or dotnet project using generic host mechanism. Additional logging
capabilities are available through the extension packages Intility.Extensions.Logging.*
</Description>
<owners>Intility</owners>
<Company>Intility</Company>
<authors>Herman Jensen, Emil Kjelsrud, Thorstein Løkensgard</authors>
<RepositoryUrl>https://github.com/Intility/Intility.Logging</RepositoryUrl>
<PackageIcon>intility-logo.png</PackageIcon>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Serilog.Enrichers.AssemblyName" Version="2.0.0" />
<PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1" />
<PackageReference Include="Serilog.Enrichers.Memory" Version="1.0.4" />
<PackageReference Include="Serilog.Enrichers.AzureClaims" Version="1.1.4" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.9" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.3" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.9" />
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Intility.Extensions.Logging\Intility.Extensions.Logging.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="../../assets/intility-logo.png" Pack="true" Visible="false" PackagePath="\" />
</ItemGroup>
</Project>