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