Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Merge pull request #16 from sirkirby/develop
Browse files Browse the repository at this point in the history
build config and doc update
  • Loading branch information
sirkirby authored Jan 16, 2018
2 parents 7adab8d + d311f4e commit c142668
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet build",
"type": "shell",
"group": "build",
"presentation": {
"reveal": "always"
},
"problemMatcher": "$msCompile"
}
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All log events are sent to a custom event grid topic as an HTTP Post. For more information on Event Grid, see https://docs.microsoft.com/en-us/azure/event-grid/

[![NuGet](https://img.shields.io/nuget/v/Serilog.Sinks.EventGrid.svg)](https://www.nuget.org/packages/Serilog.Sinks.EventGrid/) [![Build status](https://ci.appveyor.com/api/projects/status/uxmd0qanuk1eltrg/branch/master?svg=true)](https://ci.appveyor.com/project/Authenticom/serilog-sinks-eventgrid/branch/master)
[![NuGet](https://img.shields.io/nuget/v/Serilog.Sinks.EventGrid.svg)](https://www.nuget.org/packages/Serilog.Sinks.EventGrid/) [![Build status](https://ci.appveyor.com/api/projects/status/o0nwqlc7ebkdw5g6/branch/master?svg=true)](https://ci.appveyor.com/project/Authenticom/serilog-sinks-eventgrid/branch/master) [![Waffle.io - Columns and their card count](https://badge.waffle.io/sirkirby/serilog-sinks-eventgrid.svg?columns=all)](https://waffle.io/sirkirby/serilog-sinks-eventgrid)

## Targets

Expand Down
36 changes: 36 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
skip_tags: true
image: Visual Studio 2017
configuration:
- Debug
- Release
before_build:
- cmd: nuget restore serilog-sinks-eventgrid.sln
build:
project: serilog-sinks-eventgrid.sln
publish_nuget: true
publish_nuget_symbols: true
parallel: true
verbosity: minimal
deploy:
- provider: NuGet
server: https://www.myget.org/F/sirkirby/api/v2/package
api_key:
secure: +FYD4lCyVQxiL9+UPw3bpo2bc7osbMy7tIahYeCoZN4+XgaBIFakxiI4vnjOZUFR
skip_symbols: true
on:
branch: master
Configuration: Release
- provider: GitHub
tag: $(appveyor_build_version)
release: $(appveyor_build_version) release
description: $(APPVEYOR_REPO_COMMIT_MESSAGE)
auth_token:
secure: 7jJt8R5qmdaczjCT8wSlaiosdwhKmn7tSsBYUAvgHHpRPuwE0jx9rnrvdQuUSTLv
artifact: /.*\.nupkg/
force_update: true
on:
branch: master
Configuration: Release

0 comments on commit c142668

Please sign in to comment.