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