-
-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathExceptionless.Log4net.csproj
More file actions
44 lines (36 loc) · 1.69 KB
/
Exceptionless.Log4net.csproj
File metadata and controls
44 lines (36 loc) · 1.69 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
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\build\common.props" />
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT' ">
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Label="Package">
<PackageId>Exceptionless.Log4net</PackageId>
<AssemblyName>Exceptionless.Log4net</AssemblyName>
<AssemblyTitle>Log4net appender that sends log entries to Exceptionless.</AssemblyTitle>
<Description>Log4net appender that sends log entries to Exceptionless. $(Description)</Description>
<PackageTags>$(PackageTags);Log4net;Appender</PackageTags>
</PropertyGroup>
<ItemGroup Label="Package">
<None Include="readme.txt" pack="true" PackagePath="." />
</ItemGroup>
<ItemGroup Label="Project References">
<ProjectReference Include="..\..\Exceptionless\Exceptionless.csproj" />
</ItemGroup>
<ItemGroup Label="Package References">
<PackageReference Include="log4net" Version="3.1.0" />
</ItemGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' " Label="Build">
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Build">
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Framework References">
<Reference Include="System.Configuration" />
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
</Project>