|
1 | 1 | ; The configuration file for Cake.
|
2 | 2 |
|
| 3 | +;------------------------------------------------------------------------------- |
3 | 4 | ; NuGet Download Url
|
4 | 5 | ; This allows the control of where Cake downloads NuGet packages from when
|
5 | 6 | ; using the addin and tool preprocessor directives. This can be useful when
|
|
8 | 9 | ;
|
9 | 10 | ; Default Value
|
10 | 11 | ; https://packages.nuget.org/api/v2
|
| 12 | + |
11 | 13 | ; Environment Variable Name
|
12 | 14 | ; CAKE_NUGET_SOURCE
|
| 15 | + |
13 | 16 | ; ini File Contents
|
14 | 17 | ; [Nuget]
|
15 | 18 | ; Source=http://myfeed/nuget/
|
| 19 | + |
16 | 20 | ; Direct Argument
|
17 | 21 | ; cake.exe --nuget_source=http://myfeed/nuget/
|
18 | 22 |
|
19 | 23 |
|
| 24 | +;------------------------------------------------------------------------------- |
20 | 25 | ; Roslyn NuGet Download Url
|
21 | 26 | ; This allows the control of where Cake downloads the required Roslyn NuGet
|
22 |
| -; packages. This can be useful when it is necessary to work in an offline mode, where direct access to nuget.org is not available. |
| 27 | +; packages. This can be useful when it is necessary to work in an offline mode, |
| 28 | +; where direct access to nuget.org is not available. |
23 | 29 | ;
|
24 | 30 | ; Default Value
|
25 | 31 | ; https://packages.nuget.org/api/v2
|
| 32 | + |
26 | 33 | ; Environment Variable Name
|
27 | 34 | ; CAKE_ROSLYN_NUGETSOURCE
|
| 35 | + |
28 | 36 | ; ini File Contents
|
29 | 37 | ; [Roslyn]
|
30 | 38 | ; NuGetSource=https://mycustomurl
|
| 39 | + |
31 | 40 | ; Direct Argument
|
32 | 41 | ; cake.exe --roslyn_nugetsource=http://mycustomurl
|
33 | 42 |
|
34 | 43 |
|
| 44 | +;------------------------------------------------------------------------------- |
35 | 45 | ; Tools Path
|
36 |
| -; This allows the configuration of the tools folder which is used by Cake when restoring tools. |
| 46 | +; This allows the configuration of the tools folder which is used by Cake when |
| 47 | +; restoring tools. |
37 | 48 | ;
|
38 | 49 | ; Default Value
|
39 | 50 | ; ./tools
|
40 | 51 | ; Environment Variable Name
|
41 | 52 | ; CAKE_PATHS_TOOLS
|
| 53 | + |
42 | 54 | ; ini File Contents
|
43 | 55 | ; [Paths]
|
44 | 56 | ; Tools=./tools
|
| 57 | + |
45 | 58 | ; Direct Argument
|
46 | 59 | ; cake.exe --paths_tools=./tools
|
| 60 | + |
| 61 | +;------------------------------------------------------------------------------- |
47 | 62 | ; Addins Path
|
48 |
| -; This allows the configuration of the Addins folder which is used by Cake when restoring Addins. |
| 63 | +; This allows the configuration of the Addins folder which is used by Cake when |
| 64 | +; restoring Addins. |
49 | 65 | ;
|
50 | 66 | ; Default Value
|
51 | 67 | ; ./tools/Addins
|
| 68 | + |
52 | 69 | ; Environment Variable Name
|
53 | 70 | ; CAKE_PATHS_ADDINS
|
| 71 | + |
54 | 72 | ; ini File Contents
|
55 | 73 | ; [Paths]
|
56 | 74 | ; Addins=./tools/Addins
|
| 75 | + |
57 | 76 | ; Direct Argument
|
58 | 77 | ; cake.exe --paths_addins=./tools/Addins
|
| 78 | + |
| 79 | + |
| 80 | +;------------------------------------------------------------------------------- |
59 | 81 | ; Modules Path
|
60 |
| -; This allows the configuration of the Modules folder which is used by Cake when loading custom Modules. |
| 82 | +; This allows the configuration of the Modules folder which is used by Cake when |
| 83 | +; loading custom Modules. |
61 | 84 | ;
|
62 | 85 | ; Default Value
|
63 | 86 | ; ./tools/Modules
|
| 87 | + |
64 | 88 | ; Environment Variable Name
|
65 | 89 | ; CAKE_PATHS_MODULES
|
| 90 | + |
66 | 91 | ; ini File Contents
|
67 | 92 | ; [Paths]
|
68 | 93 | ; Modules=./tools/Modules
|
| 94 | + |
69 | 95 | ; Direct Argument
|
70 | 96 | ; cake.exe --paths_modules=./tools/Modules
|
| 97 | + |
| 98 | + |
| 99 | +;------------------------------------------------------------------------------- |
71 | 100 | ; Skip Verification
|
72 |
| -; If any breaking changes are introduced to Cake, we'll set the minimum supported version of the Cake.Core assembly, any addin/assembly that references an older version of Cake.Core will generate an exception and ultimately abort the execution of the script. This is to avoid runtime errors during execution of the script. |
| 101 | +; If any breaking changes are introduced to Cake, we'll set the minimum supported |
| 102 | +; version of the Cake.Core assembly, any addin/assembly that references an older |
| 103 | +; version of Cake.Core will generate an exception and ultimately abort the |
| 104 | +; execution of the script. This is to avoid runtime errors during execution of the |
| 105 | +; script. |
73 | 106 | ;
|
74 |
| -; But if you really need to use an addin/assembly and have verified that the breaking change introduced doesn't concern the addin/assembly directly, i.e. it doesn't use a removed property or changed interface, for this scenario we'll allow you to temporarily opt-out of the assembly verification until addin/assembly author has released a version of the assembly targeting the minimum required version of Cake.Core. |
| 107 | +; But if you really need to use an addin/assembly and have verified that the breaking |
| 108 | +; change introduced doesn't concern the addin/assembly directly, i.e. it doesn't use |
| 109 | +; a removed property or changed interface, for this scenario we'll allow you to |
| 110 | +; temporarily opt-out of the assembly verification until addin/assembly author has |
| 111 | +; released a version of the assembly targeting the minimum required version of |
| 112 | +; Cake.Core. |
75 | 113 | ;
|
76 |
| -; A word of caution, this setting is global for all addins/assemblies your script references and should therefore be considered a temporary quick fix. |
| 114 | +; A word of caution, this setting is global for all addins/assemblies your script |
| 115 | +; references and should therefore be considered a temporary quick fix. |
77 | 116 | ;
|
78 | 117 | ; Default Value
|
79 | 118 | ; false
|
| 119 | + |
80 | 120 | ; Valid Values
|
81 | 121 | ; true
|
82 | 122 | ; or
|
83 | 123 | ; false
|
| 124 | + |
84 | 125 | ; Environment Variable Name
|
85 | 126 | ; CAKE_SETTINGS_SKIPVERIFICATION
|
86 | 127 |
|
|
0 commit comments