|
24 | 24 | 'AzureStorage': storage data plane cmdlets
|
25 | 25 | 'Subfolder under src\ResourceManager': An individual cmdlet module
|
26 | 26 | By default, it builds all
|
| 27 | +
|
| 28 | + /p:SkipHelp=True |
| 29 | + Skips help generation and installer creation, mainly for local builds to save time. |
27 | 30 | -->
|
28 | 31 |
|
29 | 32 | <!-- Define build properties -->
|
|
44 | 47 | <BuildInParallel Condition="'$(BuildInParallel)' == ''">true</BuildInParallel>
|
45 | 48 | <NuGetPublishingSource Condition=" '$(NuGetPublishingSource)' == '' ">http://psget/PSGallery/api/v2/</NuGetPublishingSource>
|
46 | 49 | <Scope Condition=" $(Scope) == '' " >all</Scope>
|
| 50 | + <SkipHelp Condition =" '$(SkipHelp)' == '' ">false</SkipHelp> |
47 | 51 | </PropertyGroup>
|
48 | 52 | <ItemGroup>
|
49 | 53 | <CmdletSolutionsToBuild Include=".\src\Storage\Storage.sln;.\src\ResourceManager\**\*.sln;.\src\ServiceManagement\ServiceManagement.sln;"
|
|
186 | 190 | BuildInParallel="$(BuildInParallel)"
|
187 | 191 | ContinueOnError="false" />
|
188 | 192 |
|
189 |
| - <Exec Command="$(PowerShellCommand) -NonInteractive -NoLogo -NoProfile -Command ". $(LibraryToolsFolder)\GenerateHelp.ps1 -ValidateMarkdownHelp -GenerateMamlHelp -BuildConfig $(Configuration) "" ContinueOnError="false"/> |
| 193 | + <Exec Command="$(PowerShellCommand) -NonInteractive -NoLogo -NoProfile -Command ". $(LibraryToolsFolder)\GenerateHelp.ps1 -ValidateMarkdownHelp -GenerateMamlHelp -BuildConfig $(Configuration) "" |
| 194 | + ContinueOnError="false" |
| 195 | + Condition=" '$(SkipHelp)' == 'false' "/> |
190 | 196 | <CallTarget Targets="BuildSetupTest"/>
|
191 | 197 | <CallTarget Targets="CodeSignBinaries" Condition=" '$(CodeSign)' == 'true' " />
|
192 | 198 | <CallTarget Targets="BuildSetup"/>
|
193 | 199 | <CallTarget Targets="CodeSignInstaller"
|
194 | 200 | Condition=" '$(CodeSign)' == 'true' and '$(Scope)' == 'all'" />
|
195 | 201 | <Message Importance="high" Text="Running Static Analyser" />
|
196 | 202 | <CallTarget targets="DependencyAnalysis" />
|
197 |
| - <Exec Command="$(PowerShellCommand) -NonInteractive -NoLogo -NoProfile -Command ". $(LibraryToolsFolder)\CleanupBuild.ps1 -BuildConfig $(Configuration) ""/> |
| 203 | + <Exec Command="$(PowerShellCommand) -NonInteractive -NoLogo -NoProfile -Command ". $(LibraryToolsFolder)\CleanupBuild.ps1 -BuildConfig $(Configuration) "" |
| 204 | + Condition=" '$(SkipHelp)' == 'false' "/> |
198 | 205 | </Target>
|
199 | 206 |
|
200 | 207 | <!-- Do everything possible -->
|
|
0 commit comments