forked from logtail/logtail-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Logtail.csproj
31 lines (28 loc) · 1.16 KB
/
Logtail.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Logtail</PackageId>
<Version>0.1.8</Version>
<Authors>Simon Rozsival</Authors>
<Company>Better Stack</Company>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://logtail.com</PackageProjectUrl>
<RepositoryUrl>https://github.com/logtail/logtail-dotnet</RepositoryUrl>
<RespositoryType>git</RespositoryType>
<Tags>logging logtail livetail nlog</Tags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="NLog" Version="4.7.11" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)"/>
<None Include="README.md" Pack="true" PackagePath="$(PackageReadmeFile)"/>
<None Include="icon.png" Pack="true" Visible="false" PackagePath="$(PackageIconFile)" />
</ItemGroup>
</Project>