Skip to content

Commit d81a338

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 dc21427 + 79194a6 commit d81a338

File tree

224 files changed

+4276
-1564
lines changed

Some content is hidden

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

224 files changed

+4276
-1564
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
@@ -30,6 +30,7 @@
3030
<add key="darc-int-dotnet-aspnetcore-2f1db20-1" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-aspnetcore-2f1db204-1/nuget/v3/index.json" />
3131
<!-- End: Package sources from dotnet-aspnetcore -->
3232
<!-- Begin: Package sources from DotNet-msbuild-Trusted -->
33+
<add key="darc-pub-DotNet-msbuild-Trusted-37eb419" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-DotNet-msbuild-Trusted-37eb419a/nuget/v3/index.json" />
3334
<!-- End: Package sources from DotNet-msbuild-Trusted -->
3435
<!-- Begin: Package sources from dotnet-roslyn-analyzers -->
3536
<!-- End: Package sources from dotnet-roslyn-analyzers -->
@@ -41,7 +42,7 @@
4142
<add key="darc-int-dotnet-runtime-2aade6b-1" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-runtime-2aade6be-1/nuget/v3/index.json" />
4243
<!-- End: Package sources from dotnet-runtime -->
4344
<!-- Begin: Package sources from dotnet-templating -->
44-
<add key="darc-pub-dotnet-templating-60fbe5b" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-60fbe5b3/nuget/v3/index.json" />
45+
<add key="darc-pub-dotnet-templating-3e4419f" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-3e4419f8/nuget/v3/index.json" />
4546
<!-- End: Package sources from dotnet-templating -->
4647
<!-- Begin: Package sources from dotnet-windowsdesktop -->
4748
<add key="darc-int-dotnet-windowsdesktop-28ae95b" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-windowsdesktop-28ae95bc/nuget/v3/index.json" />
@@ -51,6 +52,11 @@
5152
<add key="darc-int-dotnet-windowsdesktop-28ae95b-1" value="https://pkgs.dev.azure.com/dnceng/internal/_packaging/darc-int-dotnet-windowsdesktop-28ae95bc-1/nuget/v3/index.json" />
5253
<!-- End: Package sources from dotnet-windowsdesktop -->
5354
<!-- Begin: Package sources from dotnet-winforms -->
55+
<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" />
56+
<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" />
57+
<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" />
58+
<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" />
59+
<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" />
5460
<!-- End: Package sources from dotnet-winforms -->
5561
<!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->
5662
<add key="dotnet6" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json" />
@@ -80,8 +86,6 @@
8086
<add key="darc-int-dotnet-aspnetcore-2f1db20-3" value="true" />
8187
<add key="darc-int-dotnet-aspnetcore-2f1db20-5" value="true" />
8288
<add key="darc-int-dotnet-aspnetcore-2f1db20" value="true" />
83-
<!-- Begin: Package sources from dotnet-emsdk -->
84-
<!-- End: Package sources from dotnet-emsdk -->
8589
<!-- Begin: Package sources from dotnet-format -->
8690
<!-- End: Package sources from dotnet-format -->
8791
<!-- End: Package sources from dotnet-aspnetcore -->
@@ -99,6 +103,11 @@
99103
<add key="darc-int-dotnet-windowsdesktop-28ae95b-5" value="true" />
100104
<add key="darc-int-dotnet-windowsdesktop-28ae95b" value="true" />
101105
<!-- Begin: Package sources from dotnet-winforms -->
106+
<add key="darc-int-dotnet-winforms-fdc2007-1" value="true" />
107+
<add key="darc-int-dotnet-winforms-fdc2007-2" value="true" />
108+
<add key="darc-int-dotnet-winforms-fdc2007-3" value="true" />
109+
<add key="darc-int-dotnet-winforms-fdc2007-5" value="true" />
110+
<add key="darc-int-dotnet-winforms-fdc2007" value="true" />
102111
<!-- End: Package sources from dotnet-winforms -->
103112
<!-- End: Package sources from dotnet-windowsdesktop -->
104113
<!--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)