Skip to content

Commit 3883cb2

Browse files
committed
Upgraded to .Net Core 1.0
1 parent 2a11581 commit 3883cb2

File tree

4 files changed

+51
-51
lines changed

4 files changed

+51
-51
lines changed

src/NuGet.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<configuration>
44
<packageSources>
5+
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
56
<add key="myget.org xunit" value="https://www.myget.org/F/xunit/api/v3/index.json" />
67
<add key="myget.org dotnet" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
7-
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
88
</packageSources>
99
</configuration>
Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,42 @@
11
{
2-
"version": "1.0.0-*",
3-
"testRunner": "xunit",
2+
"version": "1.0.0-*",
3+
"testRunner": "xunit",
44

5-
"dependencies": {
6-
"Shouldly": "2.8.0",
7-
"dotnet-test-xunit": "1.0.0-rc3-build10019",
8-
"xunit.core": "2.1.0",
9-
"TestStack.BDDfy": {
10-
"target": "project"
11-
}
5+
"dependencies": {
6+
"Shouldly": "2.8.0",
7+
"TestStack.BDDfy": {
8+
"target": "project"
129
},
10+
"Microsoft.NETCore.Platforms": "1.0.1",
11+
"xunit.core": "2.2.0-beta2-build3300",
12+
"dotnet-test-xunit": "2.2.0-preview2-build1029"
13+
},
1314

14-
"frameworks": {
15-
//"netcoreapp1.0": {
16-
// "dependencies": {
17-
// "Microsoft.NETCore.App": {
18-
// "type": "platform",
19-
// "version": "1.0.0-rc2-3002702"
20-
// }
21-
// },
22-
// "imports": [
23-
// "dnxcore50",
24-
// "portable-net45+win8"
25-
// ]
26-
//},
27-
"net46": {
28-
"dependencies": {
29-
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
30-
"NSubstitute": "1.10.0"
31-
},
32-
"buildOptions": {
33-
"define": [
34-
"Approvals",
35-
"Culture",
36-
"NSubstitute"
37-
]
38-
}
39-
}
15+
"runtimes": {
16+
"win10-x64": {}
17+
},
18+
19+
"frameworks": {
20+
"netcoreapp1.0": {
21+
"dependencies": {
22+
"Microsoft.NETCore.App": "1.0.0"
23+
},
24+
"imports": [
25+
"dnxcore50",
26+
"portable-net45+win8"
27+
]
28+
},
29+
"net46": {
30+
"dependencies": {
31+
"NSubstitute": "1.10.0"
32+
},
33+
"buildOptions": {
34+
"define": [
35+
"Approvals",
36+
"Culture",
37+
"NSubstitute"
38+
]
39+
}
4040
}
41+
}
4142
}

src/TestStack.BDDfy/project.json

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
"buildOptions": {
77
"embed": "**/Scripts/*.*"
88
},
9-
"dependencies": {
10-
11-
},
9+
"dependencies": {
10+
"NETStandard.Library": "1.6.0",
11+
"Newtonsoft.Json": "9.0.1"
12+
},
1213

1314
"frameworks": {
1415
"net40": {
@@ -28,17 +29,15 @@
2829
},
2930
"netstandard1.5": {
3031
"imports": "dnxcore50",
31-
"dependencies": {
32-
"NETStandard.Library": "1.5.0-rc2-24027",
33-
"Newtonsoft.Json": "9.0.1-beta1",
34-
"System.Diagnostics.StackTrace": "4.0.1-rc2-24027",
35-
"System.Linq.Expressions": "4.0.11-rc2-24027",
36-
"System.Reflection": "4.1.0-rc2-24027",
37-
"System.Reflection.TypeExtensions": "4.1.0-rc2-24027",
38-
"System.Runtime.Extensions": "4.1.0-rc2-24027",
39-
"System.Runtime.Loader": "4.0.0-rc3-23924",
40-
"System.Threading.ThreadPool": "4.0.10-rc2-24027"
41-
}
32+
"dependencies": {
33+
"System.Reflection.TypeExtensions": "4.1.0",
34+
"System.Runtime.Loader": "4.0.0",
35+
"System.Threading.ThreadPool": "4.0.10",
36+
"System.Linq.Expressions": "4.1.0",
37+
"System.Reflection": "4.1.0",
38+
"System.Runtime.Extensions": "4.1.0",
39+
"System.Diagnostics.StackTrace": "4.0.1"
40+
}
4241
}
4342
}
4443
}

src/global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"projects": [ "src" ],
3-
"sdk": { "version": "1.0.0-preview1-002702" }
3+
"sdk": { "version": "1.0.0-preview2-003121" }
44
}

0 commit comments

Comments
 (0)