|
6 | 6 | <configuration> |
7 | 7 | <appSettings> |
8 | 8 | <!-- |
9 | | - Determines if an Api Key is required to push\delete packages from the server. |
| 9 | + Determines if an Api Key is required to push\delete packages from the server. |
10 | 10 | --> |
11 | 11 | <add key="requireApiKey" value="true" /> |
12 | 12 |
|
13 | 13 | <!-- |
14 | | - Set the value here to allow people to push/delete packages from the server. |
15 | | - NOTE: This is a shared key (password) for all users. |
| 14 | + Set the value here to allow people to push/delete packages from the server. |
| 15 | + NOTE: This is a shared key (password) for all users. |
16 | 16 | --> |
17 | 17 | <add key="apiKey" value="" /> |
18 | 18 |
|
19 | 19 | <!-- |
20 | | - Change the path to the packages folder. Default is ~/Packages. |
21 | | - This can be a virtual or physical path. |
| 20 | + Change the path to the packages folder. Default is ~/Packages. |
| 21 | + This can be a virtual or physical path. |
22 | 22 | --> |
23 | 23 | <add key="packagesPath" value="" /> |
24 | 24 |
|
25 | 25 | <!-- |
26 | | - Set allowOverrideExistingPackageOnPush to false if attempts to upload a package that already exists |
27 | | - (same id and same version) should fail. |
| 26 | + Set allowOverrideExistingPackageOnPush to false if attempts to upload a package that already exists |
| 27 | + (same id and same version) should fail. |
28 | 28 | --> |
29 | | - <add key="allowOverrideExistingPackageOnPush" value="true" /> |
| 29 | + <add key="allowOverrideExistingPackageOnPush" value="false" /> |
30 | 30 |
|
31 | 31 | <!-- |
32 | | - Set enableDelisting to true to enable delist instead of delete as a result of a "nuget delete" command. |
33 | | - - delete: package is deleted from the repository's local filesystem. |
34 | | - - delist: |
35 | | - - "nuget delete": the "hidden" file attribute of the corresponding nupkg on the repository local filesystem is turned on instead of deleting the file. |
36 | | - - "nuget list" skips delisted packages, i.e. those that have the hidden attribute set on their nupkg. |
37 | | - - "nuget install packageid -version version" command will succeed for both listed and delisted packages. |
38 | | - e.g. delisted packages can still be downloaded by clients that explicitly specify their version. |
| 32 | + Set enableDelisting to true to enable delist instead of delete as a result of a "nuget delete" command. |
| 33 | + - delete: package is deleted from the repository's local filesystem. |
| 34 | + - delist: |
| 35 | + - "nuget delete": the "hidden" file attribute of the corresponding nupkg on the repository local filesystem is turned on instead of deleting the file. |
| 36 | + - "nuget list" skips delisted packages, i.e. those that have the hidden attribute set on their nupkg. |
| 37 | + - "nuget install packageid -version version" command will succeed for both listed and delisted packages. |
| 38 | + e.g. delisted packages can still be downloaded by clients that explicitly specify their version. |
39 | 39 | --> |
40 | 40 | <add key="enableDelisting" value="false" /> |
41 | | - |
| 41 | + |
42 | 42 | <!-- |
43 | | - Set enableFrameworkFiltering to true to enable filtering packages by their supported frameworks during search. |
| 43 | + Set enableFrameworkFiltering to true to enable filtering packages by their supported frameworks during search. |
44 | 44 | --> |
45 | 45 | <add key="enableFrameworkFiltering" value="false" /> |
46 | 46 | </appSettings> |
|
0 commit comments