-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathconfig.xml.template
52 lines (43 loc) · 2.22 KB
/
config.xml.template
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
<?xml version="1.0"?>
<options>
<!-- Local directory where packages are searched for -->
<searchDir>C:\path\to\get\packages\from</searchDir>
<!-- Local directory where the internalization actually happens -->
<workDir>C:\path\to\modify\packages\in</workDir>
<!-- ProGet drop path -->
<useDropPath>no</useDropPath>
<!-- Directory that is your ProGet drop path -->
<dropPath>C:\path\to\droppath</dropPath>
<!-- Yes/No if directory should be empty -->
<dropEmpty>no</dropEmpty>
<!-- Yes/No if internal packages should be dropped -->
<dropInternal>yes</dropInternal>
<!-- Yes/No to automatically filling out internalized package versions -->
<writePerPkgs>yes</writePerPkgs>
<!-- Yes/No automatic pushing internalized packages -->
<pushPkgs>no</pushPkgs>
<!-- Url to push packages too -->
<pushURL>https://my.repo/feed/</pushURL>
<!-- Nexus only -->
<!-- Check if packages ids listed in toInternalize are out of date in the private repo, and download them to be internalized -->
<repoCheck>no</repoCheck>
<!-- specify if the Repack should be skipped -->
<skipRepack>no</skipRepack>
<!-- publicRepoURL should normally not need to be changed -->
<publicRepoURL>https://community.chocolatey.org/api/v2/</publicRepoURL>
<!-- URL of your private feed -->
<privateRepoURL>https://my.repo/private-feed/</privateRepoURL>
<!-- specify credentials if needed; format user:pass ; Otherwise if no authentication, put in no; can also specify in params -->
<privateRepoCreds>no</privateRepoCreds>
<!-- Nexus only -->
<!-- Check the packages on a proxy repository, and either internalize them or push already internal packages to the moveToRepo -->
<repoMove>no</repoMove>
<proxyRepoURL>https://my.repo/chocolatey.org-proxy</proxyRepoURL>
<moveToRepoURL>https://my.repo/private-feed/</moveToRepoURL>
<!-- specify credentials if needed; format user:pass ; Otherwise if no authentication, put in no; can also specify in params -->
<proxyRepoCreds>no</proxyRepoCreds>
<!-- Attempt to write out the the old and the new version of the package | option is yes or no -->
<writeVersion>no</writeVersion>
<!-- Set a locale to use for downloading locale-specific installers (e.g. Firefox). Defaults to en-US if not set -->
<locale>en-US</locale>
</options>