Skip to content

Commit

Permalink
Merge pull request #20 from jonas-merkle/develop
Browse files Browse the repository at this point in the history
.net6
  • Loading branch information
jonas-merkle authored Nov 16, 2021
2 parents c9fc21f + 0f22238 commit d5d35bb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ You can get the latest version of this software as a nuget package form [nuget.o

### Slack related

- [Slack.Webhooks](https://github.com/mrb0nj/Slack.Webhooks) [Version 1.1.4](https://github.com/mrb0nj/Slack.Webhooks/releases/tag/v1.1.4)
- [Slack.Webhooks](https://github.com/mrb0nj/Slack.Webhooks) [Version 1.1.5](https://github.com/mrb0nj/Slack.Webhooks/releases/tag/v1.1.5)

## Usage

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6</TargetFramework>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Authors>Jonas Merkle [JJM]</Authors>
<Description>A example for the basic Slack Sink for the Serilog framwork.</Description>
Expand All @@ -13,7 +13,7 @@
<PackageProjectUrl>https://github.com/jonas-merkle/serilog-sinks-slackwebhook</PackageProjectUrl>
<AssemblyName>Serilog.Sinks.SlackWebHook.Example</AssemblyName>
<RootNamespace>Serilog.Sinks.SlackWebHook.Example</RootNamespace>
<Version>1.2.0</Version>
<Version>1.3.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6</TargetFramework>
<IsPackable>false</IsPackable>
<Authors>Jonas Merkle [JJM]</Authors>
<Description>Unit Tests for a basic Slack Sink for the Serilog framwork.</Description>
Expand All @@ -11,18 +11,18 @@
<RepositoryUrl>https://github.com/jonas-merkle/serilog-sinks-slackwebhook</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>serilog, serilog-sink, slack, logging, csharp, unit-tests</PackageTags>
<Version>1.2.0</Version>
<Version>1.3.0</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0">
<PackageReference Include="nunit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Slack.Webhooks" Version="1.1.4" />
<PackageReference Include="Slack.Webhooks" Version="1.1.5" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.1;netstandard2.0;</TargetFrameworks>
<TargetFrameworks>netstandard2.1;netstandard2.0;net5;net6</TargetFrameworks>
<Authors>Jonas Merkle [JJM]</Authors>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<RepositoryType>GitHub</RepositoryType>
Expand All @@ -15,17 +15,17 @@
<NeutralLanguage></NeutralLanguage>
<SignAssembly>false</SignAssembly>
<PackageId>Serilog.Sinks.SlackWebHook</PackageId>
<Version>1.2.0</Version>
<Version>1.3.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.1|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6|AnyCPU'">
<WarningLevel>5</WarningLevel>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.Sinks.PeriodicBatching" Version="2.3.0" />
<PackageReference Include="Slack.Webhooks" Version="1.1.4" />
<PackageReference Include="Slack.Webhooks" Version="1.1.5" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit d5d35bb

Please sign in to comment.