-
Notifications
You must be signed in to change notification settings - Fork 8
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
1 parent
cb31a08
commit 9dcd59f
Showing
11 changed files
with
633 additions
and
652 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,22 +1,24 @@ | ||
version: '{build}' | ||
skip_tags: true | ||
image: Visual Studio 2019 | ||
image: | ||
- Visual Studio 2022 | ||
build_script: | ||
- ps: ./Build.ps1 | ||
- pwsh: ./Build.ps1 | ||
test: off | ||
artifacts: | ||
- path: artifacts/Serilog.*.nupkg | ||
- path: artifacts/Serilog.*.nupkg | ||
- path: artifacts/Serilog.*.snupkg | ||
deploy: | ||
- provider: NuGet | ||
api_key: | ||
secure: K3/810hkTO6rd2AEHVkUQAadjGmDREus9k96QHu6hxrA1/wRTuAJemHMKtVVgIvf | ||
skip_symbols: true | ||
on: | ||
branch: /^(master|dev)$/ | ||
- provider: GitHub | ||
auth_token: | ||
secure: p4LpVhBKxGS5WqucHxFQ5c7C8cP74kbNB0Z8k9Oxx/PMaDQ1+ibmoexNqVU5ZlmX | ||
artifact: /Serilog.*\.nupkg/ | ||
tag: v$(appveyor_build_version) | ||
on: | ||
branch: master | ||
- provider: NuGet | ||
api_key: | ||
secure: sDnchSg4TZIOK7oIUI6BJwFPNENTOZrGNsroGO1hehLJSvlHpFmpTwiX8+bgPD+Q | ||
on: | ||
branch: /^(main|dev)$/ | ||
- provider: GitHub | ||
auth_token: | ||
secure: p4LpVhBKxGS5WqucHxFQ5c7C8cP74kbNB0Z8k9Oxx/PMaDQ1+ibmoexNqVU5ZlmX | ||
artifact: /Serilog.*(\.|\.s)nupkg/ | ||
tag: v$(appveyor_build_version) | ||
on: | ||
branch: main | ||
431 changes: 215 additions & 216 deletions
431
src/Serilog.Sinks.Map/MapLoggerConfigurationExtensions.cs
Large diffs are not rendered by default.
Oops, something went wrong.
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,43 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>A Serilog sink wrapper that dispatches events based on a property value.</Description> | ||
<VersionPrefix>1.0.3</VersionPrefix> | ||
<RootNamespace>Serilog</RootNamespace> | ||
<Authors>Serilog Contributors</Authors> | ||
<Copyright>Copyright © Serilog Contributors</Copyright> | ||
<TargetFrameworks>netstandard1.0;netstandard2.0;net5.0</TargetFrameworks> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<AssemblyOriginatorKeyFile>../../assets/Serilog.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign> | ||
<PackageTags>serilog</PackageTags> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/serilog/serilog-sinks-map</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/serilog/serilog-sinks-map</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<GenerateAssemblyVersionAttribute>true</GenerateAssemblyVersionAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Serilog" Version="2.8.0" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<Description>A Serilog sink wrapper that dispatches events based on a property value.</Description> | ||
<VersionPrefix>2.0.0</VersionPrefix> | ||
<RootNamespace>Serilog</RootNamespace> | ||
<Authors>Serilog Contributors</Authors> | ||
<Copyright>Copyright © Serilog Contributors</Copyright> | ||
<!-- .NET Framework version targeting is frozen at these two TFMs. --> | ||
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT'">net471;net462</TargetFrameworks> | ||
<!-- Policy is to trim TFM-specific builds to `netstandard2.0`, `net6.0`, | ||
all active LTS versions, and optionally the latest RTM version, when releasing new | ||
major Serilog versions. --> | ||
<TargetFrameworks>$(TargetFrameworks);net8.0;net6.0;netstandard2.0</TargetFrameworks> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<AssemblyOriginatorKeyFile>../../assets/Serilog.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign> | ||
<PackageTags>serilog</PackageTags> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/serilog/serilog-sinks-map</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/serilog/serilog-sinks-map</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<GenerateAssemblyVersionAttribute>true</GenerateAssemblyVersionAttribute> | ||
<LangVersion>latest</LangVersion> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\assets\icon.png" Pack="true" Visible="false" PackagePath="" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Serilog" Version="4.0.0"/> | ||
<PackageReference Include="Nullable" Version="1.3.1" PrivateAssets="all" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\assets\icon.png" Pack="true" Visible="false" PackagePath=""/> | ||
<None Include="..\..\README.md" Pack="true" Visible="false" PackagePath=""/> | ||
</ItemGroup> | ||
|
||
</Project> |
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
Oops, something went wrong.