Skip to content

Commit 83fe7a5

Browse files
authored
[release/10.0.1xx] Source code updates from dotnet/dotnet (#50648)
2 parents a0aaff7 + ca0b278 commit 83fe7a5

30 files changed

+647
-524
lines changed

Directory.Packages.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
<PackageVersion Include="NuGet.Build.Tasks.Console" Version="$(NuGetBuildTasksConsolePackageVersion)" />
102102
<PackageVersion Include="NuGet.Build.Tasks.Pack" Version="$(NuGetConfigurationPackageVersion)" />
103103
<PackageVersion Include="NuGet.CommandLine.XPlat" Version="$(NuGetCommandLineXPlatPackageVersion)" />
104+
<PackageVersion Include="NuGet.Commands" Version="$(NuGetCommandsPackageVersion)" />
104105
<PackageVersion Include="NuGet.Common" Version="$(NuGetCommonPackageVersion)" />
105106
<PackageVersion Include="NuGet.Configuration" Version="$(NuGetConfigurationPackageVersion)" />
106107
<PackageVersion Include="NuGet.Frameworks" Version="$(NuGetBuildTasksPackageVersion)" />

eng/Version.Details.props

Lines changed: 130 additions & 130 deletions
Large diffs are not rendered by default.

eng/Version.Details.xml

Lines changed: 261 additions & 261 deletions
Large diffs are not rendered by default.

eng/Versions.props

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
<DotNetPrivateAssetRootUrl Condition="'$(DotNetPrivateAssetRootUrl)'==''">https://dotnetclimsrc.blob.core.windows.net/dotnet/</DotNetPrivateAssetRootUrl>
5454
</PropertyGroup>
5555
<PropertyGroup Label="Production dependencies">
56-
<MicrosoftWebXdtPackageVersion>3.2.0-preview.25377.103</MicrosoftWebXdtPackageVersion>
5756
<MicrosoftCssParserVersion>1.0.0-20230414.1</MicrosoftCssParserVersion>
5857
<MicrosoftApplicationInsightsPackageVersion>2.23.0</MicrosoftApplicationInsightsPackageVersion>
5958
<NETStandardLibraryNETFrameworkVersion>2.0.1-servicing-26011-01</NETStandardLibraryNETFrameworkVersion>
@@ -62,7 +61,6 @@
6261
<SystemDataSqlClientPackageVersion>4.8.6</SystemDataSqlClientPackageVersion>
6362
<StyleCopAnalyzersPackageVersion>1.2.0-beta.435</StyleCopAnalyzersPackageVersion>
6463
<WebDeploymentPackageVersion>4.0.5</WebDeploymentPackageVersion>
65-
<SystemCommandLineVersion>2.0.0-rc.1.25377.103</SystemCommandLineVersion>
6664
<SystemCommandLineNamingConventionBinderVersion>2.0.0-beta5.25279.2</SystemCommandLineNamingConventionBinderVersion>
6765
<MicrosoftCodeAnalysisAnalyzerTestingVersion>1.1.2</MicrosoftCodeAnalysisAnalyzerTestingVersion>
6866
<MicrosoftVisualBasicVersion>10.3.0</MicrosoftVisualBasicVersion>
@@ -79,7 +77,6 @@
7977
<AspirePackageVersion>9.4.0</AspirePackageVersion>
8078
</PropertyGroup>
8179
<PropertyGroup>
82-
<NETStandardLibraryRefPackageVersion>2.1.0</NETStandardLibraryRefPackageVersion>
8380
<!-- These are minimum versions used for netfx-targeted components that run in Visual Studio because in those cases,
8481
Visual Studio is providing those assemblies, and we should work with whichever version it ships. -->
8582
<MicrosoftBclAsyncInterfacesToolsetPackageVersion>9.0.0</MicrosoftBclAsyncInterfacesToolsetPackageVersion>
@@ -140,7 +137,6 @@
140137
<AwesomeAssertionsVersion>8.0.2</AwesomeAssertionsVersion>
141138
<AwesomeAssertionsJsonVersion>8.0.0</AwesomeAssertionsJsonVersion>
142139
<MoqPackageVersion>4.18.4</MoqPackageVersion>
143-
<MSTestVersion>3.11.0-preview.25381.6</MSTestVersion>
144140
<XunitCombinatorialVersion>1.3.2</XunitCombinatorialVersion>
145141
<MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>8.0.0-beta.23607.1</MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>
146142
<BenchmarkDotNetPackageVersion>0.14.0</BenchmarkDotNetPackageVersion>

eng/common/sdk-task.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ show_usage() {
1010

1111
echo "Advanced settings:"
1212
echo " --excludeCIBinarylog Don't output binary log (short: -nobl)"
13-
echo " --noWarnAsError Do not warn as error
13+
echo " --noWarnAsError Do not warn as error"
1414
echo ""
1515
echo "Command line arguments not listed above are passed thru to msbuild."
1616
}

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
}
2222
},
2323
"msbuild-sdks": {
24-
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25427.104",
25-
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25427.104",
24+
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25460.104",
25+
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25460.104",
2626
"Microsoft.Build.NoTargets": "3.7.0",
2727
"Microsoft.Build.Traversal": "3.4.0",
2828
"Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2737382"

src/Cli/Microsoft.TemplateEngine.Cli/Help/DotnetHelpAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ public HelpBuilder Builder
2222
set => _builder = value ?? throw new ArgumentNullException(nameof(value));
2323
}
2424

25+
/// <inheritdoc />
26+
public override bool ClearsParseErrors => true;
27+
2528
/// <inheritdoc />
2629
public override int Invoke(ParseResult parseResult)
2730
{

src/Layout/pkg/dotnet-sdk.proj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<GenerateInstallers Condition="'$(DotNetBuildSourceOnly)' != 'true'">true</GenerateInstallers>
99
<BuildDebPackage Condition="'$(BuildSdkDeb)' == 'true'">true</BuildDebPackage>
1010
<BuildRpmPackage Condition="'$(BuildSdkRpm)' == 'true'">true</BuildRpmPackage>
11-
<UseArcadeRpmTooling>true</UseArcadeRpmTooling>
1211
<ProductBrandPrefix>Microsoft .NET</ProductBrandPrefix>
1312
<LicenseFile>$(RepoRoot)LICENSE.TXT</LicenseFile>
1413
<InstallerName>dotnet-sdk</InstallerName>
@@ -119,7 +118,7 @@
119118
</Target>
120119

121120
<Target Name="AddLinuxPackageInformation"
122-
BeforeTargets="GetDebInstallerJsonProperties;GetRpmInstallerJsonProperties"
121+
BeforeTargets="GetAdditionalLinuxInstallerProperties"
123122
DependsOnTargets="CalculateLinuxNativeInstallerDependencyVersions">
124123

125124
<PropertyGroup>

src/Layout/redist/targets/BundledSdks.targets

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Project>
22

33
<ItemGroup>
4-
<BundledSdk Include="NuGet.Build.Tasks.Pack" Version="$(NuGetBuildTasksPackPackageVersion)" />
5-
<BundledSdk Include="Microsoft.NET.Sdk.WindowsDesktop" Version="$(MicrosoftNETSdkWindowsDesktopPackageVersion)" Condition="'$(DotNetBuildSourceOnly)' != 'true'" />
4+
<BundledSdk Include="Microsoft.NET.Sdk.WindowsDesktop" Version="$(MicrosoftNETSdkWindowsDesktopPackageVersion)" />
65
<BundledSdk Include="FSharp.NET.Sdk" Version="1.0.4-bundled-0100" />
76
<BundledSdk Include="Microsoft.Docker.Sdk" Version="1.1.0" />
87

src/Layout/redist/targets/BundledTemplates.targets

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<ItemGroup Label=".NET 10.0 templates">
44
<Bundled100Templates Include="Microsoft.DotNet.Web.ItemTemplates.10.0" PackageVersion="$(MicrosoftDotNetWebItemTemplates100PackageVersion)" />
55
<Bundled100Templates Include="Microsoft.DotNet.Web.ProjectTemplates.10.0" PackageVersion="$(MicrosoftDotNetWebProjectTemplates100PackageVersion)" UseVersionForTemplateInstallPath="true" />
6-
<Bundled100Templates Include="Microsoft.Dotnet.WinForms.ProjectTemplates" PackageVersion="$(MicrosoftNETSdkWindowsDesktopPackageVersion)" Condition="'$(DotNetBuildSourceOnly)' != 'true'" />
7-
<Bundled100Templates Include="Microsoft.Dotnet.Wpf.ProjectTemplates" PackageVersion="$(MicrosoftNETSdkWindowsDesktopPackageVersion)" Condition="'$(DotNetBuildSourceOnly)' != 'true'" />
6+
<Bundled100Templates Include="Microsoft.Dotnet.WinForms.ProjectTemplates" PackageVersion="$(MicrosoftNETSdkWindowsDesktopPackageVersion)" />
7+
<Bundled100Templates Include="Microsoft.Dotnet.Wpf.ProjectTemplates" PackageVersion="$(MicrosoftNETSdkWindowsDesktopPackageVersion)" />
88
</ItemGroup>
99

1010
<ItemGroup>
@@ -56,11 +56,6 @@
5656
</Target>
5757

5858
<Target Name="LayoutTemplatesForSDK" DependsOnTargets="CalculateTemplatesVersions;GetRepoTemplates">
59-
<ItemGroup Condition="!$(ProductMonikerRid.StartsWith('win'))">
60-
<BundledTemplatesWithInstallPaths Remove="Microsoft.Dotnet.Wpf.ProjectTemplates" />
61-
<BundledTemplatesWithInstallPaths Remove="Microsoft.Dotnet.WinForms.ProjectTemplates" />
62-
</ItemGroup>
63-
6459
<Copy SourceFiles="%(BundledTemplatesWithInstallPaths.RestoredNupkgPath)"
6560
DestinationFolder="$(RedistInstallerLayoutPath)templates\%(BundledTemplatesWithInstallPaths.BundledTemplateInstallPath)"
6661
Condition="'%(BundledTemplatesWithInstallPaths.TemplateFrameworkVersion)' == '10.0'" />

0 commit comments

Comments
 (0)