Skip to content

Commit 3186232

Browse files
authored
[automated] Merge branch 'release/10.0.1xx' => 'main' (#50721)
2 parents 39844e2 + 11b39a2 commit 3186232

25 files changed

+634
-151
lines changed

documentation/manpages/sdk/dotnet-nuget-locals.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "dotnet-nuget-locals" "1" "2025-08-15" "" ".NET Documentation"
17+
.TH "dotnet-nuget-locals" "1" "2025-08-29" "" ".NET Documentation"
1818
.hy
1919
.SH dotnet nuget locals
2020
.PP

documentation/manpages/sdk/dotnet-nuget-push.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "dotnet-nuget-push" "1" "2025-08-15" "" ".NET Documentation"
17+
.TH "dotnet-nuget-push" "1" "2025-08-29" "" ".NET Documentation"
1818
.hy
1919
.SH dotnet nuget push
2020
.PP

documentation/manpages/sdk/dotnet-nuget-sign.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "dotnet-nuget-sign" "1" "2025-08-15" "" ".NET Documentation"
17+
.TH "dotnet-nuget-sign" "1" "2025-08-29" "" ".NET Documentation"
1818
.hy
1919
.SH dotnet nuget sign
2020
.PP

documentation/manpages/sdk/dotnet-publish.1

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "dotnet-publish" "1" "2025-06-13" "" ".NET Documentation"
17+
.TH "dotnet-publish" "1" "2025-08-29" "" ".NET Documentation"
1818
.hy
1919
.SH dotnet publish
2020
.PP
@@ -57,7 +57,7 @@ The application\[cq]s dependencies, which are copied from the NuGet cache into t
5757
The \f[V]dotnet publish\f[R] command\[cq]s output is ready for deployment to a hosting system (for example, a server, PC, Mac, laptop) for execution.
5858
It\[cq]s the only officially supported way to prepare the application for deployment.
5959
Depending on the type of deployment that the project specifies, the hosting system may or may not have the .NET shared runtime installed on it.
60-
For more information, see Publish .NET apps with the .NET CLI.
60+
For more information, see .NET application publishing overview.
6161
.SS Implicit restore
6262
.PP
6363
You don\[cq]t have to run \f[V]dotnet restore\f[R] because it\[cq]s run implicitly by all commands that require a restore to occur, such as \f[V]dotnet new\f[R], \f[V]dotnet build\f[R], \f[V]dotnet run\f[R], \f[V]dotnet test\f[R], \f[V]dotnet publish\f[R], and \f[V]dotnet pack\f[R].
@@ -346,7 +346,7 @@ Available since .NET 6.
346346
.PP
347347
Publishes the .NET runtime with your application so the runtime doesn\[cq]t need to be installed on the target machine.
348348
Default is \f[V]true\f[R] if a runtime identifier is specified and the project is an executable project (not a library project).
349-
For more information, see .NET application publishing and Publish .NET apps with the .NET CLI.
349+
For more information, see Self-contained deployment.
350350
.PP
351351
If this option is used without specifying \f[V]true\f[R] or \f[V]false\f[R], the default is \f[V]true\f[R].
352352
In that case, don\[cq]t put the solution or project argument immediately after \f[V]--self-contained\f[R], because \f[V]true\f[R] or \f[V]false\f[R] is expected in that position.
@@ -369,7 +369,7 @@ The URI of the NuGet package source to use during the restore operation.
369369
.PP
370370
Publishes the application for a given runtime.
371371
For a list of Runtime Identifiers (RIDs), see the RID catalog.
372-
For more information, see .NET application publishing and Publish .NET apps with the .NET CLI.
372+
For more information, see .NET application publishing overview.
373373
If you use this option, use \f[V]--self-contained\f[R] or \f[V]--no-self-contained\f[R] also.
374374
.RE
375375
.IP \[bu] 2
@@ -495,8 +495,6 @@ dotnet publish --no-dependencies
495495
.IP \[bu] 2
496496
\&.NET application publishing overview
497497
.IP \[bu] 2
498-
Publish .NET apps with the .NET CLI
499-
.IP \[bu] 2
500498
Target frameworks
501499
.IP \[bu] 2
502500
Runtime Identifier (RID) catalog

documentation/manpages/sdk/dotnet-reference-remove.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "dotnet-reference-remove" "1" "2025-08-15" "" ".NET Documentation"
17+
.TH "dotnet-reference-remove" "1" "2025-08-29" "" ".NET Documentation"
1818
.hy
1919
.SH dotnet reference remove
2020
.PP

documentation/manpages/sdk/dotnet-sln.1

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "dotnet-sln" "1" "2025-06-13" "" ".NET Documentation"
17+
.TH "dotnet-sln" "1" "2025-08-29" "" ".NET Documentation"
1818
.hy
1919
.SH dotnet sln
2020
.PP
@@ -39,29 +39,33 @@ The \f[V]dotnet sln\f[R] command provides a convenient way to list and modify pr
3939
To use the \f[V]dotnet sln\f[R] command, the solution file must already exist.
4040
If you need to create one, use the dotnet new command with the \f[V]sln\f[R] template name.
4141
.PP
42-
The following example creates a \f[I].sln\f[R] file in the current folder, with the same name as the folder:
42+
The following example creates an \f[I].slnx\f[R] file in the current folder, with the same name as the folder:
4343
.IP
4444
.nf
4545
\f[C]
4646
dotnet new sln
4747
\f[R]
4848
.fi
4949
.PP
50-
The following example creates a \f[I].sln\f[R] file in the current folder, with the specified file name:
50+
The following example creates an \f[I].slnx\f[R] file in the current folder, with the specified file name:
5151
.IP
5252
.nf
5353
\f[C]
5454
dotnet new sln --name MySolution
5555
\f[R]
5656
.fi
5757
.PP
58-
The following example creates a \f[I].sln\f[R] file in the specified folder, with the same name as the folder:
58+
The following example creates an \f[I].slnx\f[R] file in the specified folder, with the same name as the folder:
5959
.IP
6060
.nf
6161
\f[C]
6262
dotnet new sln --output MySolution
6363
\f[R]
6464
.fi
65+
.RS
66+
.PP
67+
In .NET 9 and earlier versions, \f[V]dotnet new sln\f[R] creates an \f[I].sln\f[R] file instead of an \f[I].slnx\f[R] file.
68+
.RE
6569
.SH ARGUMENTS
6670
.IP \[bu] 2
6771
\f[B]\f[VB]SOLUTION_FILE\f[B]\f[R]

documentation/manpages/sdk/dotnet-test.1

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
. ftr VB CB
1616
. ftr VBI CBI
1717
.\}
18-
.TH "dotnet-test" "1" "2025-06-13" "" ".NET Documentation"
18+
.TH "dotnet-test" "1" "2025-08-29" "" ".NET Documentation"
1919
.hy
2020
.SH dotnet test
2121
.SH NAME
@@ -736,7 +736,6 @@ Passing runsettings arguments through commandline (https://github.com/microsoft/
736736
dotnet test
737737
[--project <PROJECT_PATH>]
738738
[--solution <SOLUTION_PATH>]
739-
[--directory <DIRECTORY_PATH>]
740739
[--test-modules <EXPRESSION>]
741740
[--root-directory <ROOT_PATH>]
742741
[--max-parallel-test-modules <NUMBER>]
@@ -780,7 +779,7 @@ For information about how to manage NuGet feeds, see the \f[V]dotnet restore\f[R
780779
.SH OPTIONS
781780
.RS
782781
.PP
783-
You can use only one of the following options at a time: \f[V]--project\f[R], \f[V]--solution\f[R], \f[V]--directory\f[R], or \f[V]--test-modules\f[R].
782+
You can use only one of the following options at a time: \f[V]--project\f[R], \f[V]--solution\f[R], or \f[V]--test-modules\f[R].
784783
These options can\[cq]t be combined.
785784
In addition, when using \f[V]--test-modules\f[R], you can\[cq]t specify \f[V]--arch\f[R], \f[V]--configuration\f[R], \f[V]--framework\f[R], \f[V]--os\f[R], or \f[V]--runtime\f[R].
786785
These options are not relevant for an already-built module.
@@ -789,19 +788,15 @@ These options are not relevant for an already-built module.
789788
\f[B]\f[VB]--project <PROJECT_PATH>\f[B]\f[R]
790789
.RS 2
791790
.PP
792-
Specifies the path to the test project.
791+
Specifies the path of the project file to run (folder name or full path).
792+
If not specified, it defaults to the current directory.
793793
.RE
794794
.IP \[bu] 2
795795
\f[B]\f[VB]--solution <SOLUTION_PATH>\f[B]\f[R]
796796
.RS 2
797797
.PP
798-
Specifies the path to the solution.
799-
.RE
800-
.IP \[bu] 2
801-
\f[B]\f[VB]--directory <DIRECTORY_PATH>\f[B]\f[R]
802-
.RS 2
803-
.PP
804-
Specifies the path to a directory that contains a project or a solution.
798+
Specifies the path of the solution file to run (folder name or full path).
799+
If not specified, it defaults to the current directory.
805800
.RE
806801
.IP \[bu] 2
807802
\f[B]\f[VB]--test-modules <EXPRESSION>\f[B]\f[R]
@@ -993,16 +988,6 @@ dotnet test --solution ./TestProjects/TestProjects.sln
993988
.fi
994989
.RE
995990
.IP \[bu] 2
996-
Run the tests in a solution or project that can be found in the \f[V]TestProjects\f[R] directory:
997-
.RS 2
998-
.IP
999-
.nf
1000-
\f[C]
1001-
dotnet test --directory ./TestProjects
1002-
\f[R]
1003-
.fi
1004-
.RE
1005-
.IP \[bu] 2
1006991
Run the tests using \f[V]TestProject.dll\f[R] assembly:
1007992
.RS 2
1008993
.IP

documentation/manpages/sdk/dotnet-tool-install.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
. ftr VB CB
1616
. ftr VBI CBI
1717
.\}
18-
.TH "dotnet-tool-install" "1" "2025-08-15" "" ".NET Documentation"
18+
.TH "dotnet-tool-install" "1" "2025-08-29" "" ".NET Documentation"
1919
.hy
2020
.SH dotnet tool install
2121
.PP

eng/pipelines/templates/jobs/sdk-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ jobs:
131131
displayName: 🟣 Build
132132
env:
133133
BuildConfig: $(buildConfiguration)
134+
OPENSSL_ENABLE_SHA1_SIGNATURES: 1
134135
135136
############### TESTING ###############
136137
- ${{ if eq(parameters.runTests, true) }}:

0 commit comments

Comments
 (0)