Skip to content
This repository was archived by the owner on Nov 7, 2019. It is now read-only.

Commit 0f0f9ed

Browse files
erik-inkapoolstajs
authored andcommitted
Fix project.json framework targets (#26)
1 parent d469ab8 commit 0f0f9ed

File tree

2 files changed

+29
-24
lines changed

2 files changed

+29
-24
lines changed

samples/VS2015/SpecFlow 2.1.0/net461/Sample.Website.Tests/project.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
"Sample.Website": "1.0.0-*",
1212
"SpecFlow": "2.1.0",
1313
"xunit": "2.2.0-beta2-build3300",
14-
"dotnet-test-xunit": "2.2.0-*"
14+
"dotnet-test-xunit": "2.2.0-*",
15+
"SpecFlow.NetCore": "1.0.0-rc3"
1516
},
1617

1718
"tools": {
18-
"SpecFlow.NetCore": "1.0.0-rc2"
19+
"SpecFlow.NetCore": "1.0.0-rc3"
1920
},
2021

2122
"testRunner": "xunit",

src/SpecFlow.NetCore/project.json

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,32 @@
11
{
2-
"version": "1.0.0-rc2",
3-
"description": "Generate tests from SpecFlow feature files inside ASP.NET Core projects (.xproj's).",
4-
"authors": [ "stajs" ],
2+
"version": "1.0.0-rc3",
3+
"description": "Generate tests from SpecFlow feature files inside ASP.NET Core projects (.xproj's).",
4+
"authors": [ "stajs" ],
55

6-
"packOptions": {
7-
"tags": [ "SpecFlow", ".NET Core", "ASP.NET Core", "ASP.NET 5", "Visual Studio 2015", "xproj" ],
8-
"projectUrl": "https://github.com/stajs/SpecFlow.NetCore",
9-
"licenseUrl": "https://github.com/stajs/SpecFlow.NetCore/blob/master/LICENSE"
10-
},
6+
"packOptions": {
7+
"tags": [ "SpecFlow", ".NET Core", "ASP.NET Core", "ASP.NET 5", "Visual Studio 2015", "xproj" ],
8+
"projectUrl": "https://github.com/stajs/SpecFlow.NetCore",
9+
"licenseUrl": "https://github.com/stajs/SpecFlow.NetCore/blob/master/LICENSE"
10+
},
1111

12-
"buildOptions": {
13-
"emitEntryPoint": true,
14-
"outputName": "dotnet-SpecFlow.NetCore"
15-
},
12+
"buildOptions": {
13+
"emitEntryPoint": true,
14+
"outputName": "dotnet-SpecFlow.NetCore"
15+
},
1616

17-
"dependencies": {
18-
"Microsoft.NETCore.App": {
19-
"type": "platform",
20-
"version": "1.0.0"
21-
},
22-
"System.Xml.XPath.XDocument": "4.0.1"
23-
},
17+
"dependencies": {
18+
"System.Xml.XPath.XDocument": "4.0.1"
19+
},
2420

25-
"frameworks": {
26-
"netcoreapp1.0": {}
27-
}
21+
"frameworks": {
22+
"netcoreapp1.0": {
23+
"dependencies": {
24+
"Microsoft.NETCore.App": {
25+
"type": "platform",
26+
"version": "1.0.0"
27+
}
28+
}
29+
},
30+
"net46": {}
31+
}
2832
}

0 commit comments

Comments
 (0)