-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntility.Extensions.Logging.csproj
More file actions
39 lines (32 loc) · 1.29 KB
/
Intility.Extensions.Logging.csproj
File metadata and controls
39 lines (32 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>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.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.9" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.9" />
</ItemGroup>
<ItemGroup>
<None Include="../../assets/intility-logo.png" Pack="true" Visible="false" PackagePath="\" />
</ItemGroup>
</Project>