Skip to content

Commit 1096390

Browse files
committed
Skip building installer when flag is set, continue build even when StaticAnalysis throws, remove markdown files always
1 parent f900ec8 commit 1096390

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

build.proj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,12 @@
195195
Condition=" '$(SkipHelp)' == 'false' "/>
196196
<CallTarget Targets="BuildSetupTest"/>
197197
<CallTarget Targets="CodeSignBinaries" Condition=" '$(CodeSign)' == 'true' " />
198-
<CallTarget Targets="BuildSetup"/>
198+
<CallTarget Targets="BuildSetup" Condition=" '$(SkipHelp)' == 'false' "/>
199199
<CallTarget Targets="CodeSignInstaller"
200200
Condition=" '$(CodeSign)' == 'true' and '$(Scope)' == 'all'" />
201201
<Message Importance="high" Text="Running Static Analyser" />
202-
<CallTarget targets="DependencyAnalysis" />
203-
<Exec Command="$(PowerShellCommand) -NonInteractive -NoLogo -NoProfile -Command &quot;. $(LibraryToolsFolder)\CleanupBuild.ps1 -BuildConfig $(Configuration) &quot;"
204-
Condition=" '$(SkipHelp)' == 'false' "/>
202+
<CallTarget targets="DependencyAnalysis" ContinueOnError="ErrorAndContinue" />
203+
<Exec Command="$(PowerShellCommand) -NonInteractive -NoLogo -NoProfile -Command &quot;. $(LibraryToolsFolder)\CleanupBuild.ps1 -BuildConfig $(Configuration) &quot;" />
205204
</Target>
206205

207206
<!-- Do everything possible -->

0 commit comments

Comments
 (0)