Skip to content

Commit 5dbd448

Browse files
authored
Merge pull request #7 from serilog/dev
Added .Net Standard 2.0 Support
2 parents 540e2d6 + 764dd41 commit 5dbd448

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
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/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
using System.Reflection;
33
using System.Runtime.CompilerServices;
44

5-
[assembly: AssemblyVersion("3.0.0.0")]
5+
[assembly: AssemblyVersion("3.1.0.0")]
66

77
[assembly: CLSCompliant(true)]

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<Description>Exceptionless sink for Serilog</Description>
5-
<VersionPrefix>3.0.4</VersionPrefix>
5+
<VersionPrefix>3.1.0</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,13 +34,12 @@
3434
</ItemGroup>
3535

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

4141
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
4242
<Reference Include="System" />
4343
<Reference Include="Microsoft.CSharp" />
4444
</ItemGroup>
45-
46-
</Project>
45+
</Project>

0 commit comments

Comments
 (0)