Skip to content

Commit 3b90b80

Browse files
Merge pull request #11058 from dotnet/main
Merge main into live
2 parents fb1d23a + e360952 commit 3b90b80

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/quest-bulk.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: "bulk quest import"
22
on:
33
schedule:
44
- cron: '0 10 * * *' # UTC time, that's 5:00 am EST, 2:00 am PST.
5+
- cron: '0 9 6 * *' # This is the morning of the 6th.
56
workflow_dispatch:
67
inputs:
78
reason:
@@ -49,4 +50,4 @@ jobs:
4950
org: ${{ github.repository_owner }}
5051
repo: ${{ github.repository }}
5152
issue: '-1'
52-
duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || 5 }}
53+
duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || github.event.schedule == '0 9 6 * *' && -1 || 5 }}

xml/System.Net/NetworkCredential.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
The <xref:System.Net.NetworkCredential> class is a base class that supplies credentials in password-based authentication schemes such as basic, digest, NTLM, and Kerberos. Classes that implement the <xref:System.Net.ICredentials> interface, such as the <xref:System.Net.CredentialCache> class, return <xref:System.Net.NetworkCredential> objects.
7979
8080
> [!NOTE]
81-
> On Unix platforms, use of NTLM authentication might require installing the NTLM plugin for the GSSAPI layer used by the implementation. On Ubuntu distributions, the package is called `gss-ntlmssp`. Alternatively, applications can opt in for a managed implementation of NTLM by setting the `System.Net.Security.UseManagedNtlm` AppContext switch or, in .NET 10 and later, the `UseManagedNtlm` MSBuild property.
81+
> On Unix platforms, use of NTLM authentication may require installing the NTLM plugin for the GSSAPI layer used by the implemention. On Ubuntu distributions, the package is called `gss-ntlmssp`. Alternatively, applications may opt in for a managed implementation of NTLM by setting the `_UseManagedNtlm` .csproj property (.NET 9+ only), or setting the `System.Net.Security.UseManagedNtlm` AppContext switch.
8282
>
8383
> On Windows, NTLM and Negotiate (Kerberos) authentication always depend on GSSAPI of the operating system.
8484

0 commit comments

Comments
 (0)