Skip to content

Commit d416d22

Browse files
authored
Native by default (#6165)
1 parent 7e0d632 commit d416d22

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,12 +242,13 @@ elseif ($Projects) {
242242
else {
243243
# When adding new sub-group build flags, add them to this check.
244244
if((-not $Native) -and (-not $Managed) -and (-not $NodeJS) -and (-not $Installers)) {
245-
Write-Warning "No default group of projects was specified, so building the 'managed' subset of projects. Run ``build.cmd -help`` for more details."
245+
Write-Warning "No default group of projects was specified, so building the 'managed' and 'native' subsets of projects. Run ``build.cmd -help`` for more details."
246246

247247
# This goal of this is to pick a sensible default for `build.cmd` with zero arguments.
248-
# We believe the most common thing our contributors will work on is C#, so if no other build group was picked, build the C# projects.
248+
# Now that we support subfolder invokations of build.cmd, we will be pushing to have build.cmd build everything (-all) by default
249249

250250
$Managed = $true
251+
$Native = $true
251252
}
252253

253254
$MSBuildArguments += "/p:BuildManaged=$Managed"

0 commit comments

Comments
 (0)