-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
47 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/> | ||
</startup> | ||
</configuration> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="NLog" version="4.5.0" targetFramework="net45" /> | ||
<package id="NLog" version="4.7.0" targetFramework="net48" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,29 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net35;net40;net45;netstandard2.0</TargetFrameworks> | ||
<DisableImplicitFrameworkReferences Condition=" '$(TargetFramework)' != 'netstandard2.0' ">true</DisableImplicitFrameworkReferences> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
|
||
<Description>NLog Target that emits the log entries to a fluentd node</Description> | ||
<Authors>Moriyoshi Koizumi</Authors> | ||
<Authors>Moriyoshi Koizumi, Jarred Capellman</Authors> | ||
<CurrentYear>$([System.DateTime]::Now.ToString(yyyy))</CurrentYear> | ||
<Copyright>Copyright (c) $(CurrentYear) - Moriyoshi Koizumi</Copyright> | ||
<Copyright>Copyright (c) 2020 - Moriyoshi Koizumi and Jarred Capellman</Copyright> | ||
|
||
<Version>1.0.6.0</Version> | ||
|
||
<Version>1.0.5.0</Version> | ||
|
||
<PackageTags>NLog;fluentd;log;logging</PackageTags> | ||
<PackageIconUrl>http://nlog-project.org/N.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/fluent/NLog.Targets.Fluentd</PackageProjectUrl> | ||
<PackageProjectUrl>https://github.com/jcapellman/NLog.Targets.Fluentd</PackageProjectUrl> | ||
<PackageLicenseUrl>https://raw.githubusercontent.com/fluent/NLog.Targets.Fluentd/master/LICENSE.txt</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>git://github.com/fluent/NLog.Targets.Fluentd</RepositoryUrl> | ||
<RepositoryUrl>git://github.com/jcapellman/NLog.Targets.Fluentd</RepositoryUrl> | ||
<PackageReleaseNotes>Add exclude properties property</PackageReleaseNotes> | ||
<PackageId>NLog.Targets.Fluentd.NetStandard</PackageId> | ||
<Product>NLog.Targets.Fluentd.NetStandard</Product> | ||
<Company>Moriyoshi Koizumi, Jarred Capellman</Company> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NLog" Version="4.5.0" /> | ||
<PackageReference Include="MsgPack.Cli" Version="0.9.2" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' != 'netstandard2.0' "> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<PackageReference Include="MsgPack.Cli" Version="1.0.1" /> | ||
<PackageReference Include="NLog" Version="4.7.0" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |