Skip to content

Commit

Permalink
Clean up on targets. Expanded to 5.4 on some sinks. Need to set a bas…
Browse files Browse the repository at this point in the history
…eline for core sinks in relation to target frameworks.
  • Loading branch information
merbla committed Jan 21, 2016
1 parent 9f1bad4 commit db11f19
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
9 changes: 8 additions & 1 deletion src/Serilog.Sinks.IOFile/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@
"keyFile": "../../assets/Serilog.snk"
},
"frameworks": {
"net45": {
"net45": {
},
"dotnet5.1": {
"dependencies": {
"System.IO": "4.0.11-beta-23516",
"System.IO.FileSystem": "4.0.0",
"System.IO.FileSystem.Primitives": "4.0.0"
}
},
"dotnet5.4": {
"dependencies": {
Expand Down
12 changes: 10 additions & 2 deletions src/Serilog.Sinks.PeriodicBatching/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"frameworks": {
"net45": {
"compilationOptions": {
"compilationOptions": {
"define": [ "PERIODIC_BATCHING" ]
},
"frameworkAssemblies": {
Expand All @@ -28,6 +28,14 @@
"dependencies": {
"System.Collections.Concurrent": "4.0.11-beta-23516"
}
}
},
"dotnet5.4": {
"compilationOptions": {
"define": [ "PERIODIC_BATCHING", "NO_TIMER", "NO_APPDOMAIN" ]
},
"dependencies": {
"System.Collections.Concurrent": "4.0.11-beta-23516"
}
}
}
}
2 changes: 1 addition & 1 deletion src/Serilog.Sinks.RollingFile/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"frameworks": {
"net45": {
},
},
"dotnet5.4": {
"dependencies": {
"System.IO": "4.0.11-beta-23516",
Expand Down
5 changes: 5 additions & 0 deletions src/Serilog.Sinks.SystemConsole/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
"dependencies": {
"System.Console": "4.0.0-beta-23516"
}
},
"dotnet5.4": {
"dependencies": {
"System.Console": "4.0.0-beta-23516"
}
}
}
}

0 comments on commit db11f19

Please sign in to comment.