Skip to content

Commit fc5e3ef

Browse files
author
Steve Pfister
committed
Merge remote-tracking branch 'upstream/main' into use-faster-better-macs
2 parents 530f442 + f582c0b commit fc5e3ef

File tree

470 files changed

+16984
-23853
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

470 files changed

+16984
-23853
lines changed

Directory.Build.props

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
<NetCoreAppMinimum>net8.0</NetCoreAppMinimum>
9797
<NetCoreAppMinimum Condition="'$(DotNetBuildFromSource)' == 'true'">$(NetCoreAppCurrent)</NetCoreAppMinimum>
9898

99-
<!-- when this is updated, make sure to keep $(_TargetFrameworkForNETCoreTasks)
99+
<!-- when this is updated, make sure to keep $(_NetCoreAppToolCurrent)
100100
in src/mono/wasm/build/WasmApp.LocalBuild.props
101101
and in src/mono/msbuild/apple/build/AppleBuild.LocalBuild.props in sync -->
102102
<NetCoreAppToolCurrentVersion>9.0</NetCoreAppToolCurrentVersion>
@@ -117,12 +117,6 @@
117117
<!-- Important: Set this to the GA version (or a close approximation) during servicing and adjust the TFM property below. -->
118118
<ApiCompatNetCoreAppBaselineVersion>8.0.0</ApiCompatNetCoreAppBaselineVersion>
119119
<ApiCompatNetCoreAppBaselineTFM>net8.0</ApiCompatNetCoreAppBaselineTFM>
120-
121-
<TargetFrameworkForNETFrameworkTasks>$(NetFrameworkToolCurrent)</TargetFrameworkForNETFrameworkTasks>
122-
<!-- Don't build for NETFramework during source-build. -->
123-
<TargetFrameworkForNETFrameworkTasks Condition="'$(DotNetBuildFromSource)' == 'true'" />
124-
125-
<TargetFrameworkForNETCoreTasks>$(NetCoreAppToolCurrent)</TargetFrameworkForNETCoreTasks>
126120
</PropertyGroup>
127121

128122
<PropertyGroup Label="CalculateConfiguration">

docs/area-owners.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Note: Editing this file doesn't update the mapping used by `@msftbot` for area-s
9696
| area-System.Formats.Tar | @jeffhandley | @dotnet/area-system-formats-tar | |
9797
| area-System.Globalization | @ericstj | @dotnet/area-system-globalization | |
9898
| area-System.IO | @jeffhandley | @dotnet/area-system-io | |
99-
| area-System.IO.Compression | @jeffhandley | @dotnet/area-system-io-compression | Included:<ul><li>System.Formats.Tar</li><li>System.IO.Packaging</li></ul> |
99+
| area-System.IO.Compression | @ericstj | @dotnet/area-system-io-compression | Included:<ul><li>System.Formats.Tar</li><li>System.IO.Packaging</li></ul> |
100100
| area-System.IO.Hashing | @jeffhandley | @dotnet/area-system-io-hashing | APIs within the System.IO.Hashing namespace, which align more with cryptography than with I/O |
101101
| area-System.IO.Pipelines | @adityamandaleeka | @davidfowl @halter73 | |
102102
| area-System.IO.Ports | @jeffhandley | @dotnet/area-system-io-ports | |

eng/SourceBuild.props renamed to eng/DotNetBuild.props

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@
8181
Split large components into separate packages.
8282
-->
8383
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\dotnet-runtime-*$(ArchiveExtension)" Category="runtime" />
84-
8584
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\*Microsoft.DotNet.ILCompiler.*.nupkg" Category="ILCompiler" />
8685

8786
<IntermediateNupkgArtifactFile
@@ -92,6 +91,15 @@
9291
Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\dotnet-crossgen2-*$(ArchiveExtension)"
9392
Category="Crossgen2Archive" />
9493
</ItemGroup>
94+
95+
<ItemGroup Condition="'$(DotNetBuildOrchestrator)' == 'true'">
96+
<!-- Include installers when in product VMR builds. These are not necessary when building the repo-only build as we don't
97+
need them in downstream source-only PR legs. We could include them, but it may bump us over the package size limit. -->
98+
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\*.msi" />
99+
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\*.deb" />
100+
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\*.rpm" />
101+
<IntermediateNupkgArtifactFile Include="$(CurrentRepoSourceBuildArtifactsPackagesDir)Shipping\*.pkg" />
102+
</ItemGroup>
95103
</Target>
96104

97105
</Project>

0 commit comments

Comments
 (0)