Skip to content

Commit 9c2600f

Browse files
author
Jason Zhai
committed
Merge branch 'release/8.0.4xx' of https://github.com/dotnet/sdk into merge/release/8.0.3xx-to-release/8.0.4xx
2 parents 64510a7 + bf274ea commit 9c2600f

File tree

243 files changed

+4418
-1615
lines changed

Some content is hidden

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

243 files changed

+4418
-1615
lines changed

.vsts-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ trigger:
33
branches:
44
include:
55
- main
6-
- release/8.0.3xx
6+
- release/8.0.4xx
77
- internal/release/*
88
- exp/*
99

.vsts-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ trigger:
33
branches:
44
include:
55
- main
6-
- release/8.0.3xx
6+
- release/8.0.4xx
77
- internal/release/*
88
- exp/*
99

Directory.Packages.props

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,7 @@
1010
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal" Version="$(MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion)" />
1111
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="$(MicrosoftAspNetCoreTestHostPackageVersion)" />
1212
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="$(MicrosoftBclAsyncInterfacesPackageVersion)"/>
13-
<PackageVersion Include="Microsoft.Build" Version="$(MicrosoftBuildPackageVersion)" />
14-
<PackageVersion Include="Microsoft.Build.Framework" Version="$(MicrosoftBuildFrameworkPackageVersion)" />
15-
<PackageVersion Include="Microsoft.Build.Localization" Version="$(MicrosoftBuildLocalizationPackageVersion)" />
16-
<PackageVersion Include="Microsoft.Build.Locator" Version="$(MicrosoftBuildLocatorPackageVersion)" />
1713
<PackageVersion Include="Microsoft.Build.NuGetSdkResolver" Version="$(MicrosoftBuildNuGetSdkResolverPackageVersion)" />
18-
<PackageVersion Include="Microsoft.Build.Runtime" Version="$(MicrosoftBuildRuntimePackageVersion)" />
19-
<PackageVersion Include="Microsoft.Build.Tasks.Core" Version="$(MicrosoftBuildPackageVersion)" />
20-
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildUtilitiesCorePackageVersion)" />
2114
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="$(MicrosoftCodeAnalysisCSharpPackageVersion)" />
2215
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.CodeStyle" Version="$(MicrosoftNetCompilersToolsetPackageVersion)" />
2316
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Features" Version="$(MicrosoftCodeAnalysisCSharpFeaturesPackageVersion)" />
@@ -43,7 +36,6 @@
4336
<PackageVersion Include="Microsoft.Management.Infrastructure" Version="3.0.0" />
4437
<PackageVersion Include="Microsoft.NET.HostModel" Version="$(MicrosoftNETHostModelVersion)" />
4538
<PackageVersion Include="Microsoft.NET.Sdk.Razor.SourceGenerators.Transport" Version="$(MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion)" />
46-
<PackageVersion Include="Microsoft.NET.StringTools" Version="$(MicrosoftNETStringToolsPackageVersion)" />
4739
<PackageVersion Include="Microsoft.NETCore.DotNetHostResolver" Version="$(MicrosoftNETCoreDotNetHostResolverPackageVersion)" />
4840
<PackageVersion Include="Microsoft.NETCore.Targets" Version="2.1.0" />
4941
<PackageVersion Include="Microsoft.TemplateEngine.Authoring.TemplateVerifier" Version="$(MicrosoftTemplateEngineAuthoringTemplateVerifierVersion)" />
@@ -112,4 +104,36 @@
112104
<PackageVersion Include="Xunit.Combinatorial" Version="$(XunitCombinatorialVersion)" />
113105
<PackageVersion Include="xunit.console" Version="$(XUnitVersion)"/>
114106
</ItemGroup>
107+
108+
<!-- Use different versions of Microsoft.Build.* depending on whether the output will be used in
109+
.NET Framework (VS) or only in the .NET SDK.
110+
111+
Note: This is not abstracted in Versions.props because source-only
112+
modes will import a version override file after Versions.props. -->
113+
<ItemGroup Condition="'$(DotNetBuildSourceOnly)' == 'true' or '$(TargetFramework)' != 'net472'">
114+
<!-- MSBuild-y stuff that runs in the CLI can always reference the latest MSBuild since
115+
that is what will be packaged with the .NET SDK. -->
116+
<PackageVersion Include="Microsoft.Build" Version="$(MicrosoftBuildPackageVersion)" />
117+
<PackageVersion Include="Microsoft.Build.Framework" Version="$(MicrosoftBuildPackageVersion)" />
118+
<!-- Localization is the same between source-only and regular modes. Always taken from latest. Duplicated between the itemgroups for clarity. -->
119+
<PackageVersion Include="Microsoft.Build.Localization" Version="$(MicrosoftBuildLocalizationPackageVersion)" />
120+
<PackageVersion Include="Microsoft.Build.Locator" Version="$(MicrosoftBuildLocatorPackageVersion)" />
121+
<PackageVersion Include="Microsoft.Build.Runtime" Version="$(MicrosoftBuildPackageVersion)" />
122+
<PackageVersion Include="Microsoft.Build.Tasks.Core" Version="$(MicrosoftBuildPackageVersion)" />
123+
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildPackageVersion)" />
124+
<PackageVersion Include="Microsoft.NET.StringTools" Version="$(MicrosoftBuildPackageVersion)" />
125+
</ItemGroup>
126+
<ItemGroup Condition="'$(DotNetBuildSourceOnly)' != 'true' and '$(TargetFramework)' == 'net472'">
127+
<!-- MSBuild-y stuff that runs in VS/MSBuild.exe should reference the lagging minimum version so
128+
it works in that slightly-older Visual Studio. -->
129+
<PackageVersion Include="Microsoft.Build" Version="$(MicrosoftBuildMinimumVersion)" />
130+
<PackageVersion Include="Microsoft.Build.Framework" Version="$(MicrosoftBuildMinimumVersion)" />
131+
<!-- Localization is the same between source-only and regular modes. Always taken from latest. Duplicated between the itemgroups for clarity. -->
132+
<PackageVersion Include="Microsoft.Build.Localization" Version="$(MicrosoftBuildLocalizationPackageVersion)" />
133+
<PackageVersion Include="Microsoft.Build.Locator" Version="$(MicrosoftBuildLocatorPackageVersion)" />
134+
<PackageVersion Include="Microsoft.Build.Runtime" Version="$(MicrosoftBuildMinimumVersion)" />
135+
<PackageVersion Include="Microsoft.Build.Tasks.Core" Version="$(MicrosoftBuildMinimumVersion)" />
136+
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildMinimumVersion)" />
137+
<PackageVersion Include="Microsoft.NET.StringTools" Version="$(MicrosoftNETStringToolsPackageVersion)" />
138+
</ItemGroup>
115139
</Project>

NuGet.config

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<add key="darc-int-dotnet-aspnetcore-954f61d-8" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-aspnetcore-954f61dd-8/nuget/v3/index.json" />
3333
<!-- End: Package sources from dotnet-aspnetcore -->
3434
<!-- Begin: Package sources from DotNet-msbuild-Trusted -->
35+
<add key="darc-pub-DotNet-msbuild-Trusted-a69bbaa" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-DotNet-msbuild-Trusted-a69bbaaf/nuget/v3/index.json" />
3536
<!-- End: Package sources from DotNet-msbuild-Trusted -->
3637
<!-- Begin: Package sources from dotnet-roslyn-analyzers -->
3738
<!-- End: Package sources from dotnet-roslyn-analyzers -->
@@ -49,7 +50,7 @@
4950
<add key="darc-int-dotnet-runtime-08338fc" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-runtime-08338fca/nuget/v3/index.json" />
5051
<!-- End: Package sources from dotnet-runtime -->
5152
<!-- Begin: Package sources from dotnet-templating -->
52-
<add key="darc-pub-dotnet-templating-9d03ca2" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-9d03ca28/nuget/v3/index.json" />
53+
<add key="darc-pub-dotnet-templating-edd31f7" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-edd31f7a/nuget/v3/index.json" />
5354
<!-- End: Package sources from dotnet-templating -->
5455
<!-- Begin: Package sources from dotnet-windowsdesktop -->
5556
<add key="darc-int-dotnet-windowsdesktop-1526afd" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-windowsdesktop-1526afd4/nuget/v3/index.json" />
@@ -64,6 +65,11 @@
6465
<add key="darc-int-dotnet-windowsdesktop-1526afd-1" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-windowsdesktop-1526afd4-1/nuget/v3/index.json" />
6566
<!-- End: Package sources from dotnet-windowsdesktop -->
6667
<!-- Begin: Package sources from dotnet-winforms -->
68+
<add key="darc-int-dotnet-winforms-fdc2007" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-winforms-fdc20074/nuget/v3/index.json" />
69+
<add key="darc-int-dotnet-winforms-fdc2007-5" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-winforms-fdc20074-5/nuget/v3/index.json" />
70+
<add key="darc-int-dotnet-winforms-fdc2007-3" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-winforms-fdc20074-3/nuget/v3/index.json" />
71+
<add key="darc-int-dotnet-winforms-fdc2007-2" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-winforms-fdc20074-2/nuget/v3/index.json" />
72+
<add key="darc-int-dotnet-winforms-fdc2007-1" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-winforms-fdc20074-1/nuget/v3/index.json" />
6773
<!-- End: Package sources from dotnet-winforms -->
6874
<!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->
6975
<add key="dotnet6" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json" />
@@ -90,8 +96,6 @@
9096
<!-- Begin: Package sources from dotnet-aspnetcore -->
9197
<add key="darc-int-dotnet-aspnetcore-954f61d-8" value="true" />
9298
<add key="darc-int-dotnet-aspnetcore-954f61d" value="true" />
93-
<!-- Begin: Package sources from dotnet-emsdk -->
94-
<!-- End: Package sources from dotnet-emsdk -->
9599
<!-- Begin: Package sources from dotnet-format -->
96100
<!-- End: Package sources from dotnet-format -->
97101
<!-- End: Package sources from dotnet-aspnetcore -->
@@ -120,6 +124,11 @@
120124
<add key="darc-int-dotnet-windowsdesktop-1526afd-9" value="true" />
121125
<add key="darc-int-dotnet-windowsdesktop-1526afd" value="true" />
122126
<!-- Begin: Package sources from dotnet-winforms -->
127+
<add key="darc-int-dotnet-winforms-fdc2007-1" value="true" />
128+
<add key="darc-int-dotnet-winforms-fdc2007-2" value="true" />
129+
<add key="darc-int-dotnet-winforms-fdc2007-3" value="true" />
130+
<add key="darc-int-dotnet-winforms-fdc2007-5" value="true" />
131+
<add key="darc-int-dotnet-winforms-fdc2007" value="true" />
123132
<!-- End: Package sources from dotnet-winforms -->
124133
<!-- End: Package sources from dotnet-windowsdesktop -->
125134
<!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->

eng/SourceBuildPrebuiltBaseline.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
<!-- (Don't include these for 9.0) Allow 8.0.2xx and higher to use any version of these packages since source build
3737
is only applicable to 8.0.1xx. -->
38+
<UsagePattern IdentityGlob="Microsoft.Extensions.DependencyInjection.Abstractions/8.0.*" />
3839
<UsagePattern IdentityGlob="Microsoft.TemplateEngine.Abstractions/8.0.*" />
3940
<UsagePattern IdentityGlob="Microsoft.TemplateEngine.Core/8.0.*" />
4041
<UsagePattern IdentityGlob="Microsoft.TemplateEngine.Core.Contracts/8.0.*" />
@@ -45,5 +46,8 @@
4546
<UsagePattern IdentityGlob="System.Drawing.Common/8.0.*" />
4647
<UsagePattern IdentityGlob="System.Threading.Tasks.Dataflow/*8.0.0*" />
4748
<UsagePattern IdentityGlob="Valleysoft.DockerCredsProvider/*" />
49+
50+
<!-- Transitive dependencies from roslyn -->
51+
<UsagePattern IdentityGlob="Microsoft.Extensions.Options/8.0.0" />
4852
</IgnorePatterns>
4953
</UsageData>

0 commit comments

Comments
 (0)