Skip to content

Commit

Permalink
Update to latest Exceptionless. Add netstandard2.0 target.
Browse files Browse the repository at this point in the history
  • Loading branch information
ejsmith committed Oct 21, 2017
1 parent 540e2d6 commit bfe8ab2
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"taskName": "build",
"command": "dotnet build",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
"problemMatcher": "$msCompile"
}
]
}
6 changes: 6 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<packageSources>
<add key="Exceptionless" value="https://www.myget.org/F/exceptionless/api/v3/index.json" />
</packageSources>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>Exceptionless sink for Serilog</Description>
<VersionPrefix>3.0.4</VersionPrefix>
<Authors>Serilog Contributors</Authors>
<TargetFrameworks>net45;netstandard1.2</TargetFrameworks>
<TargetFrameworks>net45;netstandard1.2;netstandard2.0</TargetFrameworks>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down Expand Up @@ -34,7 +34,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Exceptionless.Signed" Version="4.0.1951" />
<PackageReference Include="Exceptionless.Signed" Version="4.1.1967-pre" />
<PackageReference Include="Serilog" Version="2.5.0" />
</ItemGroup>

Expand Down

0 comments on commit bfe8ab2

Please sign in to comment.