-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntility.Extensions.Logging.csproj
More file actions
32 lines (27 loc) · 1.06 KB
/
Intility.Extensions.Logging.csproj
File metadata and controls
32 lines (27 loc) · 1.06 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Intility.Extensions.Logging</PackageId>
<PackageTags>intility;logging;extensions</PackageTags>
<Description>
Common logging infrastructure with extension primitives.
Please do not install this package directly.
</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" Version="4.3.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.3" />
</ItemGroup>
<ItemGroup>
<None Include="../../assets/intility-logo.png" Pack="true" Visible="false" PackagePath="\" />
</ItemGroup>
</Project>