Skip to content

Commit

Permalink
Merge pull request serilog#837 from serilog/dev
Browse files Browse the repository at this point in the history
Release 2.2.1
  • Loading branch information
nblumhardt authored Aug 29, 2016
2 parents 75442ed + 7560d2b commit f6b69e9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
7 changes: 6 additions & 1 deletion src/Serilog/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.2.0-*",
"version": "2.2.1-*",

"description": "Simple .NET logging with fully-structured events",
"authors": [ "Serilog Contributors" ],
Expand All @@ -22,6 +22,11 @@
"define": [ "REMOTING" ]
}
},
"net4.6": {
"buildOptions": {
"define": [ "ASYNCLOCAL" ]
}
},
"netstandard1.0": {
"dependencies": {
"Microsoft.CSharp": "4.0.1",
Expand Down
6 changes: 4 additions & 2 deletions test/Serilog.Tests/Context/LogContextTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
using Serilog.Events;
using Serilog.Core.Enrichers;
using Serilog.Tests.Support;
#if REMOTING
#if APPDOMAIN
using System;
using System.IO;
#endif
#if REMOTING
using System.Runtime.Remoting.Messaging;
#endif
using System.Threading;
Expand Down Expand Up @@ -155,7 +157,7 @@ public void DoesNotPreventCrossDomainCalls()
#endif
}

#if REMOTING
#if REMOTING || APPDOMAIN
public class RemotelyCallable : MarshalByRefObject
{
public bool IsCallable()
Expand Down
5 changes: 5 additions & 0 deletions test/Serilog.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
"define": [ "APPDOMAIN", "REMOTING", "GETCURRENTMETHOD" ]
}
},
"net4.6": {
"buildOptions": {
"define": [ "ASYNCLOCAL", "APPDOMAIN", "GETCURRENTMETHOD" ]
}
},
"netcoreapp1.0": {
"define": [ "ASYNCLOCAL" ],
"dependencies": {
Expand Down

0 comments on commit f6b69e9

Please sign in to comment.