forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Logging.Log4Net.csproj
More file actions
28 lines (28 loc) · 1.26 KB
/
Copy pathServiceStack.Logging.Log4Net.csproj
File metadata and controls
28 lines (28 loc) · 1.26 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ServiceStack.Logging.Log4Net</PackageId>
<AssemblyName>ServiceStack.Logging.Log4Net</AssemblyName>
<TargetFrameworks>net472;netstandard2.0;net6.0</TargetFrameworks>
<Title>ServiceStack.Logging.Log4Net</Title>
<PackageDescription>
Provides log4net logging integration for other ServiceStack projects
</PackageDescription>
<PackageTags>servicestack;log;logging;log4net</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Interfaces.csproj" />
<PackageReference Include="ServiceStack.Text" Version="$(Version)" />
<PackageReference Include="log4net" Version="2.0.12" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net472' ">
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
</ItemGroup>
</Project>