Skip to content

Commit

Permalink
Merge pull request #26 from jjm-one/develop
Browse files Browse the repository at this point in the history
fixes *.csproj files & co
  • Loading branch information
jonas-merkle authored Jun 6, 2023
2 parents 836c84d + e359ea1 commit b7d0e77
Show file tree
Hide file tree
Showing 8 changed files with 505 additions and 61 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = Serilog.Sinks.SlackWebHook
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.4.2
PROJECT_NUMBER = 2.0.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,31 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7</TargetFramework>
<IsPackable>false</IsPackable>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Authors>Jonas Merkle [JJM]</Authors>
<Description>A example for the basic Slack Sink for the Serilog framwork.</Description>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>2.0.0</Version>
<Authors>Jonas Merkle [JJM] </Authors>
<Copyright>© by Jonas Merkle [JJM], 2023.</Copyright>
<RepositoryUrl>https://github.com/jjm-one/jjm.one.Serilog.Sinks.SlackWebHook</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<RootNamespace>jm.one.Serilog.Sinks.SlackWebHook.Example</RootNamespace>
<Title>jm.one.Serilog.Sinks.SlackWebHook.Example</Title>
<Description>A basic Slack Sink for the Serilog framwork. (Example)</Description>
<PackageTags>serilog, serilog-sink, slack, logging, csharp, example</PackageTags>
<PackageProjectUrl>https://github.com/jjm-one/jjm.one.Serilog.Sinks.SlackWebHook</PackageProjectUrl>
<AssemblyName>jjm.one.Serilog.Sinks.SlackWebHook.Example</AssemblyName>
<RootNamespace>jjm.one.Serilog.Sinks.SlackWebHook.Example</RootNamespace>
<Version>1.4.2</Version>
<OutputType>Exe</OutputType>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/jjm-one/jjm.one.Serilog.Sinks.SlackWebHook</RepositoryUrl>
<IsPackable>false</IsPackable>
<IsTestProject>false</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Serilog" Version="2.12.0" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<LangVersion>latestmajor</LangVersion>
<DocumentationFile>./jjm.one.MiscUtilFunctions.Tests.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<LangVersion>latestmajor</LangVersion>
<DocumentationFile>./jjm.one.MiscUtilFunctions.Tests.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<PackageReference Include="Serilog" Version="2.12.0" />
</ItemGroup>

<ItemGroup>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7</TargetFramework>
<IsPackable>false</IsPackable>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Authors>Jonas Merkle [JJM]</Authors>
<Description>Unit Tests for a basic Slack Sink for the Serilog framwork.</Description>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>2.0.0</Version>
<Authors>Jonas Merkle [JJM] </Authors>
<Copyright>© by Jonas Merkle [JJM], 2023.</Copyright>
<RepositoryUrl>https://github.com/jjm-one/jjm.one.Serilog.Sinks.SlackWebHook</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<RootNamespace>jm.one.Serilog.Sinks.SlackWebHook.Tests</RootNamespace>
<Title>jm.one.Serilog.Sinks.SlackWebHook.Tests</Title>
<Description>A basic Slack Sink for the Serilog framwork. (Unit-Tests)</Description>
<PackageTags>serilog, serilog-sink, slack, logging, csharp, unit-tests</PackageTags>
<PackageProjectUrl>https://github.com/jjm-one/jjm.one.Serilog.Sinks.SlackWebHook</PackageProjectUrl>
<AssemblyName>jjm.one.Serilog.Sinks.SlackWebHook.Tests</AssemblyName>
<RootNamespace>jjm.one.Serilog.Sinks.SlackWebHook.Tests</RootNamespace>
<Version>1.4.2</Version>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/jjm-one/jjm.one.Serilog.Sinks.SlackWebHook</RepositoryUrl>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<LangVersion>latestmajor</LangVersion>
<DocumentationFile>./jjm.one.MiscUtilFunctions.Tests.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<LangVersion>latestmajor</LangVersion>
<DocumentationFile>./jjm.one.MiscUtilFunctions.Tests.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
Expand All @@ -27,13 +38,6 @@
<PackageReference Include="Slack.Webhooks" Version="1.1.5" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\jjm.one.Serilog.Sinks.SlackWebHook\jjm.one.Serilog.Sinks.SlackWebHook.csproj" />
</ItemGroup>
Expand Down
Loading

0 comments on commit b7d0e77

Please sign in to comment.