You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/NuGetForUnity/Editor/Helper/WebRequestHelper.cs
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,9 +20,15 @@ internal static class WebRequestHelper
20
20
/// <param name="userName">UserName that will be passed in the Authorization header or the request. If null, authorization is omitted.</param>
21
21
/// <param name="password">Password that will be passed in the Authorization header or the request. If null, authorization is omitted.</param>
22
22
/// <param name="timeOut">Timeout in milliseconds or null to use the default timeout values of HttpWebRequest.</param>
23
+
/// <param name="enableCredentialProvider">If true we invoke credential providers found on the system to receive the credentials for the NuGet feed.</param>
23
24
/// <returns>Stream containing the result.</returns>
Copy file name to clipboardExpand all lines: src/NuGetForUnity/Editor/PackageSource/NugetApiClientV3.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
#pragma warning disable SA1512,SA1124// Single-line comments should not be followed by blank line
2
2
3
+
#region No ReShaper
4
+
3
5
usingSystem;
4
6
usingSystem.Collections.Generic;
5
7
usingSystem.Globalization;
@@ -18,8 +20,6 @@
18
20
usingUnityEditor;
19
21
usingUnityEngine;
20
22
21
-
#region No ReShaper
22
-
23
23
// ReSharper disable All
24
24
// needed because 'JetBrains.Annotations.NotNull' and 'System.Diagnostics.CodeAnalysis.NotNull' collide if this file is compiled with a never version of Unity / C#
"Whether to call the credential providers found on the system to receive the credentials for the NuGet feed. See NuGet documentation for more info on NuGet Credential Providers: https://docs.microsoft.com/en-us/nuget/reference/extensibility/nuget-exe-credential-providers."),
0 commit comments