-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.json
More file actions
47 lines (42 loc) · 1.02 KB
/
config.json
File metadata and controls
47 lines (42 loc) · 1.02 KB
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
{
"build": {
"solution": "app/Please.sln"
},
"test": {
"dll": "app/Tests/bin/Debug/Tests.dll",
"output": "output/test",
"results": "output/test/results.xml"
},
"bump": {
"files": [
"app/Library/Properties/AssemblyInfo.cs",
"app/Please/Properties/AssemblyInfo.cs",
"app/Tests/Properties/AssemblyInfo.cs"
]
},
"release": {
"nuspec": "app/Please/Please.nuspec",
"nupkgPattern": "Please.?.?.?.nupkg",
"tools": [
"app/Please/bin/Release/please.exe",
"app/Please/bin/Release/Library.dll"
],
"output": {
"prep": "output/release/prep",
"pack": "output/release/pack"
}
},
"packages": {
"configs": [
"app/Library/packages.config",
"app/Please/packages.config",
"app/Tests/packages.config",
"packages/packages.config"
]
},
"tools": {
"nuget": "packages/NuGet.CommandLine.2.8.1/tools/NuGet.exe",
"nunit": "packages/NUnit.Runners.2.6.3/tools/nunit-console.exe",
"please": "packages/please.exe"
}
}