-
Notifications
You must be signed in to change notification settings - Fork 1
/
Install.settings.ps1
118 lines (90 loc) · 4.03 KB
/
Install.settings.ps1
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
###############################################################################
# Customize these properties and tasks for your module.
###############################################################################
Properties {
# ----------------------- Basic properties --------------------------------
# Is the environment is APPVEYOR or a local computer ?
[System.Diagnostics.CodeAnalysis.SuppressMessage('PSUseDeclaredVarsMoreThanAssigments', '')]
$isAPPVEYOR = Test-Path env:APPVEYOR
#Location of nuget feed
#see build.settings.ps1 : $PublishRepository
$MyGetPublishUri = 'https://www.myget.org/F/ottomatt/api/v2/package'
$MyGetSourceUri = 'https://www.myget.org/F/ottomatt/api/v2'
$DEV_MyGetPublishUri = 'https://www.myget.org/F/devottomatt/api/v2/package'
$DEV_MyGetSourceUri = 'https://www.myget.org/F/devottomatt/api/v2'
#Common modules
[System.Diagnostics.CodeAnalysis.SuppressMessage('PSUseDeclaredVarsMoreThanAssigments', '')]
$PSGallery=@{
Modules=@('Pester','PsScriptAnalyzer','BuildHelpers','platyPS')
Scripts=@()
}
#Personnal modules & script (French documentation only)
[System.Diagnostics.CodeAnalysis.SuppressMessage('PSUseDeclaredVarsMoreThanAssigments', '')]
$MyGet=@{
Modules=@('Log4Posh','MeasureLocalizedData','DTW.PS.FileSystem','Template','OptimizationRules','ParameterSetRules')
Scripts=@('Lock-File', 'Using-Culture')
}
}
###############################################################################
# Customize these tasks for performing operations before and/or after file staging.
###############################################################################
# Executes before the StageFiles task.
Task BeforeStageFiles {
}
# Executes after the StageFiles task.
Task AfterStageFiles {
}
###############################################################################
# Customize these tasks for performing operations before and/or after Build.
###############################################################################
# Executes before the BeforeStageFiles phase of the Build task.
Task BeforeBuild {
}
# Executes after the Build task.
Task AfterBuild {
}
###############################################################################
# Customize these tasks for performing operations before and/or after BuildHelp.
###############################################################################
# Executes before the BuildHelp task.
Task BeforeBuildHelp {
}
# Executes after the BuildHelp task.
Task AfterBuildHelp {
}
###############################################################################
# Customize these tasks for performing operations before and/or after BuildUpdatableHelp.
###############################################################################
# Executes before the BuildUpdatableHelp task.
Task BeforeBuildUpdatableHelp {
}
# Executes after the BuildUpdatableHelp task.
Task AfterBuildUpdatableHelp {
}
###############################################################################
# Customize these tasks for performing operations before and/or after GenerateFileCatalog.
###############################################################################
# Executes before the GenerateFileCatalog task.
Task BeforeGenerateFileCatalog {
}
# Executes after the GenerateFileCatalog task.
Task AfterGenerateFileCatalog {
}
###############################################################################
# Customize these tasks for performing operations before and/or after Install.
###############################################################################
# Executes before the Install task.
Task BeforeInstall {
}
# Executes after the Install task.
Task AfterInstall {
}
###############################################################################
# Customize these tasks for performing operations before and/or after Publish.
###############################################################################
# Executes before the Publish task.
Task BeforePublish {
}
# Executes after the Publish task.
Task AfterPublish {
}