Skip to content

Commit 2ea80f6

Browse files
authored
Merge pull request #340 from kbrooks/dotnet-core
Fixing project refs so tests build on dotnet core
2 parents 49d0850 + d4315f9 commit 2ea80f6

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

global.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"projects": [
3-
"tests/CommandLine.Tests",
4-
"src/CommandLine"
3+
"src",
4+
"tests"
55
],
66
"sdk": {
77
"version": "1.0.0-preview2-003121"
88
}
9-
}
9+
}

tests/CommandLine.Tests/project.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
"dependencies": {
66
"xunit": "2.1.0",
7-
"CommandLine": "2.0.275"
7+
"CommandLine": {
8+
"target": "project"
9+
}
810
},
911

1012
"testRunner": "xunit",

0 commit comments

Comments
 (0)