Skip to content

Commit 608b312

Browse files
committed
Fix issue when running tests on full framework
1 parent e273b9a commit 608b312

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

NuGet.config

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

test/Serilog.Settings.Configuration.Tests/project.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,17 @@
33
"dependencies": {
44
"Serilog.Settings.Configuration": { "target": "project" },
55
"xunit": "2.1.0",
6-
"dotnet-test-xunit": "1.0.0-rc2-build10015"
6+
"dotnet-test-xunit": "1.0.0-rc3-build10019"
77
},
88
"buildOptions": {
99
"keyFile": "../../assets/Serilog.snk"
1010
},
1111
"frameworks": {
12-
"net4.6": { },
12+
"net4.6": {
13+
"dependencies": {
14+
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027"
15+
}
16+
},
1317
"netcoreapp1.0": {
1418
"dependencies": {
1519
"Microsoft.NETCore.App": {
@@ -24,4 +28,3 @@
2428
}
2529
}
2630
}
27-

0 commit comments

Comments
 (0)