You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Build native assets by default
- #22556
- make `-BuildNative` primarily useful when you want _only_ native assets
- can also build `-Projects` with desktop `msbuild` using `-BuildNative`
- remove `-ForceCoreMsbuild` option
nit: extra `Remove-Item`s caused `MSBuild` function to do redundant work
* !fixup! Get `/bl` options working again
nit: Place SiteExtensions .binlogs correctly wherever script is run from
* !fixup! Remove *.vcxproj from Servers build
- native projects are built implicitly
* !fixup! Remove `-buildNative` from IIS build script
Write-Warning"No default group of projects was specified, so building the 'managed' and its dependent subsets of projects. Run ``build.cmd -help`` for more details."
199
-
200
-
# This goal of this is to pick a sensible default for `build.cmd` with zero arguments.
201
-
# Now that we support subfolder invokations of build.cmd, we will be pushing to have build.cmd build everything (-all) by default
207
+
Write-Warning"No default group of projects was specified, so building the managed and native projects and their dependencies. Run ``build.cmd -help`` for more details."
202
208
209
+
# The goal of this is to pick a sensible default for `build.cmd` with zero arguments.
203
210
$BuildManaged=$true
204
211
}
205
212
@@ -261,10 +268,21 @@ if ($DotNetRuntimeSourceFeed -or $DotNetRuntimeSourceFeedKey) {
261
268
262
269
# Split build categories between dotnet msbuild and desktop msbuild. Use desktop msbuild as little as possible.
263
270
[string[]]$dotnetBuildArguments=$MSBuildArguments
264
-
if ($All) { $dotnetBuildArguments+='/p:BuildAllProjects=true'; $BuildNative=$true }
271
+
if ($All) { $dotnetBuildArguments+='/p:BuildAllProjects=true' }
0 commit comments