Skip to content

Commit bfe8ab2

Browse files
committed
Update to latest Exceptionless. Add netstandard2.0 target.
1 parent 540e2d6 commit bfe8ab2

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

.vscode/tasks.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"taskName": "build",
8+
"command": "dotnet build",
9+
"type": "shell",
10+
"group": {
11+
"kind": "build",
12+
"isDefault": true
13+
},
14+
"presentation": {
15+
"reveal": "always"
16+
},
17+
"problemMatcher": "$msCompile"
18+
}
19+
]
20+
}

NuGet.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
<packageSources>
4+
<add key="Exceptionless" value="https://www.myget.org/F/exceptionless/api/v3/index.json" />
5+
</packageSources>
6+
</configuration>

src/Serilog.Sinks.Exceptionless/Serilog.Sinks.Exceptionless.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>Exceptionless sink for Serilog</Description>
55
<VersionPrefix>3.0.4</VersionPrefix>
66
<Authors>Serilog Contributors</Authors>
7-
<TargetFrameworks>net45;netstandard1.2</TargetFrameworks>
7+
<TargetFrameworks>net45;netstandard1.2;netstandard2.0</TargetFrameworks>
88
<NoWarn>$(NoWarn);CS1591</NoWarn>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -34,7 +34,7 @@
3434
</ItemGroup>
3535

3636
<ItemGroup>
37-
<PackageReference Include="Exceptionless.Signed" Version="4.0.1951" />
37+
<PackageReference Include="Exceptionless.Signed" Version="4.1.1967-pre" />
3838
<PackageReference Include="Serilog" Version="2.5.0" />
3939
</ItemGroup>
4040

0 commit comments

Comments
 (0)