forked from DotNetKoans/DotNetKoans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
executable file
·55 lines (55 loc) · 1.16 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"version": "1.0.0-*",
"description": "A set of Koans to teach the C# language on .NET Core.",
"testRunner": "xunit",
"packOptions": {
"owners": [
"Bobby Johnson"
],
"iconUrl": "",
"tags": [
"C#",
"Koans",
"Learning"
],
"licenseUrl": "https://github.com/NotMyself/DotNetCoreKoans/blob/master/LICENSE",
"requireLicenseAcceptance": false,
"repository": {
"type": "git",
"url": "https://github.com/NotMyself/DotNetCoreKoans"
}
},
"buildOptions": {
"debugType": "portable",
"include": [
"xunit.runner.json"
],
"emitEntryPoint": true,
"nowarn": [
"CS0162",
"CS0168",
"CS0184",
"CS0219"
]
},
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"Microsoft.DotNet.Cli.Utils": "1.0.0-*",
"dotnet-test-xunit": "2.2.0-*",
"xunit": "2.2.0-*"
},
"tools": {
"Microsoft.DotNet.Watcher.Tools": "1.0.0-*"
},
"frameworks": {
"netcoreapp1.0": {
"imports": "dnxcore50",
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
}
}
}
}
}