-
Notifications
You must be signed in to change notification settings - Fork 25
Updated solution for using .NET 4.5 and Serilog 2.x #34
Conversation
This looks good to me. |
@ahydrax , we originally had this targeting net40 due to a downstream consumer (that we also own). |
@thirkcircus , as I can see here it's a minimum required version. |
fair enough then. 😄 |
Hi @thirkcircus @ahydrax. I still cannot find nuget package for this sink with serilog 2.x.x dependency. |
@esukirno seems not. @thirkcircus do you have an access to nuget package management? |
Sorry, I don't. |
Hi folks, Indeed it does! :-) .. The build pipeline's linked from the README: https://ci.appveyor.com/project/serilog/serilog-sinks-amazonkinesis/branch/master The latest build completed with the following:
The YML build configuration exported from AppVeyor is: version: '{build}'
build_script:
- ps: >-
$version = $env:APPVEYOR_REPO_TAG_NAME
if (-not $version) {
$version = "2.0"
}
./Build.ps1 -majorMinor "$version" -patch "$env:APPVEYOR_BUILD_VERSION" -customLogger "C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
artifacts:
- path: Serilog.*.nupkg
deploy:
- provider: NuGet
api_key:
secure: nvZ/z+pMS91b3kG4DgfES5AcmwwGoBYQxr9kp4XiJHj25SAlgdIxFx++1N0lFH2x
on:
branch: master
appveyor_repo_tag: true I'll remove the last line and check this into master - should get things unblocked. (Ideally we'e move the project to the new build scripts in line with the other Serilog sinks at some point.) |
@nblumhardt thanks! |
Hello there,
This package can be used now with Serilog 2.x versions.