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
25 lines (25 loc) · 1.1 KB
/
ServiceStack.Logging.Log4Net.csproj
File metadata and controls
25 lines (25 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ServiceStack.Logging.Log4Net</PackageId>
<AssemblyName>ServiceStack.Logging.Log4Net</AssemblyName>
<TargetFrameworks>netstandard2.0;net45</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.8" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.0" />
</ItemGroup>
</Project>