-
-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathExceptionless.NLog.csproj
More file actions
43 lines (35 loc) · 1.62 KB
/
Exceptionless.NLog.csproj
File metadata and controls
43 lines (35 loc) · 1.62 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
<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.NLog</PackageId>
<AssemblyName>Exceptionless.NLog</AssemblyName>
<AssemblyTitle>NLog target that sends log entries to Exceptionless.</AssemblyTitle>
<Description>NLog target that sends log entries to Exceptionless. $(Description)</Description>
<PackageTags>$(PackageTags);NLog;Target</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="NLog" Version="6.0.2" />
</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" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
</Project>