Skip to content

Commit 7e88e60

Browse files
committed
Moved project to Serilog org
1 parent a62945e commit 7e88e60

File tree

5 files changed

+25
-9
lines changed

5 files changed

+25
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Serilog.Extensions.Logging.File [![NuGet Pre Release](https://img.shields.io/nuget/vpre/Serilog.Extensions.Logging.File.svg)](https://nuget.org/packages/Serilog.Extensions.Logging.File) [![Join the chat at https://gitter.im/serilog/serilog](https://img.shields.io/gitter/room/serilog/serilog.svg)](https://gitter.im/serilog/serilog) [![Build status](https://ci.appveyor.com/api/projects/status/vcmt0kn7x2wmjvl0?svg=true)](https://ci.appveyor.com/project/NicholasBlumhardt/serilog-extensions-logging-file)
1+
# Serilog.Extensions.Logging.File [![NuGet Pre Release](https://img.shields.io/nuget/vpre/Serilog.Extensions.Logging.File.svg)](https://nuget.org/packages/Serilog.Extensions.Logging.File) [![Join the chat at https://gitter.im/serilog/serilog](https://img.shields.io/gitter/room/serilog/serilog.svg)](https://gitter.im/serilog/serilog) [![Build status](https://ci.appveyor.com/api/projects/status/rdff6bp9oeqfxif7?svg=true)](https://ci.appveyor.com/project/serilog/serilog-extensions-logging-file)
22

33
This package makes it a one-liner - `loggerFactory.AddFile()` - to configure top-quality file logging for ASP.NET Core apps.
44

appveyor.yml

+16-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,25 @@ install:
1010
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
1111
build_script:
1212
- ps: ./Build.ps1
13-
test: off
13+
test_script:
14+
- nuget.exe install OpenCover -ExcludeVersion
15+
- OpenCover\tools\OpenCover.Console.exe -register:user -filter:"+[Serilog]*" -target:"dotnet.exe" "-targetargs:test test\Serilog.Tests" -returntargetcode -hideskipped:All -output:coverage.xml
16+
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
17+
- pip install codecov
18+
- codecov -f "coverage.xml"
1419
artifacts:
15-
- path: artifacts/Serilog.Extensions.Logging.File.*.nupkg
20+
- path: artifacts/Serilog.*.nupkg
1621
deploy:
1722
- provider: NuGet
1823
api_key:
19-
secure: /Dm+EI0E1vCa+rZfYkluSnk7iSnAFKNOcEpreQrG88uYqCm//dKpY5vwqb1EJm3j
24+
secure: nvZ/z+pMS91b3kG4DgfES5AcmwwGoBYQxr9kp4XiJHj25SAlgdIxFx++1N0lFH2x
2025
skip_symbols: true
2126
on:
22-
branch: /^(dev|master)$/
23-
27+
branch: /^(master|dev)$/
28+
- provider: GitHub
29+
auth_token:
30+
secure: p4LpVhBKxGS5WqucHxFQ5c7C8cP74kbNB0Z8k9Oxx/PMaDQ1+ibmoexNqVU5ZlmX
31+
artifact: /Serilog.*\.nupkg/
32+
tag: v$(appveyor_build_version)
33+
on:
34+
branch: master

assets/Serilog.snk

596 Bytes
Binary file not shown.

src/Serilog.Extensions.Logging.File/project.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
"packOptions": {
88
"tags": [ "asp.net", "core", "logging", "file" ],
9-
"projectUrl": "https://github.com/nblumhardt/serilog-extensions-logging-file",
9+
"projectUrl": "https://github.com/serilog/serilog-extensions-logging-file",
1010
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
11-
"iconUrl": "https://serilog.net/images/serilog-community-nuget.png"
11+
"iconUrl": "http://serilog.net/images/serilog-extension-nuget.png"
1212
},
1313

1414
"dependencies": {
@@ -29,6 +29,7 @@
2929

3030
"buildOptions": {
3131
"warningsAsErrors": true,
32-
"xmlDoc": true
32+
"xmlDoc": true,
33+
"keyFile": "../../assets/Serilog.snk"
3334
}
3435
}

test/Serilog.Extensions.Logging.File.Tests/project.json

+4
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,9 @@
2323
"portable-net45+win8"
2424
]
2525
}
26+
},
27+
28+
"buildOptions": {
29+
"keyFile": "../../assets/Serilog.snk"
2630
}
2731
}

0 commit comments

Comments
 (0)