-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.settings.json
41 lines (41 loc) · 1.02 KB
/
build.settings.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
{
"version": {
"VersionFile": "./build.version.json",
"AssemblyInfoFile": "",
"LoadFrom": "versionfile",
"AutoIncrementVersion": false
},
"build": {
"BuildType": "dotnetcore",
"SourcePath": "./src",
"SolutionFileSpec": "./*.sln",
"ArtifactsPath": "./artifacts/packages",
"TreatWarningsAsErrors": false,
"CopyNugetPackagesToArtificatsPath": true
},
"xamarin": {
"EnableXamarinIOS": false,
"MacAgentIPAddress": "",
"MacAgentUserName": "",
"MacAgentUserPassword": ""
},
"test": {
"SourcePath": "./tests",
"ResultsPath": "./artifacts/tests",
"FileSpec": "*.csproj",
"Framework": "DotNetCore"
},
"nuget": {
"BuildType": "dotnetcore",
"FeedUrl": "https://api.nuget.org/v3/index.json",
"FeedAPIKey": "NUGETAPIKEY",
"ArtifactsPath": "./artifacts/packages",
"NuspecPath": "./nuspec",
"UpdateVersion": true,
"UpdateLibraryDependencies": false,
"VersionDependencyForLibrary": "greaterthanorequal",
"LibraryNamespaceBase": "",
"LibraryMinVersionDependency": "",
"IncludeSymbols": true
}
}